:root {
  --teal: #0E5F70;
  --teal-mid: #167a8e;
  --cyan: #20ADC8;
  --cyan-lt: #5DD0E8;
  --cyan-xlt: #A8E8F4;
  --dark: #050D16;
  --dark2: #081828;
  --dark3: #0B2030;
  --white: #FFFFFF;
  --gray: #64788A;
  --gray-lt: #B8CAD4;
  --gold: #C8A84B;
  --gold-lt: #E8D090;
  --rad: linear-gradient(135deg, #0E5F70 0%, #20ADC8 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  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 type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
}

/* ── NAV ── */
.pnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 3rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 13, 22, .88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(32, 173, 200, .12);
}

.pnav-logo { display: flex; align-items: center; gap: 10px; }
.pnav-logo img { height: 44px; width: auto; }

.pnav-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(32, 173, 200, .1);
  border: 1px solid rgba(32, 173, 200, .25);
  padding: 4px 12px;
  border-radius: 20px;
}

.pnav-links { display: flex; align-items: center; gap: 2rem; }
.pnav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
}
.pnav-links a:hover { color: var(--white); }

.pnav-cta {
  background: var(--rad);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.pnav-cta:hover { opacity: .85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 130px 3rem 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 60% 40%, rgba(32, 173, 200, .08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(14, 95, 112, .14) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 173, 200, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 173, 200, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.orb1 { width: 500px; height: 500px; top: -100px; right: -100px; background: rgba(32, 173, 200, .07); }
.orb2 { width: 350px; height: 350px; bottom: 0; left: -80px; background: rgba(14, 95, 112, .1); }
.orb3 { width: 200px; height: 200px; top: 40%; left: 35%; background: rgba(32, 173, 200, .04); animation: pulse 6s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32, 173, 200, .08);
  border: 1px solid rgba(32, 173, 200, .2);
  color: var(--cyan-lt);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--rad);
  color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(32, 173, 200, .25);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(32, 173, 200, .35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.stat-l {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── DASHBOARD MOCK ── */
.hero-visual { position: relative; }

.dashboard-mock {
  background: rgba(8, 24, 40, .8);
  border: 1px solid rgba(32, 173, 200, .2);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
  animation: floatUp .9s ease .2s both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.mock-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 1.25rem; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-title { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gray); margin-left: auto; }

.mock-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 1.25rem; }

.metric-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 12px;
}

.metric-card.hl {
  border-color: rgba(32, 173, 200, .3);
  background: rgba(32, 173, 200, .06);
}

.metric-n { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.metric-n.c { color: var(--cyan); }
.metric-l { font-size: 10px; color: var(--gray); margin-top: 2px; }

.mock-chart {
  background: rgba(255, 255, 255, .03);
  border-radius: 12px;
  padding: 14px;
  height: 100px;
  position: relative;
  overflow: hidden;
}

.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 100%; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(32, 173, 200, .22); }
.bar.active { background: linear-gradient(180deg, var(--cyan), var(--teal)); }
.chart-lbl { position: absolute; bottom: 8px; left: 14px; font-size: 9px; color: var(--gray); font-family: 'DM Mono', monospace; }

.event-list { margin-top: 1rem; }
.event-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.event-row:last-child { border-bottom: none; }

.ev-emoji { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.ev-name { font-size: 12px; font-weight: 500; color: var(--white); flex: 1; }
.ev-views { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--cyan); }
.ev-badge { font-size: 9px; font-weight: 600; padding: 2px 8px; border-radius: 10px; background: rgba(74, 222, 128, .12); color: #4ade80; }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(5, 13, 22, .92);
  border: 1px solid rgba(32, 173, 200, .2);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  z-index: 5;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.float-notif { top: -20px; right: -30px; animation: fa 4s ease-in-out infinite; }
.float-stat  { bottom: -20px; left: -30px; animation: fb 5s ease-in-out infinite; }

@keyframes fa { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fb { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.float-title { font-size: 10px; font-weight: 600; color: var(--cyan-lt); margin-bottom: 4px; letter-spacing: .04em; }
.float-val { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.float-sub { font-size: 10px; color: var(--gray); margin-top: 1px; }

.notif-row { display: flex; align-items: center; gap: 8px; }
.notif-icon { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, #0e5f70, #20adc8); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.notif-txt { font-size: 11px; color: var(--white); }
.notif-sub { font-size: 10px; color: var(--gray); }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--cyan); }
.section-sub { font-size: 1rem; color: rgba(255, 255, 255, .5); line-height: 1.75; max-width: 560px; }

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 173, 200, .3), transparent);
}

.step-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all .3s;
  animation: fadeInUp .6s ease both;
}
.step-card:nth-child(1) { animation-delay: .1s; }
.step-card:nth-child(2) { animation-delay: .25s; }
.step-card:nth-child(3) { animation-delay: .4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-card:hover { border-color: rgba(32, 173, 200, .25); background: rgba(32, 173, 200, .04); transform: translateY(-4px); }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--rad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(32, 173, 200, .3);
}

.step-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.step-desc { font-size: .9rem; color: rgba(255, 255, 255, .5); line-height: 1.7; }

/* ── GALLERY ── */
.gallery { padding: 70px 0; overflow: hidden; }
.gallery-label { text-align: center; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); margin-bottom: 2rem; }

