/* =========================================================
   Optimum Corporate Solutions — Design System
   Modern advisory aesthetic: navy + gold, generous whitespace
   ========================================================= */

:root {
  /* Brand palette — purple + mustard (from logo) */
  --navy-900: #3A0D52;   /* deepest purple */
  --navy-800: #6B1F8E;   /* main brand purple — matches OPTIMUM */
  --navy-700: #7A2E96;   /* lighter purple for hover/gradients */
  --navy-600: #9447B0;   /* soft purple */
  --navy-500: #AF6BC9;   /* light purple */
  --gold-700: #C8830F;   /* deep mustard */
  --gold-600: #F5A623;   /* main mustard — matches CORPORATE SOLUTIONS */
  --gold-500: #FFB840;   /* highlight mustard */
  --gold-400: #FFCB6E;   /* light mustard */
  --gold-50:  #FEF3DD;   /* cream tint */
  --white:    #FFFFFF;
  --cream:    #FBF5EC;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .10);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, .14);
  --shadow-gold: 0 12px 28px rgba(245, 166, 35, .35);

  /* Sharp-edge design — all rectangular components are square-cornered.
     Circular elements (avatars, icon discs) use border-radius: 50% directly
     and are unaffected. */
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --radius-pill: 0;

  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1480px;
  --container-narrow: 980px;

  --header-h: 112px;
  --topbar-h: 36px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease-out); }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; padding: 0; }

/* ============ Typography ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-weight: 800; font-size: clamp(2.25rem, 4.5vw, 4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.875rem, 3.2vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--gray-600); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--gray-600); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-600);
}

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}
.container-narrow { max-width: var(--container-narrow); }
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section-tight { padding: clamp(48px, 7vw, 80px) 0; }
.section-bg-light { background: var(--gray-50); }
.section-bg-cream { background: var(--cream); }
.section-bg-navy { background: var(--navy-800); color: var(--gray-100); }
.section-bg-navy h1, .section-bg-navy h2, .section-bg-navy h3 { color: var(--white); }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { margin-top: 16px; font-size: 1.0625rem; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--radius-pill);
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  letter-spacing: .01em;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold-600);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(245, 166, 35, .45);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--navy-800); background: var(--navy-800); color: var(--white); }

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-700);
  font-weight: 600;
  font-size: .9375rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.link-arrow:hover { color: var(--navy-800); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============ Top bar ============ */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  font-size: .8125rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 14px; height: 14px; opacity: .7; }
.topbar-socials { display: flex; gap: 14px; }
.topbar-socials svg { width: 15px; height: 15px; opacity: .8; }
@media (max-width: 768px) {
  .topbar { display: none; }
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease-out);
}
.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
  transition: height .3s var(--ease-out);
}
.site-header.scrolled .header-inner { height: 92px; }

/* ============ LOGO — vector SVG, sharp at every size ============ */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  transition: all .3s var(--ease-out);
}
.logo-img {
  height: 88px;
  width: auto;
  display: block;
  transition: height .3s var(--ease-out);
}

.site-header.scrolled .logo-img { height: 72px; }
.mobile-menu-head .logo-img { height: 64px; }

