/* =====================================================================
   Lifting Legend — Main Stylesheet
   Design tokens at top. Layout + components below. Keep edits scoped.
   ===================================================================== */

:root {
  /* Brand */
  --navy:       #0A2540;
  --navy-700:   #112e52;
  --navy-300:   #4a6685;
  --orange:     #FF6B35;
  --orange-600: #e85a25;
  --gold:       #FFB347;

  /* Neutrals */
  --black:    #0d1117;
  --gray-900: #1a1a1a;
  --gray-800: #2d3748;
  --gray-700: #4a5568;
  --gray-500: #718096;
  --gray-400: #a0aec0;
  --gray-300: #cbd5e0;
  --gray-200: #e2e8f0;
  --gray-100: #eef0f3;
  --gray-50:  #f7f9fc;
  --white:    #ffffff;

  /* Semantic */
  --bg:        #ffffff;
  --bg-soft:   #f7f9fc;
  --text:      #0d1117;
  --text-soft: #4a5568;
  --primary:   var(--navy);
  --accent:    var(--orange);

  /* Type */
  --font-heading: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter',   system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container:  1200px;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10,37,64,.06), 0 1px 2px rgba(10,37,64,.04);
  --shadow-md: 0 6px 16px rgba(10,37,64,.08);
  --shadow-lg: 0 16px 40px rgba(10,37,64,.14);
  --shadow-xl: 0 28px 60px rgba(10,37,64,.18);

  --t-fast: 150ms cubic-bezier(.4,0,.2,1);
  --t:      200ms cubic-bezier(.4,0,.2,1);
  --t-slow: 400ms cubic-bezier(.4,0,.2,1);
}

/* ------------------------ Reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1rem; color: var(--text-soft); }
a  { color: var(--primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent); }
ul, ol { padding-left: 1.25rem; }

::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--primary); color: #fff;
  padding: 8px 16px; border-radius: 4px; z-index: 9999;
}
.skip-link:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ------------------------ Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
  transition: transform var(--t), background-color var(--t), color var(--t), box-shadow var(--t), border-color var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(0); }
.btn:hover  { transform: translateY(-1px); }
.btn-lg     { padding: 16px 30px; font-size: 16px; }
.btn-block  { width: 100%; }

.btn-primary       { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(255,107,53,.35); }
.btn-primary:hover { background: var(--orange-600); color: #fff; box-shadow: 0 8px 22px rgba(255,107,53,.45); }

.btn-secondary       { background: var(--primary); color: #fff; }
.btn-secondary:hover { background: var(--navy-700); color: #fff; }

.btn-outline       { background: transparent; color: var(--primary); border-color: var(--gray-300); }
.btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.btn-outline-light       { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--primary); border-color: #fff; }

.btn-soft       { background: var(--gray-50); color: var(--primary); }
.btn-soft:hover { background: var(--gray-100); color: var(--primary); }

.btn-danger       { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #a82e22; color: #fff; }

/* ------------------------ Header ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.site-header.scrolled { background: rgba(255,255,255,.98); box-shadow: 0 4px 18px rgba(10,37,64,.06); border-bottom-color: transparent; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--primary); }
.brand:hover { color: var(--primary); }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--primary); color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}
.brand-mark-light { background: rgba(255,255,255,.1); color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.015em; }
.brand-tag  { font-size: 0.74rem; color: var(--gray-500); font-weight: 500; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  color: var(--gray-700); font-weight: 500; font-size: 15px;
  position: relative; padding: 4px 0;
}
.nav-link.active, .nav-link:hover { color: var(--primary); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 3px;
  background: var(--accent); border-radius: 3px;
}
.nav-cta       { padding: 10px 18px; font-size: 14px; }
.nav-cta-phone { padding: 8px 14px; font-size: 14px; gap: 6px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 10px;
  background: none; border: 0;
  cursor: pointer;
  flex-direction: column; justify-content: space-around;
}
.nav-toggle span { display: block; height: 2px; background: var(--primary); transition: transform var(--t), opacity var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ------------------------ Hero ------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,107,53,.20), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(255,179,71,.10), transparent 60%),
    linear-gradient(135deg, #08203c 0%, #0A2540 55%, #163a66 100%);
  color: #fff;
  padding: 96px 0 84px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 60%, transparent 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 { color: #fff; margin-bottom: .5em; }
.hero-copy .accent { color: var(--gold); }
.hero-copy .lede { font-size: 1.2rem; max-width: 540px; color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 14px; color: rgba(255,255,255,.75);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; display: inline-block; }

.hero-card {
  background: #fff;
  color: var(--text);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-card-head h2 { font-size: 1.3rem; margin-bottom: 4px; }
.hero-card-head p  { font-size: 14px; margin-bottom: 18px; }
.hero-form { display: grid; gap: 10px; }
.hero-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-form input, .hero-form select, .hero-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font: inherit; color: var(--text);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
}
.hero-form input:focus, .hero-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,53,.18);
}
.form-foot { font-size: 12.5px; color: var(--gray-500); text-align: center; margin: 6px 0 0; }

/* ------------------------ Stats ------------------------------------ */
.stats { background: var(--gray-50); padding: 48px 0; border-bottom: 1px solid var(--gray-100); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  display: block;
  letter-spacing: -0.02em;
}
.stat-item .stat-label {
  font-size: 13px; color: var(--gray-700);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600;
}