.gallery-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollX 26s linear infinite;
  width: max-content;
}
.gallery-track:hover { animation-play-state: paused; }

@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-img {
  width: 240px;
  height: 160px;
  border-radius: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(32, 173, 200, .12);
  overflow: hidden;
  position: relative;
}

.gi-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.gi-emoji { font-size: 2.8rem; }
.gi-label { font-size: 11px; font-weight: 500; color: rgba(255, 255, 255, .45); letter-spacing: .04em; }
.gi-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(5, 13, 22, .85);
  border: 1px solid rgba(32, 173, 200, .2);
  color: var(--cyan-lt);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 10px;
  letter-spacing: .04em;
}

/* ── BENEFITS ── */
.benefits { padding: 100px 0; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; }

.benefit-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover { border-color: rgba(32, 173, 200, .2); transform: translateY(-3px); }
.benefit-card.wide { grid-column: span 2; }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background: rgba(32, 173, 200, .1);
  border: 1px solid rgba(32, 173, 200, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.benefit-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.benefit-desc { font-size: .9rem; color: rgba(255, 255, 255, .5); line-height: 1.7; }

.cities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.city-pill {
  background: rgba(32, 173, 200, .07);
  border: 1px solid rgba(32, 173, 200, .14);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}
.city-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.city-region { font-size: 10px; color: var(--gray); margin-top: 3px; }

/* ── PLANS ── */
.plans {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; align-items: start; }

.plan-card { border-radius: 24px; overflow: hidden; transition: transform .3s, box-shadow .3s; position: relative; }
.plan-card:hover { transform: translateY(-6px); }

.plan-starter { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); }
.plan-starter:hover { box-shadow: 0 20px 60px rgba(0, 0, 0, .3); }

.plan-pro {
  background: linear-gradient(160deg, #0B2030 0%, #0e5f70 100%);
  border: 1px solid rgba(32, 173, 200, .35);
  box-shadow: 0 0 0 1px rgba(32, 173, 200, .1), 0 24px 60px rgba(14, 95, 112, .35);
}
.plan-pro:hover { box-shadow: 0 0 0 1px rgba(32, 173, 200, .2), 0 32px 80px rgba(14, 95, 112, .5); }

.plan-popular {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--cyan);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.plan-business {
  background: linear-gradient(160deg, #0B1820 0%, #141000 100%);
  border: 1px solid rgba(200, 168, 75, .3);
}
.plan-business:hover { box-shadow: 0 0 0 1px rgba(200, 168, 75, .2), 0 32px 80px rgba(200, 168, 75, .15); }

.plan-head { padding: 2rem 2rem 1.5rem; }
.plan-name { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-lt); margin-bottom: 1rem; }
.plan-name.gold { color: var(--gold-lt); }

.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: .25rem; }
.plan-price-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.plan-price-num.gold { color: var(--gold); }
.plan-price-period { font-size: 12px; color: rgba(255, 255, 255, .4); }
.plan-billing { font-size: 11px; color: rgba(255, 255, 255, .35); margin-bottom: 1.25rem; }
.plan-divider { height: 1px; background: rgba(255, 255, 255, .08); margin: 0 0 1.5rem; }

