
:root {
  --teal:       #199C8A;
  --teal-dark:  #127A6B;
  --teal-mid:   #22B5A0;
  --teal-light: #E6F7F5;
  --teal-pale:  #F0FAF9;
  --green:      #4ADE80;
  --green-dark: #22C55E;
  --green-pale: #EDFFF5;
  --navy:       #0D2B27;
  --navy-mid:   #1A3D38;
  --ink:        #1C3532;
  --gray:       #5A7672;
  --gray-light: #8AADA9;
  --border:     rgba(25,156,138,0.15);
  --border-light: rgba(25,156,138,0.08);
  --cream:      #F4FBF9;
  --white:      #FFFFFF;
  --shadow:     0 4px 20px rgba(25,156,138,0.12);
  --shadow-lg:  0 16px 48px rgba(25,156,138,0.18);
  --shadow-dark: 0 20px 50px rgba(0,0,0,0.35);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-weight: 300; background: var(--cream); color: var(--ink); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.15; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3.5rem;
  background: rgba(244,251,249,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }

.logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.logo-img { height: 36px; width: 36px; object-fit: contain; }
.logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--teal); letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 400; color: var(--ink); text-decoration: none; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.btn-ghost-sm { font-size: 0.85rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.btn-ghost-sm:hover { color: var(--teal); }
.btn-nav {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  color: white; padding: 0.6rem 1.4rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; font-family: 'Sora', sans-serif;
  text-decoration: none; transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(25,156,138,0.3);
}
.btn-nav:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 110px 2rem 60px;
  background:
    radial-gradient(ellipse 90% 60% at 50% -5%, rgba(25,156,138,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(74,222,128,0.06) 0%, transparent 60%),
    var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(25,156,138,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,156,138,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 50%, black 30%, transparent 80%);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3);
  color: var(--green-dark); font-size: 0.78rem; font-weight: 600;
  font-family: 'Sora', sans-serif; letter-spacing: 0.03em;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease both;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: blink 1.8s ease infinite; box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
}
@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(0.8); } }

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.07;
  max-width: 880px; margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
  color: var(--ink);
}
.hero h1 .accent { color: var(--teal); }
.hero h1 em { font-style: normal; color: var(--green-dark); }

.hero-sub {
  font-size: 1.1rem; line-height: 1.78; color: var(--gray);
  max-width: 560px; margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-cta-group {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 1.25rem;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  color: white; padding: 0.95rem 2.2rem; border-radius: 10px;
  font-size: 1rem; font-weight: 700; font-family: 'Sora', sans-serif;
  text-decoration: none; box-shadow: 0 4px 20px rgba(25,156,138,0.4);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { opacity:0.92; transform:translateY(-2px); box-shadow:0 8px 30px rgba(25,156,138,0.45); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--teal);
  padding: 0.95rem 2rem; border-radius: 10px;
  font-size: 1rem; font-weight: 600; font-family: 'Sora', sans-serif;
  text-decoration: none; border: 1.5px solid var(--border);
  box-shadow: var(--shadow); transition: border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--teal); transform: translateY(-2px); }

.hero-note { font-size: 0.8rem; color: var(--gray-light); animation: fadeUp 0.7s 0.4s ease both; }

/* SAVINGS STRIP */
.savings-strip {
  display: inline-flex; align-items: center; gap: 2rem;
  background: white; border: 1px solid var(--border);
  border-radius: 100px; padding: 0.8rem 2rem;
  margin-top: 3rem; box-shadow: var(--shadow);
  animation: fadeUp 0.7s 0.5s ease both;
}
.savings-strip .amt { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--teal); display: block; line-height: 1.1; }
.savings-strip p { font-size: 0.75rem; color: var(--gray-light); }
.sdiv { width: 1px; height: 26px; background: var(--border); }

/* MOCKUPS */
.mockup-wrap {
  display: flex; justify-content: center; gap: 1.25rem;
  align-items: flex-end; margin-top: 4rem;
  animation: fadeUp 0.8s 0.5s ease both;
}
.mockup-phone { width: 185px; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-dark); flex-shrink: 0; }
.mockup-phone.center { width: 220px; transform: translateY(-22px); box-shadow: 0 28px 70px rgba(0,0,0,0.4); }
.mockup-phone img { width: 100%; display: block; border-radius: 26px; }

