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

:root {
  --black: #0a0a0a;
  --white: #fafaf7;
  --yellow: #f5d600;
  --yellow-dark: #c4ab00;
  --yellow-light: #fffbe0;
  --gray-100: #f0efeb;
  --gray-200: #e2e0d8;
  --gray-400: #9a9890;
  --gray-600: #5c5a52;
  --gray-800: #2a2a26;
  --success: #1a8a4a;
  --danger: #c93030;
  --warning: #e07800;
  --info: #1a5cb5;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--gray-600); font-weight: 300; }
a  { color: inherit; text-decoration: none; }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--black);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.3rem;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.nav-brand .logo-dot { width: 28px; height: 28px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-brand .logo-dot svg { width: 16px; height: 16px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--gray-400); font-size: 0.88rem; font-weight: 400;
  padding: 6px 14px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-login { background: rgba(245,214,0,0.12); color: var(--yellow); border: 1px solid rgba(245,214,0,0.3); padding: 7px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all var(--transition); font-family: var(--font-body); }
.btn-nav-login:hover { background: var(--yellow); color: var(--black); }
.lang-toggle { display: flex; background: rgba(255,255,255,0.07); border-radius: 8px; overflow: hidden; }
.lang-toggle button { background: none; border: none; color: var(--gray-400); padding: 6px 12px; font-size: 0.8rem; cursor: pointer; font-family: var(--font-body); transition: all var(--transition); }
.lang-toggle button.active { background: var(--yellow); color: var(--black); font-weight: 600; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; cursor: pointer; border: none; transition: all var(--transition); text-decoration: none; }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,214,0,0.35); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray-800); transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ── */
#hero {
  background: var(--black);
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(245,214,0,1) 40px, rgba(245,214,0,1) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(245,214,0,1) 40px, rgba(245,214,0,1) 41px);
}
.hero-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,214,0,0.12) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,214,0,0.1); border: 1px solid rgba(245,214,0,0.25); color: var(--yellow); padding: 6px 14px; border-radius: 100px; font-size: 0.82rem; font-weight: 500; margin-bottom: 28px; }
.hero-badge span { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-title em { color: var(--yellow); font-style: normal; }
.hero-subtitle { color: var(--gray-400); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-item {}
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--yellow); }
.stat-label { font-size: 0.82rem; color: var(--gray-400); }
.hero-networks { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 16px; padding-right: 40px; z-index: 2; }
.network-pill {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px; border-radius: 100px;
  color: var(--white); font-size: 0.88rem; font-weight: 500;
  backdrop-filter: blur(8px);
  animation: float-in 0.6s ease forwards;
  opacity: 0; transform: translateX(30px);
}
.network-pill:nth-child(1){animation-delay:0.3s}
.network-pill:nth-child(2){animation-delay:0.5s}
.network-pill:nth-child(3){animation-delay:0.7s}
.network-pill:nth-child(4){animation-delay:0.9s}
@keyframes float-in { to { opacity:1; transform:translateX(0); } }
.network-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-yas    { background: #ff6b35; }
.dot-airtel { background: #e4002b; }
.dot-halotel{ background: #0057a8; }
.dot-vodacom{ background: #e60000; }

/* ── SECTION HEADERS ── */
.section-tag { display: inline-block; background: var(--yellow); color: var(--black); font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; }
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 520px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: var(--yellow-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 24px; }
.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 18px; }
.service-networks { display: flex; gap: 6px; flex-wrap: wrap; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 500; }
.badge-yas    { background: #fff2ec; color: #c94d00; }
.badge-airtel { background: #ffeef0; color: #b30020; }
.badge-halotel{ background: #edf4ff; color: #0044a3; }
.badge-vodacom{ background: #fff0f0; color: #b30000; }
.badge-ttcl   { background: #f0fff4; color: #146b32; }
.badge-all    { background: var(--gray-100); color: var(--gray-600); }

/* ── MODAL / PAGES ── */
.page-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(4px);
  animation: fade-in 0.2s ease;
  overflow-y: auto; padding: 80px 20px 40px;
}
.page-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
@keyframes fade-in { from{opacity:0} to{opacity:1} }
.page-panel {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 680px;
  box-shadow: var(--shadow-lg);
  animation: slide-up 0.3s ease;
  overflow: hidden;
}
@keyframes slide-up { from{transform:translateY(30px);opacity:0} to{transform:none;opacity:1} }
.page-panel-header {
  background: var(--black); color: var(--white);
  padding: 24px 28px; display: flex; align-items: center; justify-content: space-between;
}
.page-panel-header h2 { font-size: 1.3rem; color: var(--white); }
.page-panel-close { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: none; border-radius: 8px; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); font-size: 18px; }
.page-panel-close:hover { background: rgba(255,255,255,0.2); }
.page-panel-body { padding: 28px; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--gray-800); margin-bottom: 7px; }
.form-label .req { color: var(--danger); margin-left: 3px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; color: var(--black);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,214,0,0.15); }
.form-control.error { border-color: var(--danger); }
.form-error { font-size: 0.78rem; color: var(--danger); margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-hint { font-size: 0.78rem; color: var(--gray-400); margin-top: 5px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9890' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.upload-area {
  border: 2px dashed var(--gray-200); border-radius: var(--radius-sm);
  padding: 28px 20px; text-align: center; cursor: pointer;
  transition: all var(--transition); background: var(--gray-100);
}
.upload-area:hover, .upload-area.dragover { border-color: var(--yellow); background: var(--yellow-light); }
.upload-area input[type=file] { display: none; }
.upload-icon { font-size: 28px; margin-bottom: 8px; }
.upload-text { font-size: 0.88rem; color: var(--gray-600); }
.upload-text strong { color: var(--black); }
.upload-preview { display: none; align-items: center; gap: 12px; background: var(--gray-100); padding: 12px; border-radius: var(--radius-sm); margin-top: 10px; }
.upload-preview.show { display: flex; }
.upload-preview img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }
.upload-preview-name { font-size: 0.85rem; font-weight: 500; flex: 1; }
.upload-preview-remove { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 18px; }

/* ── PAYMENT PAGE ── */
.payment-step { display: none; }
.payment-step.active { display: block; }
.payment-amount-big {
  text-align: center; background: var(--black); color: var(--white);
  border-radius: var(--radius); padding: 28px 20px; margin-bottom: 24px;
}
.payment-amount-big .currency { font-size: 1rem; color: var(--yellow); vertical-align: top; margin-top: 8px; display: inline-block; }
.payment-amount-big .amount { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--yellow); }
.payment-amount-big .desc { color: var(--gray-400); font-size: 0.88rem; margin-top: 4px; }
.lipa-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.lipa-card {
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  padding: 16px; cursor: pointer; transition: all var(--transition);
  position: relative;
}
.lipa-card:hover { border-color: var(--yellow); }
.lipa-card.selected { border-color: var(--yellow); background: var(--yellow-light); }
.lipa-card .network-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.lipa-card .lipa-num { font-family: monospace; font-size: 1.3rem; font-weight: 700; letter-spacing: 0.05em; margin: 6px 0; color: var(--black); }
.lipa-card .lipa-account { font-size: 0.75rem; color: var(--gray-400); }
.lipa-card .copy-btn { position: absolute; top: 12px; right: 12px; background: var(--gray-100); border: none; border-radius: 6px; padding: 4px 8px; font-size: 0.72rem; cursor: pointer; color: var(--gray-600); transition: all var(--transition); font-family: var(--font-body); }
.lipa-card .copy-btn:hover { background: var(--yellow); color: var(--black); }
.lipa-yas    { --accent: #ff6b35; }
.lipa-airtel { --accent: #e4002b; }
.lipa-halotel{ --accent: #0057a8; }
.lipa-vodacom{ --accent: #e60000; }
.lipa-card .network-stripe { height: 4px; border-radius: 2px; background: var(--accent); margin-bottom: 12px; }
.payment-steps-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }
.pstep { flex: 1; text-align: center; }
.pstep-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-200); color: var(--gray-600); font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 6px; transition: all var(--transition); }
.pstep.active .pstep-num { background: var(--yellow); color: var(--black); }
.pstep.done .pstep-num { background: var(--success); color: var(--white); }
.pstep-label { font-size: 0.72rem; color: var(--gray-400); }
.pstep.active .pstep-label { color: var(--black); font-weight: 500; }
.pstep-line { flex: 1; height: 2px; background: var(--gray-200); }
.pstep-line.done { background: var(--yellow); }
.alert { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 16px; display: flex; gap: 10px; align-items: flex-start; }
.alert-info    { background: #eef4ff; color: var(--info); border-left: 3px solid var(--info); }
.alert-success { background: #edfff5; color: var(--success); border-left: 3px solid var(--success); }
.alert-warning { background: #fff8ee; color: var(--warning); border-left: 3px solid var(--warning); }
.alert-danger  { background: #fff0f0; color: var(--danger); border-left: 3px solid var(--danger); }

/* ── STATUS BADGES ── */
.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 500; }
.status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-submitted { background: #eef4ff; color: var(--info); }
.status-pending   { background: #fff8ee; color: var(--warning); }
.status-successful{ background: #edfff5; color: var(--success); }
.status-rejected  { background: #fff0f0; color: var(--danger); }

/* ── BUNDLES ── */
.bundle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.bundle-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 22px 18px; text-align: center;
  cursor: pointer; transition: all var(--transition);
}
.bundle-card:hover, .bundle-card.selected { border-color: var(--yellow); box-shadow: 0 4px 24px rgba(245,214,0,0.2); }
.bundle-gb { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--black); line-height: 1; }
.bundle-gb span { font-size: 1rem; color: var(--gray-400); font-weight: 400; }
.bundle-price { font-size: 1.2rem; font-weight: 700; color: var(--yellow-dark); margin: 8px 0; font-family: var(--font-display); }
.bundle-extras { font-size: 0.78rem; color: var(--gray-400); }
.bundle-custom { background: var(--black); border-radius: var(--radius); padding: 22px; color: var(--white); margin-top: 8px; }
.bundle-custom h3 { color: var(--yellow); margin-bottom: 12px; }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.contact-card {
  background: var(--black); border-radius: var(--radius); padding: 22px;
  transition: transform var(--transition);
}
.contact-card:hover { transform: translateY(-3px); }
.contact-network { font-family: var(--font-display); font-weight: 700; color: var(--yellow); margin-bottom: 6px; }
.contact-phone { font-size: 1.1rem; font-weight: 600; color: var(--white); font-family: monospace; }
.contact-actions { display: flex; gap: 8px; margin-top: 12px; }
.contact-btn { flex: 1; padding: 7px; border-radius: 6px; font-size: 0.78rem; text-align: center; cursor: pointer; border: none; font-family: var(--font-body); font-weight: 500; transition: all var(--transition); }
.btn-call { background: rgba(245,214,0,0.12); color: var(--yellow); }
.btn-call:hover { background: var(--yellow); color: var(--black); }
.btn-wa { background: rgba(37,211,102,0.12); color: #25d366; }
.btn-wa:hover { background: #25d366; color: var(--white); }

/* ── AUTH FORMS ── */
.auth-tabs { display: flex; background: var(--gray-100); border-radius: var(--radius-sm); padding: 4px; margin-bottom: 24px; }
.auth-tab { flex: 1; padding: 9px; text-align: center; border-radius: 6px; font-size: 0.88rem; font-weight: 500; cursor: pointer; border: none; background: none; font-family: var(--font-body); color: var(--gray-600); transition: all var(--transition); }
.auth-tab.active { background: var(--white); color: var(--black); box-shadow: 0 1px 6px rgba(0,0,0,0.1); }

/* ── DASHBOARD ── */
.dashboard-wrap { background: var(--gray-100); min-height: 100vh; padding: 84px 0 40px; }
.dashboard-grid { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }
.sidebar {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden; position: sticky; top: 80px;
}
.sidebar-user { background: var(--black); padding: 20px; color: var(--white); }
.sidebar-avatar { width: 44px; height: 44px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--black); margin-bottom: 10px; }
.sidebar-name { font-weight: 600; font-size: 0.95rem; }
.sidebar-role { font-size: 0.75rem; color: var(--gray-400); }
.sidebar-nav { padding: 8px; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 0.88rem; color: var(--gray-600); transition: all var(--transition); margin-bottom: 2px; }
.sidebar-nav a:hover { background: var(--gray-100); color: var(--black); }
.sidebar-nav a.active { background: var(--yellow-light); color: var(--black); font-weight: 500; }
.sidebar-nav a .nav-icon { font-size: 16px; width: 20px; text-align: center; }
.dash-content { }
.dash-section { display: none; }
.dash-section.active { display: block; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 18px; border: 1px solid var(--gray-200); }
.stat-card .stat-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; }
.stat-card .stat-lbl { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }
.orders-table { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; }
.table-header { padding: 16px 20px; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.table-header h3 { font-size: 1rem; }
table { width: 100%; border-collapse: collapse; }
th { background: var(--gray-100); padding: 10px 16px; text-align: left; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-600); }
td { padding: 13px 16px; border-bottom: 1px solid var(--gray-100); font-size: 0.88rem; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-100); }
.order-ref { font-family: monospace; font-size: 0.82rem; font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: var(--black); color: var(--white); padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--gray-400); font-size: 0.88rem; max-width: 260px; margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--gray-400); font-size: 0.88rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--gray-400); }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gray-400); transition: all var(--transition); text-decoration: none; }
.social-link:hover { background: var(--yellow); color: var(--black); }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--black); color: var(--white); padding: 14px 20px; border-radius: var(--radius-sm); font-size: 0.88rem; max-width: 320px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); animation: toast-in 0.3s ease; border-left: 3px solid var(--yellow); }
.toast.success { border-color: var(--success); }
.toast.error   { border-color: var(--danger); }
@keyframes toast-in { from{transform:translateX(100%);opacity:0} to{transform:none;opacity:1} }
@keyframes toast-out { to{transform:translateX(120%);opacity:0} }