/* ------------------------ Sections --------------------------------- */
.section       { padding: 96px 0; }
.section-soft  { background: var(--gray-50); }
.section-dark  { background: var(--primary); color: rgba(255,255,255,.9); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.8); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  margin-bottom: 12px;
}
.section-eyebrow-light { color: var(--gold); }
.section-head p { color: var(--text-soft); font-size: 1.1rem; }
.section-dark .section-head p { color: rgba(255,255,255,.75); }

/* ------------------------ Grid utilities --------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ------------------------ Cards / Services ------------------------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card { display: flex; flex-direction: column; }
.service-card .service-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  background: rgba(255,107,53,.12);
  color: var(--accent);
  border-radius: 14px;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 6px; color: var(--text); }
.service-card p  { color: var(--text-soft); margin-bottom: 14px; flex: 1; }
.service-card .learn {
  color: var(--primary); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto;
}
.service-card:hover .learn { color: var(--accent); }
.service-card-cta {
  background: linear-gradient(135deg, var(--primary), var(--navy-700));
  color: #fff;
  border-color: transparent;
}
.service-card-cta h3, .service-card-cta .learn { color: #fff; }
.service-card-cta p { color: rgba(255,255,255,.8); }
.service-card-cta .service-icon { background: rgba(255,255,255,.10); color: #fff; }

/* ------------------------ Intro grid ------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.intro-points { list-style: none; padding: 0; display: grid; gap: 16px; }
.intro-points li { display: flex; gap: 14px; }
.intro-points strong { color: var(--text); display: block; margin-bottom: 2px; }
.check-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: rgba(34, 160, 107, .12);
  color: #22a06b;
  border-radius: 8px;
}

/* ------------------------ Benefits --------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 36px;
}
.benefit { display: flex; gap: 16px; }
.benefit-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--primary); color: #fff;
  border-radius: 12px;
}
.benefit h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--text); }
.benefit p { font-size: 15px; color: var(--text-soft); margin: 0; }

/* ------------------------ Process ---------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { position: relative; padding-top: 16px; }
.process-step .step-num {
  position: absolute; top: -28px; left: -8px;
  font-family: var(--font-heading);
  font-size: 6rem; font-weight: 800;
  color: rgba(255,255,255,.06);
  line-height: 1; z-index: 0;
  letter-spacing: -0.05em;
}
.process-step .step-body { position: relative; z-index: 1; }
.process-step h3 { color: #fff; }
.process-step p { color: rgba(255,255,255,.7); font-size: 15px; }

/* ------------------------ Reviews ---------------------------------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
}
.review-stars {
  color: #f6b733; font-size: 18px;
  letter-spacing: 2px; margin-bottom: 12px;
}
.review-text { color: var(--text); font-size: 15.5px; margin-bottom: 18px; flex: 1; }
.review-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--gray-500); border-top: 1px solid var(--gray-100); padding-top: 14px; }
.review-name { font-weight: 600; color: var(--text); }

/* ------------------------ FAQ -------------------------------------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--t);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--text-soft);
}

/* ------------------------ CTA Band --------------------------------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 100% 50%, rgba(255,107,53,.18), transparent 60%),
    linear-gradient(135deg, var(--primary), var(--navy-700));
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p  { color: rgba(255,255,255,.85); margin: 0 0 24px; font-size: 1.1rem; }
.cta-band-inner { display: flex; flex-direction: column; align-items: center; }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ------------------------ Page Header ------------------------------ */
.page-header {
  background:
    radial-gradient(700px 400px at 10% -20%, rgba(255,107,53,.16), transparent 60%),
    linear-gradient(135deg, var(--primary), var(--navy-700));
  color: #fff;
  padding: 88px 0 64px;
  text-align: center;
}
.page-header h1 { color: #fff; }
.page-header p  { color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto; font-size: 1.15rem; }
.crumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: var(--gold); }

