:root {
  --color-navy: #0C3D6B;
  --color-ocean: #1A73C7;
  --color-sky: #60A5FA;
  --color-mist: #93C5FD;
  --color-deep: #071A2E;
  --color-ice: #F0F7FF;
  --color-white: #FFFFFF;
  --color-charcoal: #1C1C1C;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --radius-card: 12px;
  --radius-btn: 8px;
  --max-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-ocean); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-sky); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Animations ── */
@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.08); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Header ── */
.site-header {
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.logo-mark {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 1;
}
.logo-mark .gb { color: var(--color-sky); }
.logo-mark .pw { color: var(--color-mist); }
.logo-text {
  font-size: 10px;
  font-weight: 600;
  color: rgba(147, 197, 253, 0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: white;
}
.nav-toggle svg { display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
}
.main-nav a:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  vertical-align: middle;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-gray-600) !important;
}
.dropdown-menu a:hover {
  background: var(--color-ice);
  color: var(--color-navy) !important;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-ocean);
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--color-sky); color: white !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--color-ocean); color: white; }
.btn-primary:hover { background: var(--color-sky); color: white; }
.btn-secondary { background: rgba(255,255,255,0.12); color: white; border: 1.5px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); color: white; }
.btn-outline { background: transparent; color: var(--color-navy); border: 2px solid var(--color-navy); }
.btn-outline:hover { background: var(--color-navy); color: white; }
.btn-light { background: var(--color-ice); color: var(--color-navy); }
.btn-light:hover { background: var(--color-mist); color: var(--color-navy); }
.btn-phone { background: var(--color-ocean); color: white; }
.btn-phone:hover { background: var(--color-sky); color: white; }
.btn-navy { background: var(--color-navy); color: white; }
.btn-navy:hover { background: var(--color-ocean); color: white; }

/* ── Hero ── */
.hero {
  background: var(--color-deep);
  color: white;
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 10vw, 100px) 24px clamp(80px, 12vw, 130px);
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='%2393C5FD' fill-opacity='0.18'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-ocean) 0%, transparent 65%);
  opacity: 0.12;
  animation: heroGlow 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--color-sky) 0%, transparent 65%);
  opacity: 0.07;
  animation: heroGlow 14s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-sky);
  animation: blink 2s ease-in-out infinite;
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-mist);
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 20px;
  max-width: 720px;
  text-wrap: pretty;
  color: white;
}
.hero h1 .accent { color: var(--color-sky); }
.hero p {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.hero-trust .stars { color: var(--color-sky); }
.hero-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}
/* ── Hero Split Layout ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-image { order: -1; }
  .hero-img { max-width: 320px; margin: 0 auto; }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--color-deep);
  color: white;
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-dots,
.page-hero .hero-glow-1 { opacity: 0.06; }
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: white;
  max-width: 700px;
  margin: 0 auto 12px;
  letter-spacing: -1px;
}
.page-hero p {
  font-size: 18px;
  color: var(--color-mist);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 13px;
}
.breadcrumbs a { color: var(--color-mist); }
.breadcrumbs span { color: var(--color-gray-400); }

/* ── Sections ── */
.section { padding: 80px 24px; }
.section-ice { background: var(--color-ice); }
.section-navy { background: var(--color-navy); }
.section-deep { background: var(--color-deep); color: white; }
.section-white { background: white; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-ocean);
  margin-bottom: 12px;
}
.section-deep .section-label { color: var(--color-sky); }
.section h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 14px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.section-deep h2 { color: white; }
.section h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.section > .container > p,
.section-desc {
  font-size: 17px;
  color: var(--color-gray-500);
  line-height: 1.65;
}
.section-center { text-align: center; }
.section-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── Service Cards (matching Claude design) ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 1px 4px rgba(12, 61, 107, 0.06);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(12, 61, 107, 0.12);
  transform: translateY(-2px);
}
.service-card-header {
  background: var(--color-navy);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-card-num {
  position: absolute;
  right: -8px;
  bottom: -12px;
  font-size: 88px;
  font-weight: 800;
  color: white;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -4px;
  user-select: none;
}
.service-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-sky);
  color: var(--color-deep);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  z-index: 1;
}
.service-card-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-ice);
  border-radius: 10px;
  font-size: 22px;
  margin-bottom: 12px;
}
.service-card-body {
  padding: 22px;
}
.service-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 8px;
  line-height: 1.3;
}
.service-card-body p {
  font-size: 13px;
  color: var(--color-gray-500);
  line-height: 1.65;
  margin: 0 0 14px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ocean);
  transition: gap 0.2s;
}
.card-link:hover { gap: 8px; color: var(--color-sky); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--color-navy);
  padding: 64px 24px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--color-sky);
  letter-spacing: -2px;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.process-card {
  background: var(--color-gray-100);
  border-radius: 16px;
  padding: 36px 28px;
}
.process-card.highlighted {
  background: var(--color-navy);
  color: white;
}
.process-num {
  width: 52px;
  height: 52px;
  background: var(--color-ice);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}