/* ── LOADING SPINNER ── */
.spinner { width: 20px; height: 20px; border: 2px solid rgba(0,0,0,0.1); border-top-color: var(--black); border-radius: 50%; animation: spin 0.7s linear infinite; }
.spinner.white { border-color: rgba(255,255,255,0.2); border-top-color: var(--white); }
@keyframes spin { to{transform:rotate(360deg)} }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-networks { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--black); padding: 16px; z-index: 999; border-top: 1px solid rgba(255,255,255,0.08); }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; color: var(--gray-400); padding: 12px 16px; border-radius: 8px; font-size: 0.95rem; margin-bottom: 4px; }
  .mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
  .form-row { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lipa-cards-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .bundle-grid { grid-template-columns: 1fr 1fr; }
}

/* ── FIBER SECTION ── */
.fiber-card {
  background: var(--black); color: var(--white); border-radius: var(--radius-lg);
  padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-bottom: 16px; position: relative; overflow: hidden;
}
.fiber-card::after { content: ''; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(245,214,0,0.1), transparent 70%); pointer-events: none; }
.fiber-speed { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.fiber-speed small { font-size: 1rem; color: var(--gray-400); display: block; font-weight: 400; margin-top: 4px; }
.fiber-info h3 { color: var(--white); margin-bottom: 8px; }
.fiber-info p { color: var(--gray-400); font-size: 0.88rem; }
.fiber-price { text-align: right; }
.fiber-price .price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--yellow); }
.fiber-price .per { font-size: 0.78rem; color: var(--gray-400); }

/* ── AGENT APPLY SECTION ── */
.agent-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.agent-network-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
.agent-network-card h4 { font-size: 1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.agent-network-card ul { list-style: none; }
.agent-network-card ul li { font-size: 0.85rem; color: var(--gray-600); padding: 5px 0; border-bottom: 1px solid var(--gray-100); display: flex; gap: 8px; }
.agent-network-card ul li::before { content: '•'; color: var(--yellow-dark); font-weight: 700; flex-shrink: 0; }
.cost-badge { background: var(--yellow); color: var(--black); font-weight: 700; font-size: 0.8rem; padding: 3px 10px; border-radius: 100px; }

/* Scroll anchor padding */
section[id] { scroll-margin-top: 80px; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 84px; right: 24px; z-index: 900; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform var(--transition); cursor: pointer; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; }
