/*
Theme Name: moderntales.online Static WordPress Theme
Theme URI: https://moderntales.online/
Author: ChatGPT
Description: Converted static website theme for moderntales.online. Includes mapped pages, static design assets, and connected internal links.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: moderntales-online
*/

/* ═══════════════════════════════════════════════════════════
   MODERN TALES — moderntales.online
   Premium Dark Cinematic Lead Generation Website
   Independent UK Mobile Plan Guidance
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --navy-deep:   #050816;
  --navy-card:   #0B1120;
  --navy-mid:    #0F1B35;
  --navy-light:  #162040;
  --blue-pro:    #0F4C8A;
  --blue-bright: #1E6EDB;
  --blue-light:  #60A5FA;
  --blue-glow:   rgba(30,110,219,0.18);
  --white:       #FFFFFF;
  --soft-gray:   #CBD5E1;
  --muted:       #8899B8;
  --dim:         rgba(255,255,255,0.08);
  --border:      rgba(96,165,250,0.15);
  --border2:     rgba(96,165,250,0.25);
  --gold:        #F59E0B;

  /* Network accents */
  --o2-blue:     #0066CC;
  --three-purple:#7C3AED;
  --tesco-red:   #E63946;
  --ee-cyan:     #0891B2;
  --voda-red:    #E2001A;
  --sky-blue:    #00A0E3;
  --smarty-teal: #0D9488;
  --lebara-pink: #E91E8C;

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', -apple-system, sans-serif;

  --max-w: 1200px;
  --gap:   clamp(20px, 4vw, 56px);
  --sec:   clamp(70px, 9vw, 120px);
  --r:     12px;
  --r-lg:  20px;
  --r-xl:  28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--navy-deep);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-b); border: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.h-xl {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
}
.h-lg {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.018em;
}
.h-md {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.015em;
}
.h-sm {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600; line-height: 1.2;
}
.t-lg  { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.72; }
.t-md  { font-size: clamp(0.9rem, 1.2vw, 1rem);  line-height: 1.7; }
.t-sm  { font-size: 0.85rem; line-height: 1.68; }
.t-xs  { font-size: 0.75rem; line-height: 1.6; }

.c-white  { color: var(--white); }
.c-soft   { color: var(--soft-gray); }
.c-muted  { color: var(--muted); }
.c-blue   { color: var(--blue-light); }
.c-gold   { color: var(--gold); }
.eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 14px;
  display: block;
}
.grad-text {
  background: linear-gradient(135deg, #ffffff 0%, #60A5FA 60%, #1E6EDB 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap); }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 var(--gap); }
section { padding: var(--sec) var(--gap); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-pro) 100%);
  color: var(--white); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(30,110,219,0.4);
  transition: all 0.28s cubic-bezier(.25,.46,.45,.94);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,110,219,0.55);
  background: linear-gradient(135deg, #2d7ef5 0%, var(--blue-bright) 100%);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 100px;
  border: 1.5px solid var(--border2);
  color: var(--white); font-size: 0.9rem; font-weight: 500;
  transition: all 0.28s;
}
.btn-outline:hover {
  background: rgba(96,165,250,0.08);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}
.btn-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 100px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-pro));
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  transition: all 0.25s;
}
.btn-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,110,219,0.4); }

