/* ═══════════════════════════════════════════════
   Guest2Go — Website Stylesheet (Dark Theme)
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark-bg:    #060F1A;
  --dark-card:  #0D2035;
  --dark-card2: #091625;
  --dark-border:#1A3350;
  --accent:     #1B6EF3;
  --accent-hv:  #1458C8;
  --accent-glow:rgba(27,110,243,.25);
  --section-alt:#0A1A2C;
  --card-border:rgba(255,255,255,.07);
  --text-primary:#E2EDF8;
  --text-dark:  #E2EDF8;
  --text-mid:   #7A9BBF;
  --text-muted: #3D5A7A;
  --light-bg:   #0D2035;
  --light-border:rgba(255,255,255,.08);
  --white:      #FFFFFF;
  --green:      #22C55E;
  --red:        #EF4444;
  --yellow:     #F59E0B;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,0,0,.35);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px; color: var(--text-primary);
  background: var(--dark-bg); line-height: 1.6;
}
h1,h2,h3,h4 { line-height: 1.2; color: var(--text-primary); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ══ NAV ══ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #060F1A;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px; height: 64px;
  max-width: 1100px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; display: block; }
.nav-logo .logo-icon { font-size: 22px; }
.nav-logo .logo-text { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: .2px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 7px 13px; border-radius: 6px;
  color: #7A9BBF; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background .15s, color .15s;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(27,110,243,.12); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-login {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid rgba(27,110,243,.55); border-radius: 8px;
  color: #93C5FD; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.nav-login:hover { background: rgba(27,110,243,.12); border-color: var(--accent); color: #fff; text-decoration: none; }
.nav-cta {
  padding: 8px 20px;
  background: var(--accent); border: none; border-radius: 8px;
  color: white; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 0 20px rgba(27,110,243,.35);
}
.nav-cta:hover { background: var(--accent-hv); text-decoration: none; box-shadow: 0 0 28px rgba(27,110,243,.5); }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 22px; cursor: pointer; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--dark-bg); padding: 12px 24px 20px;
    border-bottom: 1px solid var(--dark-border);
  }
}

/* ══ HERO ══ */
.hero {
  background: #060F1A;
  padding: 70px 24px 100px;
  position: relative; overflow: hidden;
}
/* Dot-grid tech pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(27,110,243,.3) 1px, transparent 1px),
    linear-gradient(rgba(27,110,243,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,110,243,.035) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px, 32px 32px;
  mask-image: radial-gradient(ellipse 110% 100% at 50% 40%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 110% 100% at 50% 40%, black 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* Blue glow bloom */
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 200% 80% at 50% 0%, rgba(27,110,243,.25) 0%, rgba(27,110,243,.06) 45%, transparent 70%),
    radial-gradient(ellipse 120% 60% at 15% 100%, rgba(0,180,255,.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: hero-bloom 9s ease-in-out infinite;
}
@keyframes hero-bloom {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}
.hero-inner, .hero > .container { position: relative; z-index: 1; }
/* Fade hero into next section */
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--section-alt));
  z-index: 2; pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.hero-centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 780px;
}
.hero-centered .hero-btns { justify-content: center; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-inner .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; margin-bottom: 20px;
  background: linear-gradient(90deg, rgba(27,110,243,.15), rgba(0,180,255,.12), rgba(27,110,243,.15));
  background-size: 200% 100%;
  border: 1px solid rgba(27,110,243,.35);
  border-radius: 20px;
  color: #7AB8FF; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .6px;
  animation: tag-shimmer 4s ease-in-out infinite;
}
@keyframes tag-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }
.hero h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900; margin-bottom: 20px; letter-spacing: -.8px;
  background: linear-gradient(160deg, #FFFFFF 40%, #A8CBFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 span {
  background: linear-gradient(135deg, #1B6EF3 0%, #5BABFF 50%, #00D4FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 18px; color: #6A8FAD; line-height: 1.7; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 12px; color: #3A5A7A; }

/* ── Hero logo ── */
.hero-logo-wrap {
  display: flex; justify-content: center;
  margin-bottom: 24px;
}
.hero-logo-img {
  height: 260px; width: auto;
  filter: drop-shadow(0 0 28px rgba(27,110,243,.6)) drop-shadow(0 0 60px rgba(0,180,255,.25));
  animation: logo-float 6s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 28px rgba(27,110,243,.6)) drop-shadow(0 0 60px rgba(0,180,255,.25)); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 12px 32px rgba(27,110,243,.7)) drop-shadow(0 0 80px rgba(0,180,255,.35)); }
}

