/* =========================================================
   SOLREN AS — Stylesheet
   Brand: Ocean #1A6FD4 / Sky #4A9FE8 / Sun gold #F5A623 /
          White #FFFFFF / Light #EEF4FB / Deep #0A2540
   ========================================================= */

:root {
  --ocean: #1A6FD4;
  --ocean-dark: #0E4FA0;
  --sky: #4A9FE8;
  --gold: #F5A623;
  --gold-deep: #D98D11;
  --white: #FFFFFF;
  --light: #EEF4FB;
  --light-2: #F8FBFD;
  --deep: #0A2540;
  --deep-2: #112B4E;
  --ink: #0F1B2D;
  --gray: #5C6B82;
  --gray-2: #8C9AAE;
  --line: #DDE6F0;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 12px 36px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 37, 64, 0.18);
  --shadow-glass: 0 20px 60px rgba(10, 37, 64, 0.30);

  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', -apple-system, sans-serif;

  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* lang toggle — JS swaps textContent, so we just need elements visible */

/* =========================================================
   NAV
   ========================================================= */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(26, 111, 212, 0.10);
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
}
nav#nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 64px; width: auto; }
.nav-logo-fallback {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem; letter-spacing: 0.04em;
  color: var(--deep); display: none;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
  letter-spacing: 0.01em; transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ocean); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex; gap: 2px; padding: 3px;
  background: rgba(26, 111, 212, 0.06);
  border-radius: 999px;
}
.lang-btn {
  background: transparent; border: 0; color: var(--gray);
  padding: 5px 12px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  transition: all 0.2s;
}
.lang-btn.active { background: var(--ocean); color: white; box-shadow: 0 2px 6px rgba(26, 111, 212, 0.3); }
.btn-nav {
  background: var(--deep); color: white;
  padding: 11px 22px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  transition: all 0.25s;
}
.btn-nav:hover { background: var(--ocean); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(26, 111, 212, 0.32); }

.hamburger { display: none; flex-direction: column; gap: 4px; padding: 8px; background: transparent; border: 0; }
.hamburger span { width: 22px; height: 2px; background: var(--deep); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   GLOBAL BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; border: 0;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em;
  transition: all 0.25s ease;
  text-decoration: none; cursor: pointer;
}
.btn-gold {
  background: linear-gradient(180deg, #F8B843 0%, #F5A623 100%);
  color: #2A1A05;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(245, 166, 35, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
.btn-primary {
  background: var(--ocean); color: white;
  box-shadow: 0 8px 22px rgba(26, 111, 212, 0.35);
}
.btn-primary:hover { background: var(--ocean-dark); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.20); border-color: white; }
.btn-ghost-dark {
  background: white; color: var(--deep); border: 1.5px solid var(--line);
}
.btn-ghost-dark:hover { border-color: var(--ocean); color: var(--ocean); }
.btn-whatsapp {
  background: #25D366; color: white; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1FB155; transform: translateY(-2px); }
.btn-large { padding: 18px 36px; font-size: 1.0rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 130%;
  object-fit: cover; object-position: center 40%;
  will-change: transform;
  transform: translateY(0);
  filter: saturate(1.1) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.55) 0%, rgba(10, 37, 64, 0.35) 35%, rgba(10, 37, 64, 0.85) 100%),
    linear-gradient(105deg, rgba(10, 37, 64, 0.85) 0%, rgba(10, 37, 64, 0.20) 55%, transparent 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.3; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.8);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.2vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-h1-row { display: block; }
.hero-h1-accent {
  background: linear-gradient(110deg, #F5A623 0%, #FFD66B 50%, #F5A623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.0rem, 1.4vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

.hero-stats {
  display: flex; align-items: stretch; gap: 32px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 760px;
}
.hstat { flex: 1; }
.hstat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline;
  color: white;
}
.hstat-suffix {
  font-size: 0.55em; color: rgba(255, 255, 255, 0.65);
  margin-left: 2px; font-weight: 600;
}
.hstat-label {
  margin-top: 8px;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
.hstat-divider { width: 1px; background: rgba(255, 255, 255, 0.18); }

.hero-scroll {
  position: absolute; bottom: -40px; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  width: 100%; height: 80px;
  z-index: 1; pointer-events: none;
}

/* =========================================================
   SECTION HEADERS (shared)
   ========================================================= */
section { padding: 110px 0; position: relative; }
.sec-head { max-width: 720px; margin-bottom: 60px; }
.sec-head-light { color: white; }
.sec-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--ocean);
  padding: 6px 14px;
  background: rgba(26, 111, 212, 0.08);
  border-radius: 999px;
  margin-bottom: 18px;
}
.sec-eyebrow-light {
  color: var(--gold);
  background: rgba(245, 166, 35, 0.14);
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--deep);
  margin-bottom: 18px;
  text-wrap: balance;
}
.sec-title-light { color: white; }
.sec-title .accent { color: var(--ocean); }
.sec-title .accent-gold { color: var(--gold); }
.sec-sub {
  font-size: 1.05rem; line-height: 1.65;
  color: var(--gray);
  max-width: 620px;
}