/* ── HEADER / NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,8,22,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
.site-header.scrolled { background: rgba(5,8,22,0.97); }
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gap);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-block { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.01em; line-height: 1;
}
.logo-sub { font-size: 0.6rem; color: var(--muted); letter-spacing: 0.08em; font-weight: 500; }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  font-size: 0.76rem; font-weight: 500; color: var(--soft-gray);
  padding: 8px 11px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.header-cta { margin-left: 12px; white-space: nowrap; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* ── MOBILE DRAWER ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(5,8,22,0.98);
  backdrop-filter: blur(30px);
  flex-direction: column; padding: 88px var(--gap) 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0; font-size: 1.05rem; font-weight: 400;
  color: var(--soft-gray); border-bottom: 1px solid var(--dim);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-close {
  position: absolute; top: 18px; right: var(--gap);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-light); color: var(--soft-gray);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
}
.mobile-section-title {
  font-size: 0.62rem; font-weight: 700; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 18px 0 6px; margin-top: 8px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--gap) 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(30,110,219,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(15,76,138,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #050816 0%, #061B4E 40%, #050816 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(96,165,250,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-left { max-width: 640px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 100px;
  background: rgba(30,110,219,0.12);
  border: 1px solid rgba(30,110,219,0.3);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--blue-light); text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); box-shadow: 0 0 8px var(--blue-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.1rem); color: var(--soft-gray); line-height: 1.75; margin-bottom: 28px; max-width: 560px; }
.hero-disclaimer {
  font-size: 0.72rem; color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dim);
  border-radius: var(--r); padding: 12px 16px;
  line-height: 1.6; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(96,165,250,0.07);
  border: 1px solid rgba(96,165,250,0.15);
  font-size: 0.72rem; color: var(--soft-gray); font-weight: 500;
}
.trust-badge-icon { font-size: 0.85rem; }

/* ── HERO FORM CARD ── */
.hero-form-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(96,165,250,0.08);
  backdrop-filter: blur(20px);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), var(--blue-light), transparent);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.form-title {
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.form-subtitle { font-size: 0.78rem; color: var(--muted); margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.7rem; font-weight: 600;
  color: var(--soft-gray); margin-bottom: 6px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(96,165,250,0.18);
  border-radius: var(--r); color: var(--white);
  font-size: 0.88rem; font-family: var(--font-b);
  transition: border-color 0.2s, background 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-bright);
  background: rgba(30,110,219,0.08);
}
.form-group select { color: var(--soft-gray); cursor: pointer; }
.form-group select option { background: #0B1120; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent-group { display: flex; gap: 12px; align-items: flex-start; margin: 14px 0; }
.consent-group input[type="checkbox"] { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--blue-bright); }
.consent-group label { font-size: 0.74rem; color: var(--muted); line-height: 1.6; text-transform: none; letter-spacing: 0; }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-pro));
  color: var(--white); font-size: 0.9rem; font-weight: 700;
  border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(30,110,219,0.4);
  transition: all 0.28s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,110,219,0.55); }
.form-safety {
  font-size: 0.68rem; color: var(--muted);
  background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.18);
  border-radius: var(--r); padding: 10px 14px;
  margin-top: 12px; line-height: 1.6;
}
.form-safety strong { color: var(--gold); }

/* ── NETWORK CARDS ── */
.networks-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.net-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all 0.3s cubic-bezier(.25,.46,.45,.94);
  position: relative; overflow: hidden;
}
.net-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transition: opacity 0.3s;
}
.net-card:hover {
  transform: translateY(-6px);
  border-color: var(--border2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(30,110,219,0.1);
}
.net-card.o2::before    { background: var(--o2-blue); }
.net-card.three::before { background: var(--three-purple); }
.net-card.tesco::before { background: linear-gradient(90deg, var(--tesco-red), #FF6B81); }
.net-card.ee::before    { background: var(--ee-cyan); }
.net-card.voda::before  { background: var(--voda-red); }
.net-card.sky::before   { background: var(--sky-blue); }
.net-card.smarty::before { background: var(--smarty-teal); }
.net-card.lebara::before { background: var(--lebara-pink); }
.net-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.net-card h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.net-card p  { font-size: 0.82rem; color: var(--soft-gray); line-height: 1.68; margin-bottom: 18px; }
.net-card-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.net-card-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.76rem; color: var(--muted);
}
.net-card-features li::before { content: '✓'; color: var(--blue-light); font-size: 0.68rem; font-weight: 700; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.step-item {
  text-align: center; padding: 32px 24px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '→';
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  color: var(--blue-light); font-size: 1.2rem; opacity: 0.4;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-pro));
  color: var(--white); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(30,110,219,0.4);
}
.step-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-text  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── TOPICS GRID ── */
.topics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.topic-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px;
  transition: all 0.28s;
}
.topic-card:hover {
  border-color: var(--border2); background: var(--navy-light);
  transform: translateY(-3px);
}
.topic-icon { font-size: 1.6rem; margin-bottom: 12px; }
.topic-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.topic-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

/* ── DISCLAIMER BANNER ── */
.disclaimer-banner {
  background: linear-gradient(135deg, rgba(15,76,138,0.25), rgba(30,110,219,0.15));
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: var(--r-xl); padding: 36px 44px;
  position: relative; overflow: hidden;
}
.disclaimer-banner::before {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(30,110,219,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.disclaimer-banner h2 { font-family: var(--font-h); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 14px; }
.disclaimer-banner p { font-size: 0.9rem; color: var(--soft-gray); line-height: 1.75; }

/* ── COMPARISON TABLE ── */
.cmp-table-wrap { overflow-x: auto; border-radius: var(--r-lg); }
.cmp-table {
  width: 100%; border-collapse: collapse; min-width: 700px;
  background: var(--navy-card);
}
.cmp-table thead { background: var(--navy-light); }
.cmp-table th {
  padding: 14px 18px; text-align: left;
  font-size: 0.68rem; font-weight: 700; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.cmp-table td {
  padding: 13px 18px; font-size: 0.83rem; color: var(--soft-gray);
  border-bottom: 1px solid rgba(96,165,250,0.06);
  vertical-align: middle;
}
.cmp-table tbody tr:last-child td { border: none; }
.cmp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.cmp-name { font-weight: 700; color: var(--white); }
.cmp-dot  { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 8px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--dim); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 20px 0; cursor: pointer; user-select: none;
}
.faq-q-text { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-light); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0; transition: all 0.28s;
}
.faq-item.open .faq-toggle {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-pro));
  color: var(--white); transform: rotate(45deg);
}
.faq-a {
  display: none; padding: 0 0 20px;
  font-size: 0.88rem; color: var(--soft-gray); line-height: 1.78;
}
.faq-item.open .faq-a { display: block; }