/* ── PAIN ── */
.pain-section {
  padding: 6rem 4rem; text-align: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white; position: relative; overflow: hidden;
}
.pain-section::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25,156,138,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.pain-section::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; font-family:'Sora',sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.9rem; }
.section-label.green { color: var(--green); }
.section-label.light { color: var(--teal-mid); }

.pain-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 680px; margin: 0 auto 1.25rem; letter-spacing: -0.03em; font-weight: 800; }
.pain-section h2 em { font-style: normal; color: var(--green); }
.pain-section > p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 3rem; }

.cost-cards { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; max-width: 880px; margin: 0 auto; }
.cost-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 1.75rem; flex: 1; min-width: 200px; max-width: 250px; text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.cost-card:hover { border-color: rgba(25,156,138,0.4); background: rgba(25,156,138,0.08); }
.cost-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(239,68,68,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.cost-icon svg { width: 20px; height: 20px; }
.cost-val { font-family: 'Sora', sans-serif; font-size: 1.75rem; font-weight: 800; color: #F87171; display: block; margin-bottom: 0.3rem; letter-spacing: -0.03em; }
.cost-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

.solution-arrow { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin: 3rem auto; }
.solution-arrow svg { color: var(--teal-mid); }
.solution-arrow p { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.07em; text-transform: uppercase; font-weight: 600; font-family:'Sora',sans-serif; }
.savings-highlight { background: rgba(25,156,138,0.15); border: 1px solid rgba(25,156,138,0.3); border-radius: 16px; padding: 2.25rem; max-width: 380px; margin: 0 auto; }
.savings-big { font-family: 'Sora', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--green); display: block; line-height: 1; letter-spacing: -0.04em; }
.savings-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

/* ── FEATURES ── */
.features-section { padding: 7rem 4rem; max-width: 1200px; margin: 0 auto; }
.features-header { max-width: 580px; margin-bottom: 4rem; }
.features-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); letter-spacing: -0.03em; font-weight: 800; margin-bottom: 1rem; }
.features-header p { font-size: 0.95rem; line-height: 1.78; color: var(--gray); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.feature-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: 16px; padding: 1.75rem; position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.feature-icon svg { width: 21px; height: 21px; color: var(--teal); }
.feature-icon.green-bg { background: var(--green-pale); }
.feature-icon.green-bg svg { color: var(--green-dark); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.55rem; letter-spacing: -0.02em; }
.feature-card p { font-size: 0.85rem; line-height: 1.72; color: var(--gray); }
.feature-tag { display: inline-block; margin-top: 0.9rem; font-size: 0.7rem; font-weight: 700; color: var(--teal); letter-spacing: 0.05em; text-transform: uppercase; font-family:'Sora',sans-serif; }
.feature-tag.green { color: var(--green-dark); }

.feature-card.wide { grid-column: span 2; display: flex; gap: 2rem; }
.feature-card.wide .feature-content { flex: 1; }
.feature-card.wide .feature-visual {
  width: 210px; flex-shrink: 0; border-radius: 12px; overflow: hidden;
  background: var(--teal-light);
}
.feature-card.wide .feature-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── SCREENSHOT GALLERY ── */
.gallery-section {
  padding: 6rem 0 5rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #0F3830 100%);
  overflow: hidden; text-align: center;
}
.gallery-section .section-label { color: var(--green); }
.gallery-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: white; letter-spacing: -0.03em; font-weight: 800; margin-top: 0.5rem; margin-bottom: 3rem; padding: 0 2rem; }
.gallery-scroll {
  display: flex; gap: 1.5rem; justify-content: center;
  align-items: flex-end; padding: 1rem 3rem 1.5rem;
  overflow-x: auto; scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item { flex-shrink: 0; text-align: center; }
.gallery-item p {
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem;
  font-family: 'Sora', sans-serif;
}
.gallery-item img {
  width: 175px; border-radius: 20px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.07);
  display: block;
}
.gallery-item.elevated img { box-shadow: 0 28px 70px rgba(0,0,0,0.5); }