/* Footer — white pill backdrop on dark purple */
.footer-about .logo {
  background: var(--white);
  padding: 14px 22px;
  border-radius: 0;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.footer-about .logo-img { height: 84px; }

@media (max-width: 1024px) {
  .logo-img { height: 72px; }
  .site-header.scrolled .logo-img { height: 60px; }
}
@media (max-width: 560px) {
  .logo-img { height: 60px; }
  .site-header.scrolled .logo-img { height: 52px; }
}

/* ============ Nav ============ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-weight: 500;
  font-size: .9375rem;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all .2s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--navy-800); background: var(--gray-100); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s var(--ease-out); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 720px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease-out);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col h5 {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background .2s var(--ease-out);
  margin: 0 -10px;
}
.mega-link:hover { background: var(--gray-50); }
.mega-link-icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 0;
  background: var(--gold-50);
  color: var(--gold-700);
  display: grid;
  place-items: center;
}
.mega-link-icon svg { width: 18px; height: 18px; }
.mega-link strong {
  display: block;
  color: var(--navy-800);
  font-size: .9375rem;
  font-weight: 600;
}
.mega-link span {
  display: block;
  color: var(--gray-500);
  font-size: .8125rem;
  margin-top: 2px;
  line-height: 1.4;
}

/* Header CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--navy-800);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger svg { width: 24px; height: 24px; }

@media (max-width: 1024px) {
  .main-nav, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu-body { padding: 24px; flex: 1; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .submenu {
  padding-left: 16px;
  margin: 8px 0 12px;
  border-left: 2px solid var(--gold-500);
}
.mobile-menu .submenu a {
  font-size: .9375rem;
  font-weight: 400;
  color: var(--gray-600);
  padding: 10px 0;
  border: none;
}
.mobile-menu-foot {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  color: var(--gray-700);
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0 clamp(72px, 10vw, 128px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(245,166,35,.14), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(107,31,142,.07), transparent 50%);
  z-index: 0;
}
.hero-bg { display: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,31,142,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,31,142,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; }

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: var(--gold-50);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold-700);
  margin-bottom: 24px;
}
.hero-badge-pulse {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245,166,35,.3);
  display: grid;
  place-items: center;
  position: relative;
}
.hero-badge-pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,.6); }
  50% { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}

.hero h1 {
  color: var(--navy-800);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--gold-600); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--navy-800);
  line-height: 1;
}
.hero-trust-label {
  font-size: .8125rem;
  color: var(--gray-500);
  line-height: 1.3;
}

/* Hero card stack */
.hero-card-stack {
  position: relative;
  height: 480px;
}
/* Hero featured photo (replaces card stack) */
.hero-feature {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(58,13,82,.55) 100%);
}
.hero-feature-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.hero-feature-overlay strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy-800);
  margin-bottom: 4px;
}
.hero-feature-overlay span {
  display: block;
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.4;
}
.hero-feature-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(245,166,35,.4);
}
@media (max-width: 1024px) {
  .hero-feature { max-width: 480px; margin: 0 auto; aspect-ratio: 16/12; }
}