.plan-features { padding: 0 2rem 2rem; display: flex; flex-direction: column; gap: 11px; }
.feat-item { display: flex; align-items: flex-start; gap: 10px; }
.check-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.feat-txt { font-size: 13px; color: rgba(255, 255, 255, .75); line-height: 1.4; }
.feat-txt.dim { color: rgba(255, 255, 255, .28); text-decoration: line-through; }
.feat-txt strong { color: var(--white); font-weight: 600; }

.plan-cta-wrap { padding: 0 2rem 2rem; }
.plan-cta {
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.cta-starter { background: rgba(255, 255, 255, .08); color: var(--white); }
.cta-starter:hover { background: rgba(255, 255, 255, .14); }

.cta-pro { background: var(--white); color: var(--teal); }
.cta-pro:hover { background: var(--cyan-xlt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(32, 173, 200, .3); }

.cta-business { background: linear-gradient(135deg, #6b5000, var(--gold)); color: var(--dark); }
.cta-business:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200, 168, 75, .35); }

/* ── COMPARE ── */
.compare { padding: 80px 0 100px; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  background: rgba(255, 255, 255, .02);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
}

.compare-table th {
  padding: 1.1rem 1.25rem;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .5);
  letter-spacing: .04em;
}
.compare-table th.pcol { text-align: center; }
.compare-table th.procol { background: rgba(14, 95, 112, .2); color: var(--cyan-lt); }
.compare-table th.bizcol { background: rgba(200, 168, 75, .08); color: var(--gold-lt); }

.compare-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.pcol { text-align: center; }
.compare-table td.procol { background: rgba(14, 95, 112, .07); }
.compare-table td.bizcol { background: rgba(200, 168, 75, .04); }
.compare-table tr:hover td { background: rgba(255, 255, 255, .02); }
.compare-table tr:hover td.procol { background: rgba(14, 95, 112, .1); }
.compare-table tr:hover td.bizcol { background: rgba(200, 168, 75, .06); }

/* ── CTA FINAL ── */
.cta-final {
  padding: 120px 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(14, 95, 112, .18) 0%, transparent 70%);
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 173, 200, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 173, 200, .03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-final-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-final h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-final p { font-size: 1rem; color: rgba(255, 255, 255, .5); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-final-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.pfooter {
  padding: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pfooter-logo { display: flex; align-items: center; gap: 10px; }
.pfooter-logo img { height: 36px; }
.pfooter-copy { font-size: 12px; color: rgba(255, 255, 255, .3); }

.pfooter-links { display: flex; gap: 1.5rem; }
.pfooter-links a { font-size: 12px; color: rgba(255, 255, 255, .3); text-decoration: none; transition: color .2s; }
.pfooter-links a:hover { color: var(--cyan); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner,
  .plans-grid,
  .benefits-grid,
  .steps-grid { grid-template-columns: 1fr; }

  .hero-visual { display: none; }
  .benefit-card.wide { grid-column: span 1; }
  .benefit-card.wide .cities-grid { display: none; }
  .steps-grid::before { display: none; }
  .pnav-links { display: none; }

  .pfooter { flex-direction: column; gap: 1.5rem; text-align: center; }

  .hero { padding: 100px 1.5rem 60px; }
  .container { padding: 0 1.5rem; }
  .cta-final { padding: 80px 1.5rem; }
  .pfooter { padding: 2rem 1.5rem; }
  .pnav { padding: 0 1.5rem; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: rgba(32, 173, 200, .3); border-radius: 3px; }