/* ── TRANSFER ── */
.transfer-section {
  padding: 6rem 4rem;
  background: var(--teal-pale);
  position: relative; overflow: hidden;
}
.transfer-section::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25,156,138,0.1) 0%, transparent 70%);
}
.transfer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.transfer-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.03em; font-weight: 800; margin-bottom: 1.2rem; color: var(--ink); }
.transfer-content h2 em { font-style: normal; color: var(--teal); }
.transfer-content p { font-size: 0.95rem; line-height: 1.8; color: var(--gray); margin-bottom: 2rem; }
.transfer-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.transfer-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: white; font-family: 'Sora', sans-serif;
  box-shadow: 0 3px 10px rgba(25,156,138,0.3);
}
.step-text h4 { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--ink); }
.step-text p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }

.transfer-visual {
  background: white; border: 1px solid var(--border); border-radius: 20px; padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.transfer-doc-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-light); }
.doc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-icon svg { width: 18px; height: 18px; color: white; }
.doc-title { font-family:'Sora',sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.doc-sub { font-size: 0.73rem; color: var(--gray-light); }
.doc-badge { margin-left: auto; background: rgba(74,222,128,0.15); color: var(--green-dark); font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; font-family:'Sora',sans-serif; white-space: nowrap; }
.doc-items { display: flex; flex-direction: column; gap: 0.75rem; }
.doc-item { background: var(--teal-pale); border-radius: 10px; padding: 0.85rem 1rem; display: flex; align-items: center; gap: 0.75rem; }
.doc-item-icon { width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--teal-light); }
.doc-item-icon svg { width: 14px; height: 14px; color: var(--teal); }
.doc-item-text { flex: 1; }
.doc-item-title { font-size: 0.8rem; font-weight: 600; color: var(--ink); font-family:'Sora',sans-serif; }
.doc-item-sub { font-size: 0.7rem; color: var(--gray-light); margin-top: 1px; }
.doc-item-val { font-family:'Sora',sans-serif; font-weight: 800; font-size: 0.88rem; color: var(--teal); white-space: nowrap; }

/* ── PRICING ── */
.pricing-section { padding: 7rem 4rem; text-align: center; background: white; }
.pricing-section > h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.03em; font-weight: 800; margin-bottom: 1rem; margin-top: 0.5rem; }
.pricing-section > p { font-size: 0.95rem; color: var(--gray); max-width: 500px; margin: 0 auto 4rem; line-height: 1.78; }

.pricing-grid { display: flex; gap: 2rem; justify-content: center; max-width: 980px; margin: 0 auto; flex-wrap: wrap; align-items: stretch; }
.pricing-card {
  flex: 1; min-width: 240px; max-width: 295px;
  border-radius: 20px; padding: 2.25rem; text-align: left; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--teal-pale); border: 1px solid var(--border-light);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-color: transparent; color: white;
  box-shadow: 0 12px 40px rgba(25,156,138,0.35);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: 1.25rem; right: -0.5rem;
  background: var(--green); color: var(--navy); font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.08em; padding: 0.25rem 0.9rem; border-radius: 4px 0 0 4px;
  font-family: 'Sora', sans-serif;
}
.plan-name { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; font-family:'Sora',sans-serif; }
.plan-name.light { color: rgba(255,255,255,0.7); }
.plan-name.gold { color: var(--green-dark); }
.plan-price { font-family:'Sora',sans-serif; font-weight: 800; font-size: 2.6rem; letter-spacing: -0.04em; margin-bottom: 0.25rem; display: flex; align-items: baseline; gap: 0.3rem; color: var(--ink); }
.plan-price .period { font-size: 0.85rem; font-weight: 300; color: var(--gray-light); font-family:'Open Sans',sans-serif; }
.plan-price.light { color: white; }
.plan-price.light .period { color: rgba(255,255,255,0.5); }
.plan-tagline { font-size: 0.84rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.55; }
.plan-tagline.light { color: rgba(255,255,255,0.65); }
.plan-divider { height: 1px; background: var(--border-light); margin-bottom: 1.4rem; }
.plan-divider.light { background: rgba(255,255,255,0.15); }
.plan-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.plan-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.84rem; color: var(--ink); }
.plan-feature.light { color: rgba(255,255,255,0.9); }
.plan-feature svg { flex-shrink: 0; margin-top: 1px; }