/* =========================================================
   RESULTS
   ========================================================= */
.results { background: var(--light); padding-bottom: 0; }
.ba-photo {
  width: 100%; max-width: 1180px;
  margin: 0 auto 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0A2540;
}
.ba-photo-img { width: 100%; height: auto; display: block; }
.ba-photo-cap {
  text-align: center;
  padding: 14px 22px;
  font-size: 0.92rem; color: var(--gray);
  background: white;
  border-top: 1px solid var(--line);
}
.results-collage {
  width: 100%; max-width: 1180px;
  margin: 0 auto 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.results-collage img { width: 100%; height: auto; display: block; }

.ba-slider {
  position: relative;
  width: 100%; max-width: 1180px;
  margin: 0 auto 60px;
  aspect-ratio: 16 / 7.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  cursor: ew-resize;
  background: #0A2540;
}
.ba-slider .ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(0 0 0 50%);
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.ba-handle-line {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 3px; transform: translateX(-50%);
  background: white;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
}
.ba-handle-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.ba-tag {
  position: absolute; top: 18px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
  color: white;
  border-radius: 6px;
  z-index: 3;
  pointer-events: none;
}
.ba-tag-before { left: 18px; background: #DC3545; }
.ba-tag-after { right: 18px; background: #2BAA5C; }

.result-card {
  background: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 1180px;
  margin: 0 auto;
  margin-bottom: -60px; /* overlap into next section */
  position: relative; z-index: 2;
}
.result-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.result-graph { position: relative; }
.rg-svg { width: 100%; height: auto; }
.rg-callout {
  position: absolute; top: 14px; right: 0;
  padding: 14px 22px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: white;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.32);
  text-align: center;
}
.rg-callout-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1;
}
.rg-callout-label {
  font-size: 0.72rem; font-weight: 500; opacity: 0.9;
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em;
}
.result-quote { padding-left: 24px; border-left: 3px solid var(--ocean); }
.result-quote svg { margin-bottom: 14px; }
.result-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 500; line-height: 1.5;
  color: var(--deep);
  margin-bottom: 20px;
  text-wrap: balance;
}
.result-quote cite { font-style: normal; display: block; font-size: 0.92rem; color: var(--gray); }
.result-quote cite strong { display: block; color: var(--deep); font-weight: 700; }

.wave-divider {
  position: absolute; bottom: 0; left: 0; right: 0;
  width: 100%; height: 80px; pointer-events: none;
  display: none; /* using card overlap instead */
}

/* =========================================================
   SERVICES (glass on photo)
   ========================================================= */
.services {
  position: relative;
  padding: 180px 0 130px;
  color: white;
  isolation: isolate;
  background: var(--deep);
}
.services-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: -2;
  filter: saturate(1.1) brightness(0.7);
}
.services-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.78) 0%, rgba(10, 37, 64, 0.55) 50%, rgba(10, 37, 64, 0.85) 100%);
  z-index: -1;
}
.services .sec-title { color: white; }
.glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.35s ease, background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.glass-card::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  pointer-events: none; opacity: 0.6;
  mix-blend-mode: overlay;
}
.glass-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 166, 35, 0.35);
}
.glass-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(245, 166, 35, 0.16);
  border: 1px solid rgba(245, 166, 35, 0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.glass-icon svg { width: 26px; height: 26px; }
.glass-stat {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.4rem;
  color: var(--gold); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.glass-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.glass-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { background: var(--white); }
.how-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.how-line {
  position: absolute;
  top: 36px; left: 5%; right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ocean) 0 6px, transparent 6px 12px);
  opacity: 0.35;
}
.how-step { position: relative; padding-top: 0; }
.how-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--ocean);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.6rem;
  color: var(--ocean);
  position: relative; z-index: 1;
  margin-bottom: 22px;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(26, 111, 212, 0.16);
}
.how-step:hover .how-num {
  background: var(--ocean); color: white;
  transform: translateY(-4px);
}
.how-content h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.18rem;
  color: var(--deep);
  margin-bottom: 8px;
}
.how-content p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--gray);
}

