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

:root {
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --light-gray: #F1F4F9;
  --border: #E2E8F3;
  --text: #0F172A;
  --text-mid: #374151;
  --text-muted: #6B7280;

  /* Brand accent colors */
  --blue: #1D4ED8;
  --blue-light: #EEF2FF;
  --blue-mid: #3B82F6;
  --teal: #0D9488;
  --teal-light: #F0FDFA;
  --purple: #7C3AED;
  --purple-light: #F5F3FF;
  --orange: #EA580C;
  --orange-light: #FFF7ED;
  --green: #16A34A;
  --green-light: #F0FDF4;
  --red: #DC2626;
  --red-light: #FEF2F2;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 4px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── DISCLAIMER BAR ── */
.disc-bar {
  background: #FEF3C7;
  border-bottom: 1px solid #FDE68A;
  padding: 9px 24px;
  text-align: center;
  font-size: 12.5px;
  color: #92400E;
  font-weight: 500;
}
.disc-bar strong { color: #B45309; }

/* ── HEADER ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 900;
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px; height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(29,78,216,0.25);
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--text);
}
.logo-tld { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 7px 13px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-btn {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  box-shadow: 0 4px 12px rgba(29,78,216,0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(29,78,216,0.4) !important; background: #1a45c5 !important; }
.hamburger { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; cursor: pointer; font-size: 18px; color: var(--text); }

/* Mobile nav */
.mob-nav {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-size: 20px; font-weight: 600; color: var(--text); padding: 10px; }
.mob-close { position: absolute; top: 20px; right: 20px; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 18px; cursor: pointer; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: all 0.25s;
}
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(29,78,216,0.3); }
.btn-blue:hover { background: #1a45c5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,78,216,0.4); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.btn-white { background: #fff; color: var(--blue); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 4px 16px rgba(13,148,136,0.3); }
.btn-teal:hover { background: #0b7a72; transform: translateY(-2px); }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.tag-blue { background: var(--blue-light); color: var(--blue); }
.tag-teal { background: var(--teal-light); color: var(--teal); }
.tag-purple { background: var(--purple-light); color: var(--purple); }
.tag-orange { background: var(--orange-light); color: var(--orange); }
.tag-green { background: var(--green-light); color: var(--green); }
.tag-red { background: var(--red-light); color: var(--red); }

/* ── HERO SECTION ── */
.hero {
  background: linear-gradient(160deg, #EEF2FF 0%, #F0FDFA 40%, #F8F9FC 100%);
  padding: 80px 0 70px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); color: var(--text); margin-bottom: 20px; }
.hero h1 span { color: var(--blue); }
.hero-sub { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.ht-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-muted); font-weight: 500; }
.ht-icon { font-size: 16px; }

/* Hero image card */
.hero-img-area { position: relative; }
.hero-main-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1D4ED8, #0D9488);
  display: flex; align-items: center; justify-content: center;
}
.hero-main-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
}
.hcf-1 { bottom: -20px; left: -20px; }
.hcf-2 { top: -15px; right: -15px; }
.hcf-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }
.hcf-val { font-size: 20px; font-weight: 700; color: var(--text); font-family: 'Playfair Display', serif; }
.hcf-sub { font-size: 12px; color: var(--text-muted); }
.hcf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 5px; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 10px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--blue); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-top: 3px; }

/* ── SECTION ── */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.sec-header { margin-bottom: 52px; }
.sec-header.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 52px; }
.sec-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 12px 0; color: var(--text); }
.sec-header p { font-size: 16px; color: var(--text-muted); line-height: 1.8; }

/* ── NETWORK HISTORY TABS ── */
.net-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.ntab {
  padding: 12px 24px; background: none; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text-muted); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all 0.2s; border-radius: 4px 4px 0 0;
}
.ntab:hover { color: var(--blue); background: var(--blue-light); }
.ntab.active { color: var(--blue); border-bottom-color: var(--blue); background: var(--blue-light); }