.process-card.highlighted .process-num {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}
.process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 10px;
}
.process-card.highlighted h3 { color: white; }
.process-card p {
  font-size: 14px;
  color: var(--color-gray-500);
  line-height: 1.75;
  margin: 0;
}
.process-card.highlighted p { color: rgba(255, 255, 255, 0.7); }

/* Sequential process shading */
.process-card.step-1 { background: var(--color-ice); }
.process-card.step-2 { background: #d0e4f5; }
.process-card.step-3 { background: #a3c8e8; }
.process-card.step-3 h3 { color: var(--color-navy); }
.process-card.step-3 p { color: var(--color-gray-600, #4a5568); }
.process-card.step-4 { background: var(--color-navy); }
.process-card.step-4 h3 { color: white; }
.process-card.step-4 p { color: rgba(255, 255, 255, 0.7); }
.process-card.step-4 .process-num { background: rgba(255, 255, 255, 0.12); color: white; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 4px rgba(12, 61, 107, 0.07);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-stars svg { width: 15px; height: 15px; fill: var(--color-ocean); }
.testimonial-text {
  font-size: 15px;
  color: var(--color-gray-700);
  line-height: 1.75;
  margin: 0 0 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
}
.testimonial-location {
  font-size: 12px;
  color: var(--color-gray-400);
}

/* ── Service Area ── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.area-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.area-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-sky);
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { margin-top: 32px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(12, 61, 107, 0.05);
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.4;
  text-wrap: pretty;
}
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-toggle svg { width: 12px; height: 12px; stroke: white; stroke-width: 3; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  animation: fadeUp 0.2s ease;
}
.faq-answer-inner p {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--color-ice);
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ── Contact Form ── */
.form-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: start;
}
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--color-charcoal);
  background: white;
  transition: 0.15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-ocean);
  box-shadow: 0 0 0 3px rgba(26,115,199,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── Content Layout ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}
.content-main h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--color-navy);
  margin: 40px 0 14px;
  letter-spacing: -0.5px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 32px 0 10px;
}
.content-main p {
  margin-top: 16px;
  color: var(--color-gray-600);
  line-height: 1.75;
}
.content-main ul, .content-main ol {
  margin-top: 16px;
  padding-left: 24px;
  color: var(--color-gray-600);
}
.content-main li { margin-bottom: 8px; line-height: 1.65; }
.content-main li::marker { color: var(--color-ocean); }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--color-ice);
  border-radius: var(--radius-card);
  padding: 28px;
}
.sidebar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.sidebar-card p { font-size: 14px; color: var(--color-gray-500); line-height: 1.6; }
.sidebar-card ul { padding-left: 18px; margin: 0; }
.sidebar-card li { font-size: 14px; color: var(--color-gray-500); line-height: 1.8; }
.sidebar-card .btn { width: 100%; margin-top: 16px; text-align: center; }
.sidebar-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-600);
  transition: all 0.2s;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: white;
  color: var(--color-navy);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-navy) 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.cta-banner .hero-dots { opacity: 0.15; }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CTA Split (banner + form) ── */