/* =========================================================
   CALCULATOR
   ========================================================= */
.calculator {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.calc {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.calc-form { padding: 40px; border-right: 1px solid var(--line); }
.calc-tabs {
  display: flex; gap: 4px;
  background: var(--light);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
}
.calc-tab {
  flex: 1; padding: 11px 14px;
  background: transparent; border: 0;
  border-radius: 8px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--gray);
  transition: all 0.2s;
}
.calc-tab.active {
  background: white;
  color: var(--ocean);
  box-shadow: 0 2px 6px rgba(10, 37, 64, 0.08);
}
.calc-input-row { margin-bottom: 28px; }
.calc-label {
  display: block;
  font-size: 0.88rem; font-weight: 600;
  color: var(--deep);
  margin-bottom: 10px;
}
.calc-input-row input[type="number"] {
  width: 100%;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 1.4rem; font-weight: 700;
  font-family: var(--font-display);
  color: var(--deep);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.calc-input-row input[type="number"]:focus {
  outline: 0;
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(26, 111, 212, 0.10);
}
.calc-helper { font-size: 0.82rem; color: var(--gray-2); margin-top: 8px; }

.calc-slider-block { margin-bottom: 28px; }
.calc-slider-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.calc-slider-head label { font-size: 0.88rem; font-weight: 600; color: var(--deep); }
.calc-slider-val {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  color: var(--ocean);
}
.calc-slider {
  width: 100%; height: 6px;
  appearance: none; -webkit-appearance: none;
  background: var(--line);
  border-radius: 999px;
  outline: 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: white;
  border: 3px solid var(--ocean);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(26, 111, 212, 0.25);
  transition: transform 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; background: white;
  border: 3px solid var(--ocean); border-radius: 50%; cursor: pointer;
}
.calc-slider-marks {
  display: flex; justify-content: space-between;
  font-size: 0.74rem; color: var(--gray-2);
  margin-top: 8px;
}

.calc-block-label { font-size: 0.88rem; font-weight: 600; color: var(--deep); display: block; margin-bottom: 10px; }
.calc-radios { display: flex; gap: 8px; flex-wrap: wrap; }
.calc-radio {
  flex: 1; min-width: max-content;
  padding: 11px 14px;
  background: white; border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--gray);
  transition: all 0.2s;
}
.calc-radio.active {
  background: var(--ocean); border-color: var(--ocean); color: white;
  box-shadow: 0 4px 10px rgba(26, 111, 212, 0.25);
}

.calc-result {
  padding: 40px;
  background: linear-gradient(165deg, #F4FBF6 0%, #E9F8EF 100%);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 70%);
}
.cr-head { margin-bottom: 24px; position: relative; }
.cr-eyebrow {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  color: #16A34A;
  margin-bottom: 8px;
}
.cr-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.01em;
}
.cr-bars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.cr-bar { position: relative; }
.cr-bar-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.85rem; color: var(--gray);
  margin-bottom: 8px;
}
.cr-bar-label strong {
  font-family: var(--font-display);
  font-weight: 700; color: var(--deep); font-size: 1.0rem;
}
.cr-bar-track {
  height: 12px;
  background: white;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(10, 37, 64, 0.08);
}
.cr-bar-fill {
  height: 100%; border-radius: 999px;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.cr-bar-fill-now { background: linear-gradient(90deg, #B5C2D4, #8C9AAE); }
.cr-bar-fill-after { background: linear-gradient(90deg, #22C55E, #16A34A); box-shadow: 0 0 14px rgba(34, 197, 94, 0.5); }

.cr-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.cr-stat {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
}
.cr-stat-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #22C55E, #15803D);
  border: 0;
  color: white;
  padding: 18px 22px;
}
.cr-stat-hero .cr-stat-label { color: rgba(255, 255, 255, 0.85); }
.cr-stat-label {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cr-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cr-stat-hero .cr-stat-num { font-size: 2.0rem; color: white; }
.cr-stat-num-sm { font-size: 1.1rem; }

.cr-cta { width: 100%; margin-top: auto; }
.calc-disclaimer {
  margin-top: 16px;
  font-size: 0.78rem; color: var(--gray-2);
  text-align: center;
  max-width: 720px; margin-inline: auto;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: var(--white); }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26, 111, 212, 0.25); }
.price-card-feature {
  background: linear-gradient(165deg, var(--deep) 0%, var(--deep-2) 100%);
  border: 1.5px solid rgba(245, 166, 35, 0.45);
  color: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}
.price-card-feature:hover { transform: translateY(-16px); border-color: rgba(245, 166, 35, 0.7); }
.pc-tag {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--ocean);
  background: rgba(26, 111, 212, 0.10);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  width: fit-content;
}
.price-card-feature .pc-tag {
  color: var(--gold);
  background: rgba(245, 166, 35, 0.16);
}
.pc-tag-featured {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--gold);
  color: #2A1A05;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
  box-shadow: 0 6px 14px rgba(245, 166, 35, 0.35);
}
.price-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--deep);
  margin-bottom: 18px;
}
.price-card-feature h3 { color: white; }
.pc-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 24px;
}
.pc-from { font-size: 0.95rem; color: var(--gray); font-weight: 500; }
.price-card-feature .pc-from { color: rgba(255, 255, 255, 0.7); }
.pc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ocean);
}
.price-card-feature .pc-num { color: var(--gold); }
.pc-unit { font-size: 1rem; color: var(--gray); font-weight: 600; }
.price-card-feature .pc-unit { color: rgba(255, 255, 255, 0.65); }

