/* ════════════════════════════════════════════════
   ICE Pro — Main Stylesheet  v2.0
   Light · Clean · Professional · Premium
   ════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #F8F9FC;
  --bg-2:         #FFFFFF;
  --bg-3:         #EEF0F7;
  --surface:      rgba(255,255,255,0.9);

  /* Borders */
  --border:       rgba(0,0,0,.08);
  --border-h:     rgba(180,130,30,.35);

  /* Brand Colors */
  --gold:         #B8870A;
  --gold-light:   #D4A017;
  --gold-dim:     rgba(184,135,10,.10);
  --gold-bg:      rgba(184,135,10,.06);
  --navy:         #0F1B3D;
  --navy-light:   #1A2B5F;
  --red:          #B91C1C;
  --red-light:    #DC2626;

  /* Text */
  --text:         #0F1B3D;
  --text-muted:   #5A6580;
  --text-dim:     #9AA3B8;

  /* Status */
  --success:      #059669;
  --warning:      #D97706;
  --danger:       #DC2626;

  /* Radii */
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    36px;

  /* Shadows */
  --shadow-sm:    0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow:       0 4px 24px rgba(15,27,61,.10), 0 1px 6px rgba(0,0,0,.05);
  --shadow-lg:    0 16px 56px rgba(15,27,61,.15), 0 4px 16px rgba(0,0,0,.07);
  --shadow-gold:  0 8px 32px rgba(184,135,10,.20);

  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --transition:   .22s cubic-bezier(.4,0,.2,1);
  --header-h:     72px;
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ─── Container ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─────────────────────────────── */
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 800; letter-spacing: -.025em; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--text-muted); line-height: 1.8; }

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.fw-600       { font-weight: 600; }

/* ─── Utility ────────────────────────────────── */
.section       { padding: 100px 0; }
.section--lg   { padding: 130px 0; }
.section--sm   { padding: 64px 0; }
.section--alt  { background: #FFFFFF; }
.section--navy { background: var(--navy); color: #fff; }
.section--navy p { color: rgba(255,255,255,.7); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ─── Badges / Labels ────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(184,135,10,.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,135,10,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,135,10,.45);
  color: #fff;
}
.btn--secondary {
  background: var(--navy);
  color: #fff;
}
.btn--secondary:hover {
  background: var(--navy-light);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: #fff;
}
.btn--lg { padding: 15px 36px; font-size: 1rem; border-radius: var(--radius); }
.btn--sm { padding: 8px 18px; font-size: .82rem; }
.btn--full { width: 100%; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-light); color: #fff; }

/* ─── Alerts ─────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 20px; }
.alert--success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.alert--error   { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert--info    { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }

/* ─── Forms ──────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-size: .9rem;
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,135,10,.12);
}
.form-input::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ─── Cards ──────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(15,27,61,.10);
}
.site-header--sticky { position: fixed; }
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img { display: block; }
.logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.logo-ice { color: var(--navy); }
.logo-pro { color: var(--gold); }

/* Desktop nav — centered */
.header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-bg);
}
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--gold-bg);
  color: var(--gold);
}
.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