/* ------------------------ Service Detail --------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail-icon {
  width: 88px; height: 88px;
  display: grid; place-items: center;
  background: var(--primary); color: #fff;
  border-radius: 18px;
}
.service-detail-alt .service-detail-icon { background: var(--accent); }
.service-detail-body h2 { margin-bottom: 8px; }
.check-list { list-style: none; padding: 0; margin: 16px 0 22px; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-soft);
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px;
  background: #22a06b;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ------------------------ Pricing ---------------------------------- */
.pricing-grid { align-items: stretch; }
.price-card { text-align: center; display: flex; flex-direction: column; }
.price-card h3 { margin-bottom: 12px; }
.price-tag {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 800;
  color: var(--primary);
  margin: 8px 0 20px;
  line-height: 1;
}
.price-tag span { font-size: 0.9rem; font-weight: 500; color: var(--gray-500); }
.price-card .check-list { margin: 8px 0 20px; flex: 1; text-align: left; }
.price-card-feature {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  transform: scale(1.03);
  position: relative;
}
.price-card-feature h3, .price-card-feature .price-tag, .price-card-feature .check-list li { color: #fff; }
.price-card-feature .price-tag span { color: rgba(255,255,255,.7); }
.price-card-feature .check-list li::before { background: var(--gold); }
.ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pricing-note { text-align: center; color: var(--text-soft); margin-top: 24px; font-size: 15px; }

/* ------------------------ About page ------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.about-visual { position: relative; }
.about-image {
  background:
    radial-gradient(400px 200px at 80% 20%, rgba(255,107,53,.2), transparent 60%),
    linear-gradient(135deg, var(--primary), var(--navy-700));
  border-radius: var(--radius-lg);
  min-height: 420px;
  display: grid; place-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.about-image-overlay { position: relative; text-align: center; }
.about-image-overlay p { color: rgba(255,255,255,.9); font-size: 1.2rem; margin: 12px 0 0; font-weight: 500; }
.rating-badge {
  position: absolute; bottom: -24px; right: -10px;
  background: #fff; color: var(--text);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; gap: 14px; align-items: center;
}
.rating-num {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.rating-num span { color: var(--gold); margin-left: 4px; }
.rating-meta strong { display: block; }
.rating-meta span { color: var(--gray-500); font-size: 13px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { text-align: left; }
.value-num {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.about-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary), var(--navy-700));
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.number-block .number-big {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  display: block; line-height: 1;
}
.number-block .number-label { font-size: 13px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 0.08em; }

/* ------------------------ Locations -------------------------------- */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card { text-align: center; padding: 28px; }
.area-icon {
  margin: 0 auto 14px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: rgba(10,37,64,.08);
  color: var(--primary);
  border-radius: 12px;
}
.area-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.area-card p { color: var(--text-soft); font-size: 14px; margin: 0; }

.map-wrap {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.area-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.contact-mini-card {
  background: var(--gray-50);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}
.contact-mini-card h3 { margin-bottom: 14px; }
.contact-mini-card p { margin-bottom: 10px; display: flex; gap: 10px; }
.contact-label {
  display: inline-block;
  min-width: 60px;
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ------------------------ Quote / Forms ---------------------------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  align-items: start;
}
.form-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-title { font-size: 1.5rem; margin-bottom: 4px; }
.form-subtitle { color: var(--text-soft); font-size: 15px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,53,.18);
}
.field.is-error input, .field.is-error select, .field.is-error textarea {
  border-color: #c0392b;
  background: #fff8f8;
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14.5px;
  border: 1px solid;
}
.alert-success, .alert-ok { background: #ddf2e0; color: #1b5e20; border-color: #a8d8ad; }
.alert-error { background: #fde2e2; color: #8b1c1c; border-color: #f5b5b5; }
.alert-info { background: #e0f0ff; color: #1a4d80; border-color: #b3d7f0; }

.quote-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.quote-side-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.quote-side-card { padding: 24px; }
.quote-side-card .btn { margin-top: 8px; }
.numbered-list { list-style: none; padding: 0; margin: 0; counter-reset: nlist; }
.numbered-list li {
  counter-increment: nlist;
  padding-left: 36px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-soft);
}
.numbered-list li::before {
  content: counter(nlist);
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  font-family: var(--font-heading);
}
.numbered-list li strong { color: var(--text); }
.quote-side-trust { background: var(--primary); color: #fff; border-color: transparent; }
.quote-side-trust p { color: rgba(255,255,255,.92); font-style: italic; margin-bottom: 12px; }
.quote-side-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 8px; }
.quote-side-author { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600; }

/* ------------------------ Contact page ----------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-channels { display: grid; gap: 14px; position: sticky; top: 96px; }
.contact-channel {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  text-decoration: none; color: var(--text);
}
.contact-channel:hover { transform: translateY(-2px); color: var(--text); }
.contact-channel h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-channel p { font-size: 1.15rem; margin: 0 0 4px; color: var(--text); }
.contact-channel small { color: var(--gray-500); font-size: 13px; }
.contact-channel-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255,107,53,.12);
  color: var(--accent);
  border-radius: 12px;
}
.contact-channel-static { cursor: default; }
.contact-channel-static:hover { transform: none; }

/* ------------------------ Thank you page --------------------------- */
.thanks-hero {
  background:
    radial-gradient(800px 500px at 10% -20%, rgba(255,107,53,.12), transparent 60%),
    linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
  padding: 96px 0;
  text-align: center;
}
.thanks-inner { max-width: 720px; margin: 0 auto; }
.thanks-check {
  width: 88px; height: 88px;
  margin: 0 auto 28px;
  display: grid; place-items: center;
  background: #22a06b; color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(34,160,107,.3);
}
.thanks-inner h1 { margin-bottom: 12px; }
.thanks-inner .lede { font-size: 1.2rem; color: var(--text-soft); margin-bottom: 32px; }
.thanks-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 48px; }
.thanks-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left;
}
.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

/* ------------------------ Footer ----------------------------------- */
.site-footer { background: var(--black); color: #cbd5e0; padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-col-brand { max-width: 340px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand {
  font-size: 1.4rem; color: #fff;
  font-family: var(--font-heading);
  font-weight: 800; letter-spacing: -0.015em;
}
.footer-tagline { color: #94a3b8; font-size: 15px; }
.footer-col h4 {
  color: #fff; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.10em;
  margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #cbd5e0; font-size: 14.5px; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  color: #cbd5e0;
  transition: background var(--t), color var(--t), transform var(--t);
}
.social-link:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 14px; font-size: 14.5px; color: #cbd5e0; }
.contact-list .contact-label {
  display: block;
  color: var(--gray-500); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
  color: #7a8aa0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { margin: 0; color: #7a8aa0; }

/* ------------------------ Floating WhatsApp FAB -------------------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.40), 0 2px 6px rgba(0,0,0,.10);
  z-index: 70;
  transition: transform var(--t), box-shadow var(--t), width var(--t-slow), border-radius var(--t-slow);
  overflow: hidden;
  white-space: nowrap;
}
.whatsapp-fab:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(37,211,102,.55), 0 3px 8px rgba(0,0,0,.12);
}
.whatsapp-fab svg { flex-shrink: 0; }
.whatsapp-fab-label {
  font-size: 0; opacity: 0;
  margin-left: 0;
  font-weight: 600;
  transition: font-size var(--t-slow), opacity var(--t-slow), margin-left var(--t-slow);
}
/* Pulse ring on idle (desktop only — battery-friendly) */
@media (hover: hover) and (pointer: fine) {
  .whatsapp-fab::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37,211,102,.55);
    animation: wa-pulse 2.4s cubic-bezier(.4,0,.6,1) infinite;
  }
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.50); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}

/* ------------------------ Mobile sticky CTA bar -------------------- */
.mobile-cta-bar {
  display: none; /* shown only on mobile via responsive.css */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 65;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--gray-200);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.mcb-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.mcb-call  { background: var(--primary); color: #fff; }
.mcb-quote { background: var(--accent);  color: #fff; }
.mcb-call:hover, .mcb-quote:hover { color: #fff; }

/* ------------------------ Reveal animations ------------------------ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