.cta-split {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-split .cta-banner-content {
  text-align: left;
  max-width: 380px;
}
.cta-split .cta-banner-content p { margin-left: 0; }
.cta-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.cta-form-col {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  flex: 0 1 400px;
}
.cta-form-col h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  text-align: center;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form .form-group { display: flex; flex-direction: column; }
.cta-form .form-group.full-width { grid-column: 1 / -1; }
.cta-form label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 4px;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 13px;
  color: var(--color-charcoal);
  background: white;
  transition: 0.15s;
  outline: none;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--color-ocean);
  box-shadow: 0 0 0 3px rgba(26,115,199,0.1);
}
.cta-form textarea { min-height: 70px; resize: vertical; }
.cta-form .btn { width: 100%; }
@media (max-width: 768px) {
  .cta-split { flex-direction: column; gap: 32px; }
  .cta-split .cta-banner-content { text-align: center; max-width: 100%; }
  .cta-split .cta-banner-content p { margin-left: auto; }
  .cta-form-col { flex: 0 1 auto; width: 100%; }
  .cta-trust { justify-content: center; }
}
@media (max-width: 480px) {
  .cta-form { grid-template-columns: 1fr; }
  .cta-form-col { padding: 24px 20px; }
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(12, 61, 107, 0.06);
  transition: 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(12, 61, 107, 0.12); transform: translateY(-2px); }
.blog-card-img {
  height: 160px;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-body { padding: 22px; }
.blog-card-body .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-ocean);
  margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 16px; font-weight: 700; color: var(--color-navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { color: var(--color-gray-500); font-size: 13px; line-height: 1.6; margin: 0 0 14px; }

/* ── Location Grid ── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.location-card {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-card);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.location-card:hover {
  border-color: var(--color-ocean);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.location-card h3 { font-size: 16px; color: var(--color-navy); margin-bottom: 4px; }
.location-card p { font-size: 13px; color: var(--color-gray-400); margin: 0; }

/* ── Table ── */
.content-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.content-table th {
  background: var(--color-ice);
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-gray-200);
}
.content-table td {
  padding: 12px 16px;
  font-size: 15px;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-gray-600);
}
.content-table tr:hover td { background: var(--color-ice); }

/* ── Features Row ── */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.content-main .features-row {
  grid-template-columns: repeat(2, 1fr);
}
.feature-item {
  text-align: left;
  background: white;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(12, 61, 107, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(12, 61, 107, 0.1);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-ice);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  font-size: 22px;
}
.feature-item h3 { font-size: 16px; color: var(--color-navy); margin-bottom: 8px; font-weight: 700; }
.feature-item h4 { font-size: 16px; color: var(--color-navy); margin-bottom: 8px; font-weight: 700; }
.feature-item p { font-size: 14px; color: var(--color-gray-500); line-height: 1.7; }

/* ── Card ── */
.card {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-ice);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--color-gray-500); font-size: 15px; }

/* ── Process Steps (legacy) ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 16px;
}
.process-step h4 { font-size: 16px; color: var(--color-navy); margin-bottom: 6px; }
.process-step p { font-size: 14px; color: var(--color-gray-500); }

/* ── Footer ── */
.site-footer {
  background: var(--color-deep);
  color: var(--color-mist);
  padding: 56px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-brand .logo { margin-bottom: 12px; display: inline-flex; }
.footer-brand p { color: var(--color-gray-400); font-size: 14px; line-height: 1.7; max-width: 300px; margin-top: 12px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--color-gray-400);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding-top: 24px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-gray-400);
}
.footer-partner {
  font-size: 12px;
  color: var(--color-gray-400);
  margin-top: 8px;
}

/* ── Trust Badges ── */
.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-500);
}

/* ── Section Alt ── */
.section-alt { padding: 80px 24px; background: var(--color-ice); }
.section-alt h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 14px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.section-alt h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

/* ── Content Images ── */
.content-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px auto;
  max-width: var(--max-width);
  padding: 0 24px;
}
.content-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: var(--color-ice);
}
.content-main .content-images { margin: 24px 0; padding: 0; }
.section .content-images,
.section-alt .content-images { padding: 0; }
@media (max-width: 480px) {
  .content-images { grid-template-columns: 1fr; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-deep);
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    padding: 16px 24px;
  }
  .main-nav.open { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
  }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { color: rgba(255,255,255,0.6) !important; }
  .dropdown-menu a:hover { color: white !important; background: rgba(255,255,255,0.06); }
  .hero { padding: 56px 24px 80px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .features-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .form-section { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