.pc-tiers { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.pc-tier {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
}
.pc-tier em { color: rgba(255, 255, 255, 0.55); font-style: normal; font-size: 0.78rem; }

.pc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.pc-list li {
  font-size: 0.92rem;
  color: var(--gray);
  display: flex; align-items: flex-start; gap: 10px;
}
.pc-list li::before {
  content: ''; flex-shrink: 0; margin-top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(26, 111, 212, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7l3 3 5-6' stroke='%231A6FD4' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}
.price-card-feature .pc-list li { color: rgba(255, 255, 255, 0.85); }
.price-card-feature .pc-list li::before {
  background: rgba(245, 166, 35, 0.20) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7l3 3 5-6' stroke='%23F5A623' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.price-card-info { background: var(--light); border-color: var(--line); }
.pc-info-body { font-size: 0.95rem; color: var(--gray); line-height: 1.6; margin-bottom: 24px; }
.pc-info-stats { display: flex; gap: 18px; margin-top: auto; }
.pc-info-stats div { flex: 1; }
.pc-info-stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem;
  color: var(--ocean);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pc-info-stats span {
  display: block; margin-top: 4px;
  font-size: 0.78rem; color: var(--gray); letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   BOOKING
   ========================================================= */
.booking {
  background:
    linear-gradient(165deg, var(--deep) 0%, var(--ocean-dark) 100%);
  color: white;
  position: relative; overflow: hidden;
}
.booking-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(26, 111, 212, 0.4), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(245, 166, 35, 0.18), transparent 60%);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
.booking-side .sec-title { color: white; }
.booking-side-text {
  font-size: 1.0rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  max-width: 460px;
}
.booking-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.booking-perks li { display: flex; gap: 10px; align-items: center; font-size: 0.95rem; color: rgba(255, 255, 255, 0.88); }
.booking-perks .check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.20);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
}

.booking-direct { display: flex; flex-direction: column; gap: 10px; }
.bd-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: white; transition: all 0.2s;
}
.bd-card:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(245, 166, 35, 0.4); }
.bd-card svg { color: var(--gold); flex-shrink: 0; }
.bd-card .bd-label { display: block; font-size: 0.74rem; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.bd-card strong { font-family: var(--font-display); font-weight: 600; font-size: 1.0rem; letter-spacing: 0.01em; }

.booking-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.bf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.bf-field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.bf-col-2 { grid-column: 1 / -1; }
.bf-field label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--deep);
  letter-spacing: 0.01em;
}
.bf-field input,
.bf-field select,
.bf-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--light-2);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s;
}
.bf-field textarea { resize: vertical; min-height: 100px; }
.bf-field input:focus,
.bf-field select:focus,
.bf-field textarea:focus {
  outline: 0;
  background: white;
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(26, 111, 212, 0.10);
}
.bf-segmented {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: var(--light-2);
  padding: 5px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
}
.bf-seg {
  padding: 11px 8px;
  background: transparent; border: 0;
  border-radius: 8px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--gray);
  transition: all 0.2s;
}
.bf-seg.active {
  background: var(--ocean);
  color: white;
  box-shadow: 0 4px 10px rgba(26, 111, 212, 0.25);
}
.bf-or-label { font-size: 0.82rem; font-weight: 600; color: var(--deep); margin-bottom: 4px; display: block; }
.bf-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 6px; }
.bf-mini {
  display: flex; flex-direction: column; gap: 4px;
}
.bf-mini-label {
  font-size: 0.74rem; color: var(--gray);
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bf-mini input { padding: 12px 14px; }
.bf-helper { font-size: 0.82rem; color: var(--gray-2); font-style: italic; }
.bf-counter {
  position: absolute; bottom: 10px; right: 14px;
  font-size: 0.74rem; color: var(--gray-2); pointer-events: none;
}
.bf-submit-row {
  display: flex; align-items: center; gap: 18px;
  margin-top: 8px; flex-wrap: wrap;
}
.bf-submit-row small { font-size: 0.78rem; color: var(--gray); flex: 1; min-width: 200px; }
.bf-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem; font-weight: 600;
  display: none;
}
.bf-status.success {
  display: block;
  background: #DCFCE7; color: #166534; border: 1px solid #86EFAC;
}
.bf-status.error {
  display: block;
  background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5;
}
.bf-refchip {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(245, 166, 35, 0.18);
  color: #8a4a00;
  border: 1px solid rgba(245, 166, 35, 0.5);
  border-radius: 8px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.bf-status.success .bf-refchip {
  background: rgba(245, 166, 35, 0.18);
  color: #8a4a00;
}

/* ----- Loading spinner ----- */
.bf-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: bfSpin 0.7s linear infinite;
  vertical-align: -3px;
  margin-right: 8px;
}
.bf-spinner--btn {
  width: 18px; height: 18px;
  border-width: 2.5px;
  margin-right: 10px;
}
@keyframes bfSpin {
  to { transform: rotate(360deg); }
}