/* ── NETWORK PAGE HERO ── */
.page-hero {
  padding: 130px var(--gap) 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-body { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.page-disclaimer-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  font-size: 0.7rem; color: var(--muted); margin-bottom: 28px;
}
.page-disclaimer-tag::before { content: 'ℹ️'; font-size: 0.85rem; }

/* ── CONTENT SECTIONS ── */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 36px 0; }
.content-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: all 0.28s;
}
.content-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.content-card h3 {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.content-card p { font-size: 0.85rem; color: var(--soft-gray); line-height: 1.72; }
.content-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.content-card ul li {
  font-size: 0.82rem; color: var(--muted);
  padding-left: 18px; position: relative; line-height: 1.55;
}
.content-card ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--blue-light); font-size: 0.75rem;
}

/* ── FULL-WIDTH FORM SECTION ── */
.form-section {
  background: linear-gradient(135deg, var(--navy-card), var(--navy-mid));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: var(--sec) var(--gap);
}
.form-section-inner {
  max-width: 720px; margin: 0 auto;
  background: rgba(5,8,22,0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 48px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.form-section-inner::before {
  content: '';
  display: block; width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
  border-radius: 2px; margin-bottom: 24px;
}

/* ── STAT BADGES ── */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 36px 0; }
.stat-badge {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; text-align: center;
}
.stat-n { font-family: var(--font-h); font-size: 1.9rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-l { font-size: 0.72rem; color: var(--muted); margin-top: 5px; }

/* ── GLOSSARY / TERMS ── */
.terms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.term-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px;
  transition: all 0.25s;
}
.term-card:hover { border-color: var(--border2); }
.term-title { font-size: 0.65rem; font-weight: 700; color: var(--blue-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.term-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-label { font-size: 0.68rem; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.contact-val { font-size: 1rem; font-weight: 600; color: var(--white); }

/* ── FOOTER ── */

.phone-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.phone-link:hover { color: var(--blue-light); }
.footer-phone {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(96,165,250,0.14);
  font-size: 0.82rem;
  color: var(--soft-gray);
  line-height: 1.7;
}
.footer-phone a {
  color: var(--white);
  font-weight: 700;
}
.footer-phone a:hover { color: var(--blue-light); }
.footer-phone span { color: var(--muted); font-size: 0.74rem; }

footer {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  padding: 64px var(--gap) 32px;
}
.footer-grid { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 44px; border-bottom: 1px solid var(--dim); margin-bottom: 28px;
}
.footer-brand p { font-size: 0.78rem; color: var(--muted); line-height: 1.82; max-width: 240px; margin-top: 12px; }
.footer-col h4 {
  font-size: 0.65rem; font-weight: 700; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.79rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-disclaimer {
  font-size: 0.7rem; color: var(--muted); line-height: 1.9;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dim);
  border-radius: var(--r); padding: 14px 18px;
  margin-bottom: 16px;
}
.footer-bottom { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--muted); }

/* ── THANK YOU PAGE ── */
.ty-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px var(--gap) 80px;
  background: radial-gradient(ellipse at center, rgba(30,110,219,0.12) 0%, transparent 70%);
}
.ty-icon { font-size: 4rem; margin-bottom: 24px; animation: bounceIn 0.6s ease; }
@keyframes bounceIn { 0%{transform:scale(0);opacity:0} 60%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }
.ty-safety {
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--r-lg); padding: 20px 24px;
  max-width: 580px; margin: 28px auto;
}
.ty-safety h3 { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }
.ty-safety p  { font-size: 0.82rem; color: var(--soft-gray); line-height: 1.68; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--dim); max-width: var(--max-w); margin: 0 auto; }

/* ── SECTION BG VARIANTS ── */
.bg-dark  { background: var(--navy-deep); }
.bg-card  { background: var(--navy-card); }
.bg-mid   { background: var(--navy-mid); }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.72rem; color: var(--muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--blue-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--muted); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 600px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .networks-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .step-item:not(:last-child)::after { display: none; }
}
@media (max-width: 900px) {
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-section-inner { padding: 32px 24px; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .networks-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
  .disclaimer-banner { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.66rem; padding: 6px 10px; }
}
