/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1f3c;
  --navy-mid:   #1B3054;
  --navy-light: #234072;
  --teal:       #3AAFB9;
  --teal-light: #5DCDD6;
  --teal-glow:  rgba(58,175,185,0.4);
  --bg:         #F4F7FB;
  --white:      #FFFFFF;
  --text:       #1E2D3D;
  --muted:      #5A6A7E;
  --border:     #D6E0EE;
  --shadow:     0 8px 40px rgba(13,31,60,.12);
  --shadow-lg:  0 24px 80px rgba(13,31,60,.2);
  --radius:     14px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.has-cursor { cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

/* ── Custom Cursor ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(58,175,185,0.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor.hovering { width: 20px; height: 20px; background: var(--teal-light); }
.cursor-ring.hovering { width: 56px; height: 56px; opacity: 0.4; }
body:not(.has-cursor) .cursor,
body:not(.has-cursor) .cursor-ring { display: none; }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section--alt { background: var(--white); }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(13,31,60,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; max-width: 1120px; margin: 0 auto;
}
.nav-logo img { height: 52px; }
nav.scrolled .nav-logo img { content: url("logo-dark.png"); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-weight: 500; color: rgba(255,255,255,0.85); font-size: .95rem;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--teal); transform: scaleX(0);
  transition: transform 0.25s; transform-origin: left;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--teal-light); }
nav.scrolled .nav-links a { color: var(--navy); }
nav.scrolled .nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal) !important; color: white !important;
  padding: 10px 24px !important; border-radius: 8px; font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { background: var(--teal-light) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(58,175,185,.4) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }
nav.scrolled .hamburger span { background: var(--navy); }

/* ── Buttons ── */
.btn {
  display: inline-block; font-weight: 600; border-radius: 10px;
  padding: 14px 32px; cursor: none; transition: all 0.25s; font-size: 1rem;
  border: 2px solid transparent; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%); transition: transform 0.3s;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(58,175,185,.45); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn-lg { padding: 17px 40px; font-size: 1.1rem; border-radius: 12px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.85) 0%, rgba(13,31,60,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 120px 0 80px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(58,175,185,0.2); border: 1px solid rgba(58,175,185,0.4);
  color: var(--teal-light); font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; padding: 8px 16px; border-radius: 40px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-tag span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 { color: white; margin-bottom: 24px; letter-spacing: -.02em; }
.hero h1 em {
  font-style: normal; color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text; background-clip: text;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.75); margin-bottom: 40px; max-width: 480px; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating stats card */
.hero-stats-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 40px;
  transform-style: preserve-3d;
}
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hero-stat-item {
  text-align: center; padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transform: translateZ(20px);
  transition: transform 0.3s;
}
.hero-stat-item:hover { transform: translateZ(40px); }
.hero-stat-item .num {
  font-size: 2.4rem; font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text; background-clip: text;
  display: block; line-height: 1;
}
.hero-stat-item .label { color: rgba(255,255,255,.65); font-size: .82rem; margin-top: 6px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.scroll-indicator svg { animation: none; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Section labels & headers ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--teal); }
.section-header { margin-bottom: 64px; }
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin-top: 14px; line-height: 1.75; }
.center { text-align: center; }
.section-header.center p { margin: 14px auto 0; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.trust-inner { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); font-size: .88rem; font-weight: 500; }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ── 3D Service Cards ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,175,185,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { box-shadow: 0 30px 80px rgba(13,31,60,0.15); }
.service-card-inner { transform: translateZ(20px); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(58,175,185,0.15), rgba(58,175,185,0.05));
  border: 1px solid rgba(58,175,185,0.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-icon svg { color: var(--teal); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .93rem; line-height: 1.65; }
.service-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-size: .85rem; font-weight: 600; margin-top: 16px;
  opacity: 0; transform: translateX(-8px); transition: all 0.3s;
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ── Pricing cards ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; position: relative;
  display: flex; flex-direction: column; gap: 20px;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover { border-color: var(--teal); box-shadow: 0 24px 80px rgba(58,175,185,.15); }
.pricing-card.featured {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-color: var(--teal);
  box-shadow: 0 24px 80px rgba(13,31,60,.3), 0 0 0 1px var(--teal);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white; font-size: .73rem; font-weight: 700;
  padding: 5px 18px; border-radius: 40px; letter-spacing: .08em;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(58,175,185,.5);
}
.plan-name { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.pricing-card.featured .plan-name { color: var(--teal-light); }
.plan-price { font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-card.featured .plan-price { color: white; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pricing-card.featured .plan-price span { color: rgba(255,255,255,.6); }
.plan-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,.65); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; }
.plan-feature svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.pricing-card.featured .plan-feature svg { color: var(--teal-light); }
.pricing-card.featured .plan-feature { color: rgba(255,255,255,.85); }

/* ── Stats ── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,175,185,.08), transparent 70%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat-item { text-align: center; padding: 32px 20px; }
.stat-num {
  font-size: 3.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1;
}
.stat-label { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 8px; }

/* ── Process ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps-line {
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--border);
}
.steps-line-fill {
  height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-light));
  width: 0%; transition: width 1.5s ease;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white; font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(58,175,185,.4), 0 0 0 8px var(--bg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover .step-num { transform: scale(1.15); box-shadow: 0 12px 32px rgba(58,175,185,.6), 0 0 0 8px var(--bg); }
.step h3 { color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.quote-icon { color: var(--teal); opacity: .4; }
.stars { color: #F59E0B; font-size: 1rem; letter-spacing: 3px; }
.testimonial-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; flex: 1; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: .88rem; }
.testimonial-author span { color: var(--muted); font-weight: 400; }

/* ── CTA Banner ── */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0;
}
.cta-banner::before {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,175,185,.12), transparent 70%);
}
.cta-banner::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,175,185,.08), transparent 70%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: #080f1f;
  color: rgba(255,255,255,.6);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 56px; }
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 32px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .84rem;
}

