*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --night: #0b0f1a;
  --deep: #111827;
  --card: #161d2e;
  --border: rgba(255,255,255,0.07);
  --accent: #2563ff;
  --accent-glow: rgba(37,99,255,0.3);
  --accent2: #f59e0b;
  --text: #e8eaf0;
  --muted: #7b82a0;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--night);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,15,26,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 6%;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--white); letter-spacing: -0.02em;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #1d4ed8 !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--text);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; display: inline-block;
  border: 1px solid var(--border); transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); color: var(--white); transform: translateY(-2px); }

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-block; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent); margin-bottom: 1rem;
}
h1, h2, h3 { font-family: 'Syne', sans-serif; letter-spacing: -0.02em; }
h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; color: var(--white); line-height: 1.2;
  max-width: 640px;
}
.section-lead {
  font-size: 0.95rem; color: var(--muted);
  max-width: 500px; line-height: 1.65;
  margin-top: 0.75rem; font-weight: 300;
}
.section-header { margin-bottom: 3.5rem; }
section { padding: 6rem 6%; }

/* Inner wrapper for all sections */
.section-inner,
.cards-grid, .faq-grid, .related-grid, .services-grid,
.content-grid, .process-steps, .why-inner, .telecom-grid,
.mer-grid, .lead-form-inner, .booking-header, .wizard-wrap,
.telecom-section > div, .partners-inner,
.cta-strip { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section-header { max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: 3.5rem; text-align: left; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 10rem 6% 5rem;
  background: var(--night);
  position: relative; overflow: hidden;
}
.page-hero > .page-hero-inner,
.page-hero > .stats-row,
.page-hero > .hero-actions,
.page-hero > .breadcrumb,
.page-hero > .section-tag { max-width: 1200px; margin-left: auto; margin-right: auto; }
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(37,99,255,0.1) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; text-align: left; }
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 1rem;
  max-width: 600px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #2563ff, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero p {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.65; font-weight: 300; margin-bottom: 2rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BREADCRUMB ── */
.breadcrumb {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--border); }

/* ── CONTENT BLOCKS ── */
.content-section { background: var(--deep); text-align: left; }
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { margin-bottom: 1rem; max-width: 640px; }
.content-text p {
  color: var(--muted); font-size: 0.95rem;
  line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem;
  max-width: 560px;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text); line-height: 1.5;
}
.feature-list li::before {
  content: '–'; color: var(--accent);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── CARDS GRID ── */
.cards-section { background: var(--night); text-align: left; }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(37,99,255,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.card-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── FAQ ── */
.faq-section { background: var(--deep); text-align: left; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem;
  cursor: pointer; transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(37,99,255,0.25); }
.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.4;
}
.faq-a { font-size: 0.86rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
  border-radius: 16px; padding: 3rem 3.5rem;
  display: flex; justify-content: space-between;
  align-items: center; gap: 2rem; flex-wrap: wrap;
  width: 88%; max-width: 1200px; margin: 0 auto 6rem;
  box-shadow: 0 20px 60px rgba(37,99,255,0.25);
}
.cta-strip h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.4rem; letter-spacing: -0.02em;
}
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 300; }
.btn-white {
  background: var(--white); color: var(--accent);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 600; text-decoration: none; font-size: 0.9rem;
  white-space: nowrap; transition: all 0.2s; flex-shrink: 0;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── STATS ROW ── */
.stats-row {
  display: flex; gap: 0; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; margin-top: 3rem;
  position: relative; z-index: 1;
}
.stat-box {
  flex: 1; padding: 2rem; text-align: center;
  border-right: 1px solid var(--border); background: var(--card);
}
.stat-box:last-child { border-right: none; }
.stat-box .num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em;
}
.stat-box .num span { color: var(--accent); }
.stat-box .lbl { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }

/* ── PROCESS STEPS ── */
.process-section { background: var(--night); text-align: left; }
.process-steps { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 680px; margin: 0 auto; }
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.75rem 0; border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(37,99,255,0.1); border: 1px solid rgba(37,99,255,0.25);
  color: var(--accent); font-size: 0.85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.process-step h4 {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.35rem;
}
.process-step p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── INTERNAL LINKS ── */
.related-section { background: var(--deep); text-align: left; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
  text-decoration: none; transition: all 0.2s; display: block;
}
.related-card:hover { border-color: rgba(37,99,255,0.3); transform: translateY(-3px); }
.related-card .rc-icon { color: var(--accent); margin-bottom: 0.75rem; }
.related-card h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.related-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: var(--night);
  border-top: 1px solid var(--border);
  padding: 3rem 6% 2rem;
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 220px;
}
.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-col ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  gap: 1rem;
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── HAMBURGER & MOBILE MENU ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: rgba(11,15,26,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 6%; flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none; font-size: 0.95rem;
  font-weight: 500; padding: 0.85rem 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 0.5rem; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mob-cta {
  background: var(--accent); color: var(--white) !important;
  border-radius: 8px; text-align: center; padding: 0.85rem !important;
  border: none !important; margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-strip { margin: 0 4% 4rem; padding: 2rem; }
  .stats-row { flex-wrap: wrap; }
  .stat-box { min-width: 50%; border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  .page-hero { padding: 8rem 5% 4rem; }
  .footer-top { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}