/* ── Hero chips ── */
.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-top: 36px;
}
.hero-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 40px;
  color: #8BAED4; font-size: 13px; font-weight: 500;
  transition: background .2s, border-color .2s;
}
.hero-chip:hover { background: rgba(255,255,255,.07); border-color: rgba(27,110,243,.3); }
.chip-icon { font-size: 16px; }

/* ══ BUTTONS ══ */
.btn-primary {
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--accent), #3B8EF8);
  border: none; border-radius: 8px;
  color: white; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(27,110,243,.45);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3.5s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0% { left: -100%; }
  55%, 100% { left: 160%; }
}
.btn-primary:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(27,110,243,.6); }
.btn-outline-light {
  padding: 13px 26px; background: transparent;
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  color: #AABBCC; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .15s, border-color .15s;
}
.btn-outline-light:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.4); text-decoration: none; }
.btn-outline {
  padding: 12px 24px; background: transparent;
  border: 2px solid var(--accent); border-radius: 8px;
  color: var(--accent); font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .15s;
}
.btn-outline:hover { background: var(--accent); color: white; text-decoration: none; }

/* ══ SECTIONS ══ */
.section-light {
  background: linear-gradient(to bottom,
    var(--dark-bg) 0%,
    var(--section-alt) 5%,
    var(--section-alt) 95%,
    var(--dark-bg) 100%);
  padding: 88px 0;
}
.section-gray {
  background: var(--dark-bg);
  padding: 88px 0;
}
.section-dark {
  background: linear-gradient(to bottom,
    var(--dark-bg) 0%,
    #040B14 6%,
    #040B14 94%,
    var(--dark-bg) 100%);
  padding: 88px 0;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; margin-bottom: 12px;
  padding: 4px 14px; border-radius: 20px;
  background: rgba(27,110,243,.1); border: 1px solid rgba(27,110,243,.25);
  color: #5B9FFF; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 14px; letter-spacing: -.4px;
  background: linear-gradient(135deg, #E2EDF8 50%, #7AB8FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p  { font-size: 17px; color: var(--text-mid); max-width: 540px; margin: 0 auto; }

/* ══ PROBLEM SECTION ══ */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.problem-card {
  background: rgba(239,68,68,.07);
  border: 1px solid rgba(239,68,68,.18);
  border-radius: var(--radius); padding: 24px 22px;
}
.problem-card .icon { font-size: 28px; margin-bottom: 12px; }
.problem-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #FCA5A5; }
.problem-card p  { font-size: 13px; color: #F87171; opacity: .8; line-height: 1.6; }

/* ══ FEATURE CARDS ══ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  border-left: 3px solid transparent;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(27,110,243,.15), 0 20px 48px rgba(0,0,0,.5); border-left-color: var(--accent); border-color: rgba(27,110,243,.3); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(27,110,243,.1); border: 1px solid rgba(27,110,243,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.feature-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ══ TIER BLOCKS ══ */
.tier-block {
  margin-bottom: 56px;
}
.tier-block:last-child { margin-bottom: 0; }
.tier-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--card-border);
}
.tier-badge-wrap { display: flex; align-items: center; gap: 14px; }
.tier-badge {
  display: inline-block; padding: 5px 14px;
  border-radius: 20px; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .7px; white-space: nowrap;
}
.tier-badge.standard {
  background: rgba(27,110,243,.12); border: 1px solid rgba(27,110,243,.3);
  color: #7AB8FF;
}
.tier-badge.pro {
  background: linear-gradient(90deg, rgba(245,158,11,.18), rgba(251,191,36,.12));
  border: 1px solid rgba(245,158,11,.4);
  color: #F6C244;
}
.tier-title { font-size: 17px; font-weight: 800; color: var(--text-primary); }
.tier-sub   { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.tier-price-link {
  font-size: 14px; font-weight: 700; color: var(--accent);
  text-decoration: none; white-space: nowrap;
  padding: 7px 16px; border-radius: 8px;
  border: 1px solid rgba(27,110,243,.25);
  transition: background .15s;
}
.tier-price-link:hover { background: rgba(27,110,243,.1); text-decoration: none; }
.features-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .features-grid-3 { grid-template-columns: 1fr 1fr; }
  .tier-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .features-grid-3 { grid-template-columns: 1fr; }
}

/* ══ PRICING ══ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px; max-width: 800px; margin: 0 auto;
}
.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: 16px; padding: 36px 32px;
  box-shadow: var(--shadow); position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border: 1px solid rgba(27,110,243,.4);
  animation: card-glow 4s ease-in-out infinite;
}
@keyframes card-glow {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 20px rgba(27,110,243,.25), 0 0 0 1px rgba(27,110,243,.2); }
  50% { box-shadow: var(--shadow-lg), 0 0 40px rgba(0,212,255,.3), 0 0 0 1px rgba(0,212,255,.35); }
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), #5B9FFF);
  color: white; padding: 4px 18px; border-radius: 20px;
  font-size: 11px; font-weight: 700; white-space: nowrap; letter-spacing: .3px;
}
.pricing-tier { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: #5B9FFF; margin-bottom: 6px; }
.pricing-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 4px; color: var(--text-primary); }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin: 14px 0 4px; }
.price-amount  { font-size: 52px; font-weight: 900; color: var(--text-primary); line-height: 1; }
.price-period  { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.pricing-sub   { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.pricing-divider { border: none; border-top: 1px solid var(--card-border); margin: 18px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text-mid); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cta {
  display: block; width: 100%; padding: 13px;
  background: var(--accent); border: none; border-radius: 8px;
  color: white; font-size: 15px; font-weight: 600;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(27,110,243,.3);
}
.pricing-cta:hover { background: var(--accent-hv); text-decoration: none; }
.pricing-cta.outline { background: transparent; border: 1px solid rgba(27,110,243,.4); color: #7AB8FF; box-shadow: none; }
.pricing-cta.outline:hover { background: rgba(27,110,243,.12); }

/* ══ CTA BANNER ══ */
.cta-banner {
  background: linear-gradient(135deg, #0D2137 0%, #060F1A 50%, #0D2137 100%);
  background-size: 200% 200%;
  border: 1px solid rgba(27,110,243,.25); border-radius: 16px;
  padding: 56px 40px; text-align: center; margin: 56px 0;
  position: relative; overflow: hidden;
  animation: banner-shift 8s ease infinite;
  box-shadow: 0 0 60px rgba(27,110,243,.08), inset 0 1px 0 rgba(255,255,255,.04);
}
@keyframes banner-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(27,110,243,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: white; margin-bottom: 12px; }
.cta-banner p  { font-size: 16px; color: #6A8FAD; margin-bottom: 28px; }

/* ══ BRANDS STRIP ══ */
.brands-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }
.brand-pill {
  padding: 6px 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; color: #5A7899; font-size: 12px; font-weight: 500;
  transition: background .15s, color .15s;
}
.brand-pill:hover { background: rgba(255,255,255,.08); color: #8BAED4; }

/* ══ HOW IT WORKS ══ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; }
.step {
  text-align: center; padding: 36px 28px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  color: var(--dark-border); font-size: 20px;
}
@media (max-width: 768px) { .step::after { display: none; } }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5B9FFF);
  color: white; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(27,110,243,.4);
  animation: step-pulse 3s ease-in-out infinite;
}
.step:nth-child(2) .step-num { animation-delay: 1s; }
.step:nth-child(3) .step-num { animation-delay: 2s; }
@keyframes step-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(27,110,243,.4); }
  50% { box-shadow: 0 4px 32px rgba(27,110,243,.75), 0 0 0 8px rgba(27,110,243,.08); }
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.step p   { font-size: 14px; color: var(--text-mid); }

/* ══ ABOUT ══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-visual {
  background: rgba(255,255,255,.03); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 36px; display: flex; flex-direction: column; gap: 20px;
}
.about-stat { text-align: center; }
.about-stat .num {
  font-size: 44px; font-weight: 900;
  background: linear-gradient(135deg, #1B6EF3, #00D4FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat .lbl { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.about-divider { border: none; border-top: 1px solid var(--card-border); }

.values-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.value-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.value-card:hover { transform: translateY(-2px); border-color: rgba(27,110,243,.3); }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.value-card p  { font-size: 14px; color: var(--text-mid); }

/* ══ PAGE HERO (inner pages) ══ */
.page-hero {
  background: var(--dark-bg); padding: 68px 24px 92px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(27,110,243,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--dark-bg));
  pointer-events: none; z-index: 1;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: white; margin-bottom: 12px; letter-spacing: -.4px; }
.page-hero p  { font-size: 17px; color: #6A8FAD; max-width: 520px; margin: 0 auto; }

/* ══ CONTACT ══ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: start;
}
@media (max-width: 768px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 30px; font-weight: 900; margin-bottom: 14px; letter-spacing: -.3px; color: var(--text-primary); }
.contact-info p  { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.7; }
.contact-detail  { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(27,110,243,.1); border: 1px solid rgba(27,110,243,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; margin-top: 2px;
}
.contact-form-card {
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: 16px; padding: 34px; box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--text-mid); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,.1); border-radius: 8px;
  font-size: 14px; color: var(--text-primary);
  background: rgba(255,255,255,.04); outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: #0D2035; color: var(--text-primary); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27,110,243,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--accent); border: none; border-radius: 8px;
  color: white; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(27,110,243,.35);
}
.form-submit:hover { background: var(--accent-hv); box-shadow: 0 6px 24px rgba(27,110,243,.5); }
.form-success {
  display: none; background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25); border-radius: 8px;
  padding: 16px; color: #4ADE80; font-size: 14px;
  text-align: center; margin-top: 14px;
}

/* ══ FAQ ══ */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--card-border); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .15s;
}
.faq-q:hover { background: rgba(255,255,255,.04); }
.faq-q .arrow { color: var(--accent); font-size: 12px; transition: transform .2s; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.faq-a.open { display: block; }

/* ══ FOOTER ══ */
footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  padding: 52px 0 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand p { font-size: 13px; color: #2A4A6A; margin-top: 12px; line-height: 1.7; max-width: 260px; }
.footer-col h4  { font-size: 11px; font-weight: 700; color: #2A4A6A; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 14px; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a   { font-size: 13px; color: #3A5A7A; text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: #7AABCC; }
.footer-bottom {
  border-top: 1px solid rgba(30,58,95,.5); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: #1E3A5F; }

/* ══ PHOTO STRIP ══ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 0 0;
}
.photo-strip-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75) brightness(0.65);
  transition: transform 0.55s ease, filter 0.4s ease;
}
.photo-strip-item:hover img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.8);
}
.photo-strip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(4,11,20,.88));
  color: #B8D0F0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .photo-strip { grid-template-columns: 1fr; }
}

/* ══ PHOTO BAND ══ */
.photo-band {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) brightness(0.4);
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,15,26,.55) 0%,
    rgba(6,15,26,.2) 50%,
    rgba(6,15,26,.55) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 24px;
  gap: 10px;
}
.photo-band-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #5BABFF;
  background: rgba(27,110,243,.15);
  border: 1px solid rgba(27,110,243,.3);
  padding: 5px 14px;
  border-radius: 99px;
}
.photo-band-text {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.3px;
  line-height: 1.2;
  max-width: 640px;
}

/* ══ SPLIT PHOTO ══ */
.split-photo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-photo-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  flex-shrink: 0;
}
.split-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) brightness(0.72);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.split-photo-img:hover img {
  transform: scale(1.04);
  filter: saturate(0.95) brightness(0.85);
}
.split-photo-text { display: flex; flex-direction: column; gap: 16px; }
.split-photo-text h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -.4px;
  line-height: 1.2;
}
.split-photo-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}
.split-photo-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.split-photo-bullets li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.split-photo-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 768px) {
  .split-photo-section { grid-template-columns: 1fr; gap: 28px; }
}