.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--gray-700);
  box-shadow: var(--shadow-lg);
}
.hero-card-1 {
  top: 0; left: 0; right: 60px;
  animation: floatA 6s ease-in-out infinite;
}
.hero-card-2 {
  top: 140px; left: 80px; right: 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-color: var(--gold-600);
  color: var(--white);
  animation: floatB 7s ease-in-out infinite;
  box-shadow: 0 16px 40px rgba(245,166,35,.35);
}
.hero-card-3 {
  top: 320px; left: 20px; right: 80px;
  animation: floatA 8s ease-in-out infinite reverse;
}
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.hero-card h4 { color: var(--navy-800); font-size: 1.0625rem; margin-bottom: 6px; }
.hero-card p { color: var(--gray-600); font-size: .875rem; line-height: 1.5; }
.hero-card-2 h4 { color: var(--white); }
.hero-card-2 p { color: rgba(255,255,255,.92); }
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 0;
  background: var(--gold-50);
  color: var(--gold-700);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.hero-card-2 .hero-card-icon {
  background: rgba(255,255,255,.22);
  color: var(--white);
}
.hero-card-icon svg { width: 22px; height: 22px; }
@media (max-width: 1024px) {
  .hero-card-stack { height: 380px; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .hero-card-stack { display: none; }
}

/* ============ Google Reviews badge ============ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: all .25s var(--ease-out);
}
.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}
.google-badge-mark {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.google-badge-mark svg { width: 28px; height: 28px; }
.google-badge-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}
.google-badge-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-800);
}
.google-badge-stars .stars { color: #FBBC04; display: inline-flex; gap: 1px; }
.google-badge-stars .stars svg { width: 14px; height: 14px; fill: currentColor; }
.google-badge-text {
  font-size: .75rem;
  color: var(--gray-600);
  font-weight: 500;
}
.google-badge-text strong {
  color: var(--navy-800);
  font-weight: 700;
}

/* Centered version for hero / section heads */
.google-badge-center {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ============ Trust strip ============ */
.trust-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-strip-label {
  text-align: center;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
}
.trust-logos div {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gray-400);
  font-size: 1.0625rem;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .25s var(--ease-out);
}
.trust-logos div:hover { color: var(--navy-800); }

/* ============ Partners section ============ */
.partners-section {
  background: var(--white);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.partners-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.partners-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  margin-bottom: 12px;
}
.partners-head p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.65;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 132px;
  transition: all .25s var(--ease-out);
  gap: 12px;
}
.partner-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.partner-mark {
  height: 56px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.partner-img {
  max-height: 56px;
  max-width: 90%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.partner-fallback {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-800);
  background: linear-gradient(135deg, var(--gold-50), var(--white));
  border: 1px solid var(--gray-200);
  border-radius: 0;
  padding: 10px 16px;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.partner-card-name {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .01em;
  line-height: 1.3;
}

/* ============ Why us ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--gold-50), var(--white));
  border: 1px solid var(--gold-400);
  color: var(--gold-700);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.1875rem; margin-bottom: 8px; }
.why-card p { font-size: .9375rem; line-height: 1.6; }

/* ============ Services grid ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all .35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .link-arrow { color: var(--white); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 0;
  background: var(--gold-50);
  border: 1px solid var(--gray-200);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all .35s var(--ease-out);
}
.service-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}
.service-card:hover .service-icon {
  /* When card hover turns the card navy, keep icon visible on white tile */
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  transition: color .3s var(--ease-out);
}
.service-card p {
  font-size: .9375rem;
  margin-bottom: 24px;
  flex: 1;
  transition: color .3s var(--ease-out);
}
.service-card .link-arrow { transition: color .3s var(--ease-out); }

/* ============ Process ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.process-step { position: relative; }
.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  display: block;
}
.process-step h4 {
  font-size: 1.1875rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.process-step p { font-size: .9375rem; line-height: 1.6; }

/* ============ Stats ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: .9375rem;
  color: var(--gray-600);
  margin-top: 12px;
  font-weight: 500;
}

/* ============ Testimonials / Reviews ============ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .3s var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.review-stars { color: var(--gold-600); display: flex; gap: 2px; }
.review-stars svg { width: 18px; height: 18px; fill: currentColor; }
.review-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-700);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--gold-500);
  font-weight: 700;
  display: grid;
  place-items: center;
}
.review-author strong { display: block; color: var(--navy-800); font-size: .9375rem; }
.review-author span { display: block; color: var(--gray-500); font-size: .8125rem; }

/* ============ Calculator teaser banner ============ */
.calc-banner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.calc-banner::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.18), transparent 70%);
}
.calc-banner > * { position: relative; }
.calc-banner h2 { color: var(--white); margin-bottom: 16px; }
.calc-banner p { color: rgba(255,255,255,.78); font-size: 1.0625rem; margin-bottom: 28px; }
.calc-banner-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.calc-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.calc-row:last-child { border: none; padding-top: 16px; }
.calc-row span { color: rgba(255,255,255,.7); font-size: .9375rem; }
.calc-row strong { color: var(--white); font-weight: 600; }
.calc-total strong { color: var(--gold-500); font-size: 1.25rem; }
@media (max-width: 768px) {
  .calc-banner { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s var(--ease-out);
}
.faq-item.open { border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--navy-800);
  text-align: left;
  gap: 16px;
}
.faq-q-icon {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-50);
  color: var(--gold-700);
  display: grid;
  place-items: center;
  transition: all .3s var(--ease-out);
}
.faq-q-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-q-icon {
  background: var(--gold-600);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq-a-inner { padding: 0 24px 22px; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }

/* ============ Blog cards ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  gap: 12px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-meta span { color: var(--gray-400); }
.blog-card h3 { font-size: 1.1875rem; line-height: 1.35; margin-bottom: 12px; }
.blog-card-body p { font-size: .9375rem; flex: 1; margin-bottom: 16px; }

/* ============ Big CTA ============ */
.cta-block {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: clamp(48px, 7vw, 80px);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(245,166,35,.18), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(122,46,150,.4), transparent 40%);
}
.cta-block > * { position: relative; }
.cta-block h2 { color: var(--white); max-width: 700px; margin: 0 auto 16px; }
.cta-block p { color: rgba(255,255,255,.78); font-size: 1.125rem; max-width: 580px; margin: 0 auto 32px; }
.cta-block .hero-cta { justify-content: center; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-900);
  color: var(--gray-300);
  padding: 80px 0 0;
  font-size: .9375rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