.btn-plan {
  display: block; text-align: center; padding: 0.85rem; border-radius: 10px;
  font-size: 0.88rem; font-weight: 700; font-family:'Sora',sans-serif;
  text-decoration: none; transition: all 0.2s;
}
.btn-teal { background: linear-gradient(135deg, var(--teal), var(--teal-mid)); color: white; box-shadow: 0 3px 14px rgba(25,156,138,0.3); }
.btn-teal:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-white-teal { background: white; color: var(--teal); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-white-teal:hover { background: rgba(255,255,255,0.93); }
.btn-green { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; box-shadow: 0 3px 14px rgba(74,222,128,0.3); }
.btn-green:hover { opacity: 0.9; }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 0 4rem 6rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 50%, #0F5C52 100%);
  border-radius: 24px; padding: 4.5rem 4rem;
  text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(74,222,128,0.08);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.75rem; letter-spacing: -0.03em; font-weight: 800; position: relative; z-index: 1; }
.cta-banner > p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 2.25rem; position: relative; z-index: 1; }
.cta-banner .hero-cta-group { position: relative; z-index: 1; }
.btn-white { background: white; color: var(--teal); padding: 0.95rem 2.2rem; border-radius: 10px; font-size: 1rem; font-weight: 700; font-family:'Sora',sans-serif; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.12); transition: transform 0.2s, box-shadow 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }
.btn-ghost-white { color: rgba(255,255,255,0.8); padding: 0.95rem 1.5rem; font-size: 0.9rem; text-decoration: none; font-family:'Sora',sans-serif; transition: color 0.2s; }
.btn-ghost-white:hover { color: white; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 4rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand p { font-size: 0.84rem; line-height: 1.72; max-width: 250px; margin-top: 0.75rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo-wrap img { height: 32px; width: 32px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.9); }
.footer-logo-text { font-family:'Sora',sans-serif; font-weight: 700; font-size: 1.1rem; color: white; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1rem; font-family:'Sora',sans-serif; }
.footer-col a { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.77rem; color: rgba(255,255,255,0.28); grid-column: 1 / -1; margin-top: 1rem; }
.footer-bottom a { color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* ── CTA SECTION (alternate to cta-banner) ── */
.cta-section {
  padding: 4rem 3.5rem 5rem; text-align: center;
}
.cta-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.cta-section h2 {
  font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 0.75rem;
}
.cta-section p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; flex-direction: column; gap: 5px; z-index: 300;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity:0; transform:translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  /* Mobile nav handled by inline <style> in baseof.html */
  .hero { padding: 100px 1.5rem 60px; }
  .savings-strip { flex-direction: column; gap: 0.6rem; border-radius: 16px; padding: 1.25rem; }
  .sdiv { width: 40px; height: 1px; }
  .mockup-wrap { gap: 0.75rem; }
  .mockup-phone { width: 125px; }
  .mockup-phone.center { width: 152px; }
  .pain-section { padding: 4rem 1.5rem; }
  .cost-cards { flex-direction: column; align-items: center; }
  .cost-card { max-width: 100%; }
  .features-section { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: span 1; flex-direction: column; }
  .feature-card.wide .feature-visual { width: 100%; height: 220px; }
  .gallery-scroll { justify-content: flex-start; }
  .transfer-section { padding: 4rem 1.5rem; }
  .transfer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-section { padding: 4rem 1.5rem; }
  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { min-width: 280px; max-width: 100%; }
  .cta-banner { margin: 0 1.5rem 4rem; padding: 2.5rem 1.5rem; }
  .cta-section { padding: 3rem 1.5rem; }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; overflow: hidden; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; padding: 1.5rem; text-align: center; }
  .footer-newsletter input[type="email"] { width: 100%; box-sizing: border-box; }
}