.npanel { display: none; animation: fadeIn 0.35s ease; }
.npanel.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

.net-card {
  display: grid; grid-template-columns: 320px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.nc-left { position: relative; overflow: hidden; }
.nc-left-img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; display: block;
}
.nc-left-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.nc-net-name { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.nc-net-type { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.08em; }
.nc-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.nc-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }

.nc-right { padding: 36px 40px; overflow-y: auto; }
.nc-right h3 { font-size: 22px; margin-bottom: 14px; color: var(--text); }
.nc-right .lead { font-size: 15.5px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; font-weight: 500; }
.nc-right p { font-size: 14.5px; color: var(--text-muted); line-height: 1.85; margin-bottom: 12px; }
.nc-right strong { color: var(--text); }

/* Info grid inside network card */
.nc-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.nc-info-item { background: var(--off-white); border-radius: var(--radius-sm); padding: 12px 16px; border: 1px solid var(--border); }
.nc-info-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 4px; }
.nc-info-value { font-size: 15px; font-weight: 700; color: var(--text); }

/* Timeline */
.timeline { margin-top: 24px; }
.tl-item { display: flex; gap: 16px; padding-bottom: 20px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 35px; top: 32px; bottom: 0; width: 2px; background: var(--border); }
.tl-item:last-child::before { display: none; }
.tl-yr {
  min-width: 70px; height: 28px;
  background: var(--blue); color: #fff;
  border-radius: 6px; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  font-family: 'DM Sans', monospace;
}
.tl-yr.teal { background: var(--teal); }
.tl-yr.purple { background: var(--purple); }
.tl-yr.orange { background: var(--orange); }
.tl-yr.red { background: var(--red); }
.tl-text strong { font-size: 14px; color: var(--text); display: block; margin-bottom: 2px; }
.tl-text span { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── PLAN CARDS ── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue); }
.plan-img { width: 100%; height: 180px; object-fit: cover; background: linear-gradient(135deg, #EEF2FF, #F0FDFA); display: flex; align-items: center; justify-content: center; font-size: 60px; }
.plan-body { padding: 24px; }
.plan-body h3 { font-size: 19px; margin-bottom: 8px; color: var(--text); }
.plan-body p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.plan-features { list-style: none; margin-bottom: 20px; }
.plan-features li { font-size: 13.5px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.plan-top-strip { height: 4px; }
.strip-blue { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.strip-teal { background: linear-gradient(90deg, var(--teal), #2DD4BF); }
.strip-purple { background: linear-gradient(90deg, var(--purple), #A855F7); }
.strip-orange { background: linear-gradient(90deg, var(--orange), #F97316); }
.strip-green { background: linear-gradient(90deg, var(--green), #22C55E); }
.strip-red { background: linear-gradient(90deg, var(--red), #F87171); }

/* ── COMPARE TABLE ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.cmp-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 900px; }
.cmp-table thead th { padding: 16px 18px; background: var(--text); color: #fff; font-size: 13.5px; font-weight: 700; text-align: left; font-family: 'DM Sans', sans-serif; }
.cmp-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.cmp-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.cmp-table tbody tr:nth-child(even) { background: var(--off-white); }
.cmp-table tbody tr:hover { background: var(--blue-light); }
.cmp-table tbody td { padding: 14px 18px; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border); vertical-align: middle; }
.cmp-table tbody td:first-child { font-weight: 700; color: var(--text); font-size: 15px; }
.cmp-table tbody tr:last-child td { border-bottom: none; }

.chip { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.chip-green { background: var(--green-light); color: var(--green); }
.chip-blue { background: var(--blue-light); color: var(--blue); }
.chip-teal { background: var(--teal-light); color: var(--teal); }
.chip-orange { background: var(--orange-light); color: var(--orange); }

/* ── NETWORK COMPARE CARDS ── */
.net-compare-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.ncc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.ncc:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ncc-img { width: 100%; height: 120px; object-fit: cover; }
.ncc-body { padding: 16px; }
.ncc-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.ncc-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; }
.ncc-row:last-child { border-bottom: none; }
.ncc-row .lbl { color: var(--text-muted); }
.ncc-row .val { font-weight: 700; color: var(--text); }

/* ── IMAGE GALLERY / CARDS ── */
.img-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.img-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-card img { width: 100%; height: 300px; object-fit: cover; display: block; }

/* ── FAQ ── */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.faq-item.open { border-color: var(--blue); }
.faq-q { padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text); transition: background 0.2s; }
.faq-q:hover { background: var(--blue-light); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 16px; transition: all 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-size: 14.5px; color: var(--text-muted); line-height: 1.8; }
.faq-a-inner { padding: 0 24px 20px; }
.faq-item.open .faq-a { max-height: 500px; }

/* ── TRUST SECTION ── */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all 0.3s; }
.trust-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.trust-icon { font-size: 36px; margin-bottom: 14px; }
.trust-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.trust-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ── CONTENT ARTICLE ── */
.content-article { max-width: 900px; margin: 0 auto; }
.content-article h2 { font-size: 26px; color: var(--text); margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.content-article h2:first-child { margin-top: 0; }
.content-article h3 { font-size: 20px; color: var(--blue); margin: 28px 0 10px; }
.content-article p { font-size: 15.5px; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.content-article ul, .content-article ol { margin: 10px 0 18px 22px; }
.content-article li { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.75; }
.content-article strong { color: var(--text); }
.info-box { background: var(--blue-light); border-left: 4px solid var(--blue); border-radius: 0 var(--radius-xs) var(--radius-xs) 0; padding: 18px 22px; margin: 22px 0; }
.info-box p { color: var(--text-mid); margin: 0; font-size: 14.5px; }
.warn-box { background: #FFFBEB; border-left: 4px solid #F59E0B; border-radius: 0 var(--radius-xs) var(--radius-xs) 0; padding: 18px 22px; margin: 22px 0; }
.warn-box p { color: #78350F; margin: 0; font-size: 14.5px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.ci-card { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; transition: all 0.2s; }
.ci-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.ci-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ci-blue { background: var(--blue-light); }
.ci-teal { background: var(--teal-light); }
.ci-purple { background: var(--purple-light); }
.ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); }
.ci-val { font-size: 15px; font-weight: 600; color: var(--text); margin-top: 2px; }

.contact-form-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text);
  outline: none; transition: border 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--white); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--blue-light), var(--teal-light)); padding: 60px 0 50px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 18px; font-weight: 500; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--text-muted); }

/* ── FOOTER ── */
.footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .logo-name { color: #fff; font-size: 18px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.f-badge { font-size: 11px; color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.07); border-radius: 20px; padding: 3px 10px; border: 1px solid rgba(255,255,255,0.1); }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-disc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 680px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── LEGAL ── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 64px 0; }
.legal-wrap h1 { font-size: 36px; margin-bottom: 6px; }
.legal-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.legal-wrap h2 { font-size: 20px; margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border); font-family: 'DM Sans', sans-serif; font-weight: 700; }
.legal-wrap p, .legal-wrap li { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 10px; }
.legal-wrap ul { margin-left: 20px; margin-bottom: 14px; }

/* ── TOAST ── */
#toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--green); color: #fff; font-weight: 600; font-size: 14.5px; padding: 13px 28px; border-radius: 50px; box-shadow: 0 8px 32px rgba(22,163,74,0.35); opacity: 0; pointer-events: none; z-index: 99999; transition: all 0.3s; white-space: nowrap; }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .net-compare-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .net-card { grid-template-columns: 1fr; }
  .nc-left-img { height: 260px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-area { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .net-compare-grid { grid-template-columns: repeat(2,1fr); }
  .img-grid-2 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .net-compare-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