.footer-about p { color: rgba(255,255,255,.6); margin: 16px 0 24px; line-height: 1.7; }
.footer-about .logo { color: var(--white); }
.footer-about .logo small { color: var(--gray-400); }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display: grid;
  place-items: center;
  transition: all .25s var(--ease-out);
}
.footer-socials a:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-900);
  transform: translateY(-3px);
}
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,.65); transition: color .2s var(--ease-out); }
.footer-col ul a:hover { color: var(--gold-500); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.footer-contact-item svg {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  margin-top: 3px;
  color: var(--gold-500);
}
.footer-contact-item div { color: rgba(255,255,255,.7); line-height: 1.55; }
.footer-contact-item strong { color: var(--white); display: block; font-weight: 500; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--gold-500); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ============ Floating WhatsApp ============ */
.fab-whatsapp {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);
  z-index: 90;
  transition: transform .25s var(--ease-out);
}
.fab-whatsapp:hover { transform: scale(1.08); color: var(--white); }
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-whatsapp::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .6;
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============ Forms ============ */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--navy-800);
  font-size: .9375rem;
  transition: all .2s var(--ease-out);
  font-family: inherit;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(245,166,35,.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  margin-top: 16px;
  display: none;
}
.form-status.success { display: block; background: #ECFDF5; color: #065F46; border: 1px solid #6EE7B7; }
.form-status.error { display: block; background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }

/* ============ Page banner (sub-pages) ============ */
.page-banner {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  color: var(--gray-700);
  padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-100);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(245,166,35,.10), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(107,31,142,.05), transparent 50%);
}
.page-banner > .container { position: relative; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: .875rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--navy-800); }
.breadcrumbs span { color: var(--gray-300); }
.page-banner h1 { color: var(--navy-800); max-width: 820px; margin-bottom: 16px; }
.page-banner p { color: var(--gray-600); max-width: 640px; font-size: 1.125rem; }

/* ============ Two-column content ============ */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col-img {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-img.with-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-lg);
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: .5;
}

.check-list { margin: 24px 0; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--gray-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-50);
  border: 1.5px solid var(--gold-600);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--gold-700);
  border-bottom: 2px solid var(--gold-700);
  transform: rotate(-45deg);
}

/* ============ Reveal-on-scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ============ Service detail layout ============ */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) { .svc-layout { grid-template-columns: 1fr; } }

.svc-content h2 { margin-top: 40px; margin-bottom: 16px; }
.svc-content h2:first-child { margin-top: 0; }
.svc-content p { margin-bottom: 16px; line-height: 1.75; font-size: 1.0625rem; }
.svc-content > img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 32px 0;
}

.svc-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) { .svc-aside { position: static; } }

.aside-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.aside-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 16px;
  color: var(--navy-800);
}
.aside-card.dark {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-color: transparent;
}
.aside-card.dark h4 { color: var(--white); }
.aside-card.dark p { color: rgba(255,255,255,.75); font-size: .9375rem; margin-bottom: 20px; }

.fact-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9375rem;
}
.fact-row:last-child { border: none; }
.fact-row span { color: var(--gray-500); }
.fact-row strong { color: var(--navy-800); font-weight: 600; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-600);
}
.benefit-item-icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 0;
  background: var(--gold-50);
  color: var(--gold-700);
  display: grid;
  place-items: center;
}
.benefit-item-icon svg { width: 18px; height: 18px; }
.benefit-item strong {
  display: block;
  color: var(--navy-800);
  font-size: 1rem;
  margin-bottom: 4px;
}
.benefit-item span { color: var(--gray-600); font-size: .9375rem; line-height: 1.5; }

/* ============ Contact page split ============ */
.contact-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; gap: 40px; } }

.contact-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245,166,35,.18), transparent 60%);
}
.contact-info-card > * { position: relative; }
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 32px; }

.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-info-row:last-child { border: none; }
.contact-info-icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 0;
  background: rgba(245,166,35,.15);
  color: var(--gold-500);
  display: grid;
  place-items: center;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-row strong { color: var(--white); display: block; font-weight: 600; margin-bottom: 4px; }
.contact-info-row span { color: rgba(255,255,255,.7); font-size: .9375rem; line-height: 1.55; display: block; }
.contact-info-row a { color: rgba(255,255,255,.85); }
.contact-info-row a:hover { color: var(--gold-400); }