/* ── Scroll reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.from-left  { transform: translateX(-48px); }
.reveal.from-right { transform: translateX(48px); }
.reveal.scale-in   { transform: scale(0.9); }
.reveal.visible {
  opacity: 1; transform: translate(0) scale(1);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white; padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233AAFB9' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── Services page ── */
.services-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.service-detail-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; cursor: none;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  display: flex; gap: 18px; align-items: flex-start;
}
.service-detail-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-detail-card.selected { border-color: var(--teal); background: rgba(58,175,185,0.03); }
.service-detail-card .check {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center;
  transition: .2s;
}
.service-detail-card.selected .check { background: var(--teal); border-color: var(--teal); }
.service-detail-card.selected .check::after { content: '✓'; color: white; font-size: .7rem; font-weight: 700; }
.service-detail-card h3 { color: var(--navy); margin-bottom: 6px; }
.service-detail-card p { color: var(--muted); font-size: .9rem; }
.service-detail-card .price-tag { font-size: 1.1rem; font-weight: 700; color: var(--teal); margin-top: 8px; }

/* ── Order form ── */
.order-form-wrapper {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}
.order-summary { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; border-radius: var(--radius); padding: 28px; margin-bottom: 32px; }
.order-summary h3 { margin-bottom: 16px; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .93rem; }
.summary-row:last-child { border: none; font-weight: 700; font-size: 1.15rem; color: var(--teal-light); margin-top: 8px; }
.summary-empty { color: rgba(255,255,255,.45); font-size: .9rem; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 7px; }
input, select, textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: .95rem; color: var(--text);
  background: var(--bg); transition: border-color .2s, background .2s; font-family: inherit;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); background: white; }
textarea { min-height: 100px; resize: vertical; }
.truck-input-wrapper { position: relative; display: flex; align-items: center; }
.truck-input-wrapper input { padding-right: 120px; font-size: 1.2rem; font-weight: 700; }
.truck-suffix { position: absolute; right: 14px; color: var(--muted); font-size: .9rem; }