.bf-submit.is-loading,
.booking-form button[type="submit"].is-loading {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Sending status row layout */
.bf-status {
  display: none;
  align-items: center;
}
.bf-status.success,
.bf-status.error {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bf-status.error { display: block; } /* error is plain text */

/* ----- Animated checkmark on success ----- */
.bf-checkmark {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bf-checkmark svg { overflow: visible; }
.bf-check-circle {
  fill: none;
  stroke: #16A34A;
  stroke-width: 2.5;
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  animation: bfDrawCircle 0.5s ease-out 0.05s forwards;
}
.bf-check-path {
  fill: none;
  stroke: #16A34A;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: bfDrawCheck 0.35s ease-out 0.45s forwards;
}
@keyframes bfDrawCircle { to { stroke-dashoffset: 0; } }
@keyframes bfDrawCheck  { to { stroke-dashoffset: 0; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--white); padding-bottom: 120px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 28px 0 36px;
}
.contact-team {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.06), rgba(74, 159, 232, 0.04));
  border: 1px solid rgba(26, 111, 212, 0.18);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.contact-team::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--ocean));
}
.ct-avatar {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(26, 111, 212, 0.32);
}
.ct-info { flex: 1; min-width: 0; }
.ct-role {
  font-size: 0.72rem; font-weight: 700;
  color: var(--ocean);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2px;
}
.ct-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}
.ct-links {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
}
.ct-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--deep);
  padding: 4px 0;
  transition: color 0.2s;
}
.ct-link svg { flex-shrink: 0; }
.ct-call { color: var(--ocean); }
.ct-call:hover { color: var(--ocean-dark); }
.ct-wa { color: #25D366; }
.ct-wa:hover { color: #128C7E; }
.ct-mail { color: var(--gray); }
.ct-mail:hover { color: var(--ocean); }

@media (max-width: 520px) {
  .contact-team { flex-direction: column; align-items: flex-start; }
  .ct-links { gap: 6px 12px; }
}

.contact-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-meta div { display: flex; flex-direction: column; gap: 4px; }
.cm-label { font-size: 0.74rem; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.contact-meta strong { font-family: var(--font-display); font-weight: 600; color: var(--deep); font-size: 0.98rem; }

.contact-map {
  background: linear-gradient(165deg, var(--light) 0%, white 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  position: relative;
}
.cmap-svg { width: 100%; height: auto; max-height: 460px; }
.cmap-legend {
  display: flex; gap: 22px; flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem; color: var(--gray);
}
.cmap-legend > div { display: flex; align-items: center; gap: 8px; }
.lg-dot { width: 10px; height: 10px; border-radius: 50%; }
.lg-dot.lg-hq { background: var(--gold); box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.25); }
.lg-dot.lg-route { background: var(--sky); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-brand p {
  font-size: 0.92rem; line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 18px; max-width: 360px;
}
.footer-logo {
  height: 84px; width: auto;
  background: transparent;
  padding: 0;
  /* Logo is dark blue on transparent — invert to white-ish for the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-col a, .footer-col span { font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 0.84rem; color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap; gap: 12px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card-info { grid-column: 1 / -1; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .glass-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn-nav { display: none; }
  nav#nav.menu-open + section .hero-h1, body.menu-open .nav-links {
    display: flex;
  }
  body.menu-open .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: white;
    padding: 16px 32px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(10, 37, 64, 0.10);
  }
  body.menu-open .nav-links li {
    border-bottom: 1px solid var(--line);
    list-style: none;
  }
  body.menu-open .nav-links li:last-child { border: 0; }
  body.menu-open .nav-links a { display: block; padding: 14px 0; }
  .hero { padding-top: 110px; min-height: 90vh; }
  .hero-stats { flex-wrap: wrap; gap: 18px 24px; }
  .hstat-divider { display: none; }
  .result-card { padding: 28px; }
  .result-grid { grid-template-columns: 1fr; gap: 32px; }
  .calc { grid-template-columns: 1fr; }
  .calc-form { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px; }
  .calc-result { padding: 28px; }
  .how-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-line { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card-feature { transform: none; }
  .price-card-feature:hover { transform: translateY(-4px); }
  .booking-form { padding: 24px; }
  .bf-grid { grid-template-columns: 1fr; }
  .bf-segmented { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 0; }
  .services { padding: 130px 0 100px; }
}
@media (max-width: 520px) {
  nav#nav { padding: 10px 18px; }
  .nav-logo img { height: 38px; }
  .glass-grid { grid-template-columns: 1fr; }
  .how-timeline { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .pc-info-stats { flex-wrap: wrap; }
  .cr-stats { grid-template-columns: 1fr 1fr; }
  .cr-stat-hero { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about-photos { aspect-ratio: 1 / 0.95 !important; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--white);
  padding: 110px 0 100px;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photos {
  position: relative;
  aspect-ratio: 1 / 0.92;
}
.about-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-main {
  top: 0; left: 0;
  width: 80%;
  aspect-ratio: 4 / 3;
  z-index: 2;
  border: 6px solid white;
}
.about-photo-sub {
  bottom: 0; right: 0;
  width: 62%;
  aspect-ratio: 4 / 2.4;
  z-index: 3;
  border: 6px solid white;
}
.about-badge {
  position: absolute;
  top: 8%; right: 4%;
  z-index: 4;
  background: var(--gold);
  color: var(--deep);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 14px 32px rgba(245, 166, 35, 0.4);
  transform: rotate(-3deg);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; line-height: 1;
}
.about-badge-label {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  max-width: 100px; line-height: 1.2;
}
.about-text .sec-eyebrow { color: var(--ocean); }
.about-text .sec-title { margin-top: 8px; }
.about-lede {
  font-size: 1.1rem; line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
  margin-top: 24px;
}
.about-body {
  font-size: 1rem; line-height: 1.75;
  color: var(--gray);
  margin-top: 16px;
}
.about-points {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
.about-points li {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.ap-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(26, 111, 212, 0.28);
}
.about-points h5 {
  font-family: var(--font-display);
  font-size: 0.98rem; font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}
.about-points p {
  font-size: 0.85rem; line-height: 1.5;
  color: var(--gray);
}
.about-cta {
  margin-top: 36px;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.about-call {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ocean);
  font-weight: 700;
  font-size: 0.95rem;
}
.about-call:hover { color: var(--ocean-dark); }

@media (max-width: 880px) {
  .about-points { grid-template-columns: 1fr; }
}