.map-embed {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  aspect-ratio: 21/9;
  background: var(--gray-100);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================
   MOBILE AUDIT — fixes for proper edge visibility and rhythm
   on phones and small tablets
   ========================================================== */

/* --- Tablet (768px and below) ----------------------------- */
@media (max-width: 768px) {

  /* Section vertical padding — keeps above-fold content visible */
  .section { padding: clamp(48px, 8vw, 80px) 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 1rem; }

  /* Page banner — less aggressive on phones */
  .page-banner { padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 5vw, 52px); }
  .page-banner h1 { font-size: clamp(1.75rem, 5vw, 2.25rem); }
  .page-banner p { font-size: 1rem; }

  /* Hero hand-off — buttons stack full-width so they're easier to tap */
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; flex: 1 1 100%; }

  /* Hero trust block — wraps neatly */
  .hero-trust { gap: 20px 24px; padding-top: 24px; margin-top: 32px; }
  .hero-trust-num { font-size: 1.5rem; }

  /* CTA block (deep purple) — tighter on phones */
  .cta-block { padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 40px); }
  .cta-block h2 { font-size: clamp(1.5rem, 4.5vw, 2rem); }

  /* Cards — reduce padding so content has room */
  .service-card,
  .why-card,
  .review-card,
  .contact-card,
  .contact-info-card,
  .calc-card,
  .calc-result,
  .aside-card { padding: 24px; }

  /* Sticky aside columns shouldn't be sticky on mobile —
     they fight against natural scroll on small screens */
  .calc-result,
  .svc-aside,
  .svc-aside .aside-card { position: static !important; top: auto; }

  /* Calculator wrap — single column already at 900px, but ensure gap is tight */
  .calc-wrap { gap: 28px; }

  /* Service-detail layout — single column on tablet/phone */
  .svc-layout { gap: 32px; }
  .svc-content h2 { font-size: 1.5rem; margin-top: 32px; }
  .svc-content p,
  .svc-content li { font-size: 1rem; line-height: 1.65; }

  /* Two-column blocks (about page) */
  .two-col { gap: 32px; }

  /* Benefits grid — single column on small screens for readability */
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-item { padding: 16px; }

  /* Footer — tighter columns */
  .site-footer { padding-top: 56px; }
  .footer-top { gap: 32px; padding-bottom: 40px; }

  /* WhatsApp FAB — slightly smaller on phones */
  .fab-whatsapp { width: 54px; height: 54px; bottom: 96px; right: 16px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }

  /* Modal padding for the calculator gate */
  .modal-back { padding: 16px; }
}

/* --- Small phones (480px and below) ----------------------- */
@media (max-width: 480px) {

  .container { padding: 0 16px; }

  /* Heroes — slightly smaller h1 to avoid awkward wraps */
  .hero h1 { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Cards — final tighten on small phones */
  .service-card,
  .why-card,
  .review-card,
  .calc-card,
  .calc-result { padding: 20px; }

  /* Buttons — large becomes regular */
  .btn { padding: 12px 22px; font-size: .875rem; }
  .btn-lg { padding: 14px 24px; font-size: .9375rem; }
  .btn-sm { padding: 9px 16px; font-size: .8125rem; }

  /* Hero stats — single row of 2 instead of 4 cramped columns */
  .hero-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Stats section uses similar fix */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-num { font-size: clamp(2rem, 8vw, 2.75rem); }

  /* Process steps — 2 cols on phone is more readable than 4 */
  .process-grid { gap: 18px; }
  .process-num { font-size: 2.5rem; }

  /* Partner grid — already 2 cols on small, keep tight */
  .partner-card { min-height: 110px; padding: 14px 10px; }
  .partner-card-name { font-size: .75rem; }

  /* Service icon containers — slightly smaller */
  .service-icon { width: 56px; height: 56px; border-radius: 0; }
  .service-icon svg { width: 30px; height: 30px; }

  /* Form rows — single column already, tighten gaps */
  .field-row { gap: 12px; }

  /* Calculator — option grid: 2 cols max */
  .opt-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Topbar (hidden) and Header CTA-area buttons */
  .header-actions .btn { display: none; }

  /* Footer-bottom — stack copyright + legal */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
  .footer-legal { flex-wrap: wrap; gap: 14px; }

  /* FAB on tiniest screens — even further from bottom-right */
  .fab-whatsapp { bottom: 86px; right: 14px; }
}

/* ============ Utility ============ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