.payment-section { margin-top: 32px; border-top: 1px solid var(--border); padding-top: 32px; }
.payment-section h3 { color: var(--navy); margin-bottom: 20px; }
.payment-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.pay-btn {
  flex: 1; min-width: 200px; padding: 16px 24px; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: none; border: none;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.pay-btn:hover { transform: translateY(-2px); }
.pay-stripe { background: #635BFF; color: white; }
.pay-stripe:hover { box-shadow: 0 8px 24px rgba(99,91,255,.4); }
.pay-paypal { background: #FFC439; color: #003087; }
.pay-paypal:hover { box-shadow: 0 8px 24px rgba(255,196,57,.4); }
#paypal-button-container { min-height: 50px; }

/* ── About page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--navy-mid), var(--navy));
  height: 400px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-card h3 { color: var(--navy); margin-bottom: 6px; }
.value-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item-icon {
  width: 50px; height: 50px; background: rgba(58,175,185,.1);
  border: 1px solid rgba(58,175,185,.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { color: var(--teal); }
.contact-item h4 { color: var(--navy); margin-bottom: 4px; }
.contact-item p { color: var(--muted); font-size: .92rem; }
.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 28px; }

/* ── Misc ── */
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.required { color: var(--teal); }
.hidden { display: none !important; }

/* ── Nav dropdown ── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.has-dropdown > a svg { transition: transform .25s; }
.has-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: -16px;
  min-width: 260px; list-style: none;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  box-shadow: 0 20px 60px rgba(13,27,42,.4);
  z-index: 1002;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 11px 14px; border-radius: 8px;
  color: rgba(255,255,255,.8) !important; font-size: .9rem;
  border-left: 2px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
}
.dropdown li a::after { display: none !important; }
.dropdown li a:hover { background: rgba(58,175,185,.12); border-left-color: var(--teal); color: var(--teal-light) !important; }
nav.scrolled .dropdown li a { color: rgba(255,255,255,.8) !important; }
.dropdown::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}

/* ── 3D card hover (inner pages) ── */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-3d:hover {
  transform: perspective(800px) rotateX(-3deg) rotateY(4deg) translateY(-6px);
  box-shadow: 0 24px 60px rgba(13,27,42,0.18), 0 0 0 1px rgba(58,175,185,0.15);
}

/* ── Ambient teal glow ── */
.section-glow { position: relative; }
.section-glow::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(58,175,185,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Page hero teal radial glow ── */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(58,175,185,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-light);
  background: rgba(58,175,185,.15); border: 1px solid rgba(58,175,185,.3);
  padding: 6px 16px; border-radius: 40px; margin-bottom: 18px;
}
.page-hero .btn { margin-top: 28px; }

/* ── Hero value-prop card ── */
.value-prop-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.value-prop-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.5;
}
.value-prop-list .vp-check {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: rgba(58,175,185,.2); border: 1px solid rgba(58,175,185,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); font-weight: 700; font-size: .8rem;
}
.hero-card-title {
  color: white; font-size: 1.15rem; font-weight: 700; margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.hero-card-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.12); }

/* ── Service hub cards ── */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hub-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px;
  display: flex; flex-direction: column; gap: 12px;
}
.hub-card h3 { color: var(--navy); font-size: 1.3rem; }
.hub-card .hub-price { color: var(--teal); font-weight: 800; font-size: 1.15rem; }
.hub-card p { color: var(--muted); font-size: .93rem; line-height: 1.65; flex: 1; }
.hub-card-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hub-card-btns .btn { padding: 11px 22px; font-size: .9rem; }

/* ── Add-on / one-time rows ── */
.price-row {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 28px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  transition: border-color .25s, box-shadow .25s;
}
.price-row:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.price-row + .price-row { margin-top: 14px; }
.price-row .pr-name { font-weight: 700; color: var(--navy); flex: 1; min-width: 200px; }
.price-row .pr-price { font-weight: 800; color: var(--teal); font-size: 1.05rem; white-space: nowrap; }
.price-row .btn { padding: 10px 22px; font-size: .88rem; }

@media (max-width: 900px) {
  .hub-grid { grid-template-columns: 1fr; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; border: none; background: rgba(255,255,255,.05);
    margin-top: 8px;
  }
  .has-dropdown.open .dropdown { display: block; }
}
@media (max-width: 640px) {
  .nav-logo img { height: 40px; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding: 120px 0 60px; }
  .hero-stats-card { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-detail { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); padding: 100px 32px 40px; gap: 24px; justify-content: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,.85); font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