/* ════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 100px;
  background: linear-gradient(150deg, #F0F4FF 0%, #FBF8EF 50%, #F8F9FC 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,135,10,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(15,27,61,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(184,135,10,.12), rgba(184,135,10,.06));
  border: 1px solid rgba(184,135,10,.25);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .65rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-bottom: 20px;
  color: var(--navy);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup {
  width: 100%;
  max-width: 440px;
  background: var(--navy);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(15,27,61,.25), 0 8px 24px rgba(0,0,0,.12);
  position: relative;
  z-index: 2;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBB2C; }
.mockup-dots span:nth-child(3) { background: #28CA41; }
.mockup-title-bar {
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}
.mockup-body { display: flex; flex-direction: column; gap: 12px; }
.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 14px 16px;
}
.mockup-row-label { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 600; }
.mockup-row-value { font-size: .9rem; color: #fff; font-weight: 700; }
.mockup-row-value.gold { color: var(--gold-light); }
.mockup-row-value.green { color: #34D399; }
.mockup-result {
  background: linear-gradient(135deg, rgba(184,135,10,.2), rgba(184,135,10,.08));
  border: 1px solid rgba(184,135,10,.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 4px;
}
.mockup-result-label { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.mockup-result-num { font-size: 1.8rem; font-weight: 900; color: var(--gold-light); }

/* Floating badges on hero */
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-float--1 { top: -20px; left: -40px; animation-delay: 0s; }
.hero-float--2 { bottom: 20px; right: -30px; animation-delay: 2s; }
.hero-float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hero-float-icon--green { background: #ECFDF5; }
.hero-float-icon--blue  { background: #EFF6FF; }

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

/* ════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(184,135,10,.15);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--gold-bg);
}
.feature-icon svg { color: var(--gold); }
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-card p { font-size: .88rem; line-height: 1.7; }

/* ════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  opacity: .25;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(184,135,10,.3);
}
.step-card h3 { font-size: .95rem; margin-bottom: 8px; color: var(--navy); }
.step-card p { font-size: .83rem; }

/* ════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.pricing-toggle-label { font-size: .875rem; font-weight: 600; color: var(--text-muted); }
.toggle-switch {
  position: relative;
  width: 52px; height: 28px;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.toggle-switch.active { background: var(--gold); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle-switch.active::after { transform: translateX(24px); }
.pricing-save-badge {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  color: #065F46;
  border: 1px solid #A7F3D0;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #FFF8E7 0%, #FFFDF5 100%);
  box-shadow: var(--shadow-gold);
}
.pricing-card--featured:hover { transform: translateY(-4px); }

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pricing-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pricing-desc { font-size: .83rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-price-currency { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); }
.pricing-price-num { font-size: 3rem; font-weight: 900; line-height: 1; color: var(--navy); }
.pricing-price-period { font-size: .85rem; color: var(--text-muted); }
.pricing-price--yearly { color: var(--gold); }
.pricing-save { font-size: .78rem; color: var(--success); font-weight: 600; margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 12px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.pricing-feature::before {
  content: '✓';
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: #ECFDF5;
  color: #059669;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  margin-top: 1px;
}
.pricing-card--featured .pricing-feature::before {
  background: rgba(184,135,10,.15);
  color: var(--gold);
}

/* ════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1A2B5F 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,135,10,.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(150deg, #F0F4FF 0%, #FBF8EF 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 12px; color: var(--navy); }
.page-hero p { font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-logo { display: inline-flex; align-items: center; text-decoration: none; margin-bottom: 16px; }
.footer-logo .logo-ice { color: #fff; }
.footer-logo .logo-pro { color: var(--gold-light); }
.footer-logo img { filter: brightness(1.1); }
.footer-desc { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 280px; margin-bottom: 24px; }
.store-badges { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: none;
  width: fit-content;
}
.store-badge--android {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}
.store-badge--android:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  transform: translateX(3px);
}
.store-badge--soon {
  background: transparent;
  color: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.08);
  cursor: not-allowed;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-contact-list a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
}
.footer-copyright { color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.35); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* ════════════════════════════════════════════════
   AUTH PAGES
   ════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 24px 40px;
  background: linear-gradient(150deg, #F0F4FF 0%, #FBF8EF 100%);
}
.auth-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
}
.auth-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; color: var(--navy); }
.auth-subtitle { color: var(--text-muted); font-size: .9rem; margin-bottom: 32px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: .875rem; color: var(--text-muted); }
.auth-footer a { color: var(--gold); font-weight: 600; }

/* ════════════════════════════════════════════════
   DASHBOARD
   ════════════════════════════════════════════════ */
.dashboard-page {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: var(--bg);
}
.dashboard-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.dashboard-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  height: fit-content;
}
.sidebar-nav { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.sidebar-nav-item:last-child { border-bottom: none; }
.sidebar-nav-item:hover, .sidebar-nav-item.active {
  background: var(--gold-bg);
  color: var(--gold);
}
.sidebar-nav-item svg { flex-shrink: 0; }
.dashboard-content { min-width: 0; }
.dashboard-content-section { display: none; }
.dashboard-content-section.active { display: block; }

/* Stats */
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.stat-value { font-size: 1.8rem; font-weight: 900; color: var(--navy); }
.stat-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.plan-status-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1A2B5F 100%);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  margin-bottom: 20px;
}
.plan-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.plan-badge { display: inline-block; background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 12px; border-radius: 100px; margin-bottom: 16px; }
.plan-meta { font-size: .83rem; color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
}
.contact-sidebar-card h3 { color: #fff; margin-bottom: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border: 1px solid rgba(184,135,10,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-label {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: .95rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  display: block;
}
a.contact-info-value:hover { color: var(--gold); }

/* ════════════════════════════════════════════════
   DOWNLOAD PAGE
   ════════════════════════════════════════════════ */
.download-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: linear-gradient(150deg, var(--navy) 0%, #1A2B5F 100%);
  text-align: center;
  color: #fff;
}
.download-hero h1 { color: #fff; }
.download-hero p { color: rgba(255,255,255,.7); }
.download-badge-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.download-badge-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  min-width: 200px;
}
.download-badge-btn--android {
  background: #fff;
  color: var(--navy);
}
.download-badge-btn--android:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,255,255,.2);
  color: var(--navy);
}
.download-badge-btn--ios {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.1);
  cursor: not-allowed;
}
.download-badge-btn--ios * { opacity: .5; }
.download-badge-main { font-size: .72rem; opacity: .6; font-weight: 600; }
.download-badge-sub { font-size: 1rem; font-weight: 800; }
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.req-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.req-card-icon { font-size: 2rem; margin-bottom: 10px; }
.req-card h4 { font-size: .85rem; color: var(--navy); margin-bottom: 4px; }
.req-card p { font-size: .78rem; }

/* ════════════════════════════════════════════════
   PRICING PAGE – FAQ
   ════════════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-weight: 700; font-size: .95rem;
  cursor: pointer;
  color: var(--navy);
}
.faq-chevron { transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 16px; }
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-stat {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.about-stat-num { font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.about-stat-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 8px; }

/* ════════════════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════════════════ */
.legal-body p { font-size: .9rem; line-height: 1.75; margin-bottom: 12px; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: center; }
  .hero-mockup { max-width: 380px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 64px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .hero-float { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .requirements-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-card { padding: 32px 24px; }
  .dashboard-inner { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .header-nav, .header-actions { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .requirements-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .download-badge-group { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  h2 { font-size: 1.7rem; }
}

/* ════════════════════════════════════════════════
   SCROLLBAR
   ════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-3); }
::-webkit-scrollbar-thumb { background: rgba(184,135,10,.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
