/* ═══════════════════════════════════════════════════════════
   WynajemPRO by Bogate Ananasy — Landing Page Styles
   Design: Modern SaaS, dark navy + electric blue + white
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #2563EB;
  --primary-dark:  #1D4ED8;
  --primary-light: #3B82F6;
  --accent:        #06B6D4;
  --navy:          #0F172A;
  --navy-mid:      #1E293B;
  --navy-light:    #334155;
  --slate:         #64748B;
  --slate-light:   #94A3B8;
  --border:        #E2E8F0;
  --bg:            #F8FAFC;
  --white:         #FFFFFF;
  --success:       #10B981;
  --warning:       #F59E0B;
  --danger:        #EF4444;
  --purple:        #8B5CF6;
  --pink:          #EC4899;
  --teal:          #14B8A6;
  --orange:        #F97316;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.08);
  --shadow-xl:  0 40px 100px rgba(0,0,0,.20);

  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Utility ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #93C5FD 0%, #67E8F9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg);
  border-color: var(--slate-light);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: #F0F6FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Section Shared ───────────────────────────────────── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(6,182,212,.1));
  color: var(--primary);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.navbar.scrolled .logo { color: var(--navy); }
.logo-icon { display: flex; align-items: center; }
.logo-text strong { color: var(--primary-light); }
.navbar.scrolled .logo-text strong { color: var(--primary); }
.logo-by { display: block; font-size: 0.45em; opacity: 0.5; font-weight: 700; letter-spacing: 0.5px; text-align: left; margin-top: -4px; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.navbar.scrolled .nav-links a { color: var(--navy-light); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); background: rgba(37,99,235,.06); }
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2563EB, transparent);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #06B6D4, transparent);
  bottom: -100px; left: 10%;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #8B5CF6, transparent);
  top: 40%; left: 40%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #93C5FD;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-actions .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
}

/* ── Dashboard Mockup ─────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.dashboard-mockup {
  background: #1E293B;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.04);
  width: 100%;
  max-width: 560px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #0F172A;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green  { background: #28C840; }
.mockup-url {
  margin-left: 12px;
  font-size: 12px;
  color: #475569;
  background: #1E293B;
  padding: 3px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.06);
}

.mockup-body {
  display: flex;
  height: 380px;
}

.mockup-sidebar {
  width: 140px;
  background: #0F172A;
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 8px;
  flex-shrink: 0;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: #475569;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 2px;
}
.sidebar-item.active {
  background: rgba(37,99,235,.2);
  color: #93C5FD;
}
.sidebar-item:hover:not(.active) {
  background: rgba(255,255,255,.04);
  color: #94A3B8;
}

.mockup-content {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mockup-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.mockup-date {
  font-size: 11px;
  color: #475569;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.kpi {
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kpi-blue   { background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.2); }
.kpi-green  { background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.2); }
.kpi-orange { background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.2); }
.kpi-purple { background: rgba(139,92,246,.15); border: 1px solid rgba(139,92,246,.2); }
.kpi-icon { font-size: 14px; }
.kpi-val { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1; }
.kpi-lbl { font-size: 10px; color: #64748B; }

.mockup-chart { margin-bottom: 12px; }
.chart-label { font-size: 11px; color: #475569; margin-bottom: 8px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
.bar {
  flex: 1;
  background: rgba(37,99,235,.25);
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: background var(--transition);
}
.bar.active { background: var(--primary); }
.bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: #475569;
  white-space: nowrap;
}

.alert-row { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
.alert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
}
.alert-warn {
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2);
  color: #FCD34D;
}
.alert-info {
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.2);
  color: #67E8F9;
}

/* ══════════════════════════════════════════════════════════
   CREDIBILITY SECTION
══════════════════════════════════════════════════════════ */
.credibility-section { background: var(--white); }

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.credibility-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.credibility-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.credibility-card:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.credibility-card:hover::before { opacity: 1; }

.credibility-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.credibility-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

.credibility-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}

.credibility-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

.credibility-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.credibility-author-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.credibility-author p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .credibility-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  .credibility-author { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   FEATURES OVERVIEW
══════════════════════════════════════════════════════════ */
.features-overview { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-blue   { background: rgba(37,99,235,.1);  color: var(--primary); }
.icon-green  { background: rgba(16,185,129,.1); color: var(--success); }
.icon-purple { background: rgba(139,92,246,.1); color: var(--purple); }
.icon-orange { background: rgba(249,115,22,.1); color: var(--orange); }
.icon-teal   { background: rgba(20,184,166,.1); color: var(--teal); }
.icon-pink   { background: rgba(236,72,153,.1); color: var(--pink); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-list { display: flex; flex-direction: column; gap: 6px; }
.feature-list li {
  font-size: 13px;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
}

/* ══════════════════════════════════════════════════════════
   ALL FEATURES — MODULE ROWS
══════════════════════════════════════════════════════════ */
.all-features { background: var(--white); }

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.module-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.module-row:last-child { border-bottom: none; }
.module-row:hover { background: var(--bg); }

.module-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}

.module-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.module-body p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

.module-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  flex-shrink: 0;
  padding-top: 4px;
}
.tag {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   PORTALS SECTION
══════════════════════════════════════════════════════════ */
.portals-section { background: var(--navy); }
.portals-section .section-tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #93C5FD; }
.portals-section .section-title { color: var(--white); }
.portals-section .section-sub { color: #64748B; }

.portals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portal-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.portal-card:hover {
  border-color: rgba(37,99,235,.4);
  box-shadow: 0 20px 60px rgba(37,99,235,.15);
  transform: translateY(-4px);
}

.portal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.portal-icon { font-size: 28px; }
.portal-domain {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  font-family: 'Courier New', monospace;
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.2);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.portal-domain:hover {
  background: rgba(6,182,212,.2);
  border-color: rgba(6,182,212,.4);
}

.portal-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.portal-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 20px;
}

.portal-features { display: flex; flex-direction: column; gap: 8px; }
.pf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94A3B8;
}
.pf-item svg { color: var(--success); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   DOCS SECTION
══════════════════════════════════════════════════════════ */
.docs-section { background: var(--bg); }

.docs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.docs-text .section-title { text-align: left; font-size: clamp(24px, 3vw, 38px); }
.docs-text .section-tag { display: block; text-align: left; }
.docs-text > p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
}

.docs-list { display: flex; flex-direction: column; gap: 16px; }
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.doc-item:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.doc-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.doc-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.doc-item span {
  font-size: 13px;
  color: var(--slate);
}

/* ── PDF Stack Visual ─────────────────────────────────── */
.docs-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-stack {
  position: relative;
  width: 280px;
  height: 360px;
}

.pdf-card {
  position: absolute;
  width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  border: 1px solid var(--border);
}
.pdf-back-2 {
  top: 0; left: 20px;
  transform: rotate(6deg);
  opacity: .5;
  z-index: 1;
}
.pdf-back-1 {
  top: 10px; left: 10px;
  transform: rotate(3deg);
  opacity: .75;
  z-index: 2;
}
.pdf-front {
  top: 20px; left: 0;
  transform: rotate(-1deg);
  z-index: 3;
}

.pdf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.pdf-logo-area {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}
.pdf-badge-area {
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
}
.pdf-header-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 12px;
}
.pdf-section-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
  margin-top: 10px;
}
.pdf-lines { display: flex; flex-direction: column; gap: 5px; }
.pdf-line {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}
.pdf-line.w-100 { width: 100%; }
.pdf-line.w-90  { width: 90%; }
.pdf-line.w-85  { width: 85%; }
.pdf-line.w-80  { width: 80%; }
.pdf-line.w-75  { width: 75%; }
.pdf-line.w-70  { width: 70%; }
.pdf-line.w-65  { width: 65%; }
.pdf-line.w-60  { width: 60%; }
.pdf-line.w-55  { width: 55%; }
.pdf-line.w-40  { width: 40%; }
.pdf-line.w-20  { width: 20%; }

.pdf-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.pdf-sig-area {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 20px;
}
.pdf-sig-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-top: 20px;
}

/* ══════════════════════════════════════════════════════════
   TECH SECTION
══════════════════════════════════════════════════════════ */
.tech-section { background: var(--white); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.tech-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}
.tech-card:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.tech-logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  margin: 0 auto 12px;
  color: var(--white);
}
.tech-laravel { background: linear-gradient(135deg, #FF2D20, #C0392B); }
.tech-mysql   { background: linear-gradient(135deg, #4479A1, #2C5F8A); }
.tech-tailwind{ background: linear-gradient(135deg, #06B6D4, #0891B2); }
.tech-pdf     { background: linear-gradient(135deg, #EF4444, #DC2626); }
.tech-sms     { background: linear-gradient(135deg, #10B981, #059669); }
.tech-ai      { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }

.tech-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.tech-desc {
  font-size: 11px;
  color: var(--slate);
  line-height: 1.5;
}

.tech-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
}
.tech-note svg { color: var(--success); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-section { background: var(--bg); }

.cta-box {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.cta-bg-shape {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.2), transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.tag-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #93C5FD; }

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--white);
  margin: 16px 0;
}
.cta-sub {
  font-size: 18px;
  color: #64748B;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748B;
}
.cta-features svg { color: var(--success); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: 14px; color: #475569; line-height: 1.65; max-width: 280px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: #475569;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom span {
  font-size: 13px;
  color: #334155;
}

/* ══════════════════════════════════════════════════════════
   SPOTLIGHT SECTIONS
══════════════════════════════════════════════════════════ */
.spotlight-section { background: var(--white); }
.spotlight-alt { background: var(--bg); }

.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-inner-rev .spotlight-text { order: 2; }
.spotlight-inner-rev .spotlight-visual { order: 1; }

.spotlight-text .section-tag { display: block; text-align: left; }
.spotlight-text .section-title { text-align: left; font-size: clamp(24px, 3.2vw, 40px); }

.spotlight-lead {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  margin: 20px 0 32px;
}

.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spotlight-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.spotlight-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.2);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.spotlight-check::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 5px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translate(-50%, -60%) rotate(-45deg);
}
.spotlight-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.spotlight-list span {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6;
}

.spotlight-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Config Mockup ────────────────────────────────────── */
.config-mockup {
  background: #1E293B;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 440px;
}

.config-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: #0F172A;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.config-mockup-url {
  margin-left: 10px;
  font-size: 11px;
  color: #94A3B8;
  background: rgba(255,255,255,.06);
  padding: 3px 10px;
  border-radius: 100px;
}
.config-mockup-body { padding: 18px 20px; }

.config-section-title {
  font-size: 10px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.config-item {
  display: grid;
  grid-template-columns: 8px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
  transition: background var(--transition);
}
.config-item-highlight {
  background: rgba(249,115,22,.05);
  border-color: rgba(249,115,22,.15);
}

.config-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.config-indicator.green  { background: var(--success); box-shadow: 0 0 4px var(--success); }
.config-indicator.blue   { background: var(--primary-light); }
.config-indicator.cyan   { background: var(--accent); }
.config-indicator.orange { background: var(--orange); box-shadow: 0 0 4px var(--orange); }
.config-indicator.yellow { background: var(--warning); }

.config-name {
  font-size: 12px;
  color: #CBD5E1;
  font-weight: 500;
}
.config-type {
  font-size: 10px;
  color: #475569;
  background: rgba(255,255,255,.06);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.config-type-special {
  color: var(--orange);
  background: rgba(249,115,22,.12);
}
.config-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.config-add-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  margin: 8px 0;
  border: 1px dashed rgba(37,99,235,.3);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--primary-light);
  cursor: pointer;
}

.config-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.config-total-label { font-size: 11px; color: #93C5FD; }
.config-total-val { font-size: 15px; font-weight: 800; color: var(--white); }

.config-footnote {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #475569;
  margin-top: 10px;
  padding: 6px 8px;
  background: rgba(255,255,255,.02);
  border-radius: var(--radius-sm);
}

/* ── AI Flow Mockup ───────────────────────────────────── */
.ai-flow-mockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 400px;
}

.ai-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
}
.ai-card-input { border-top: 3px solid var(--slate-light); }
.ai-card-output { border-top: 3px solid var(--success); }

.ai-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}
.ai-card-label-success { color: var(--success); }

.ai-doc-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.ai-doc-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 8px;
}
.ai-doc-lines { margin-bottom: 8px; }
.ai-doc-line {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 5px;
}
.ai-doc-table { margin-bottom: 8px; }
.ai-doc-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.ai-doc-cell {
  height: 5px;
  background: var(--border);
  border-radius: 2px;
}
.ai-doc-amount-line {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  text-align: right;
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
}

.ai-processing-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ai-processing-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,.1);
  border: 1px solid rgba(139,92,246,.2);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}
.ai-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 1.5s infinite;
}
.ai-arrow-down { color: var(--slate-light); }

.ai-result-fields { display: flex; flex-direction: column; gap: 8px; }
.ai-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--bg);
}
.ai-result-row:last-child { border-bottom: none; }
.ai-result-key {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: .3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ai-result-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-align: right;
}
.ai-result-highlight { color: var(--primary); font-weight: 800; }
.ai-result-cat {
  background: rgba(249,115,22,.1);
  color: var(--orange);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 12px;
}

/* ── Comms Mockup ─────────────────────────────────────── */
.comms-mockup {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  max-width: 520px;
}

.phone-mockup-mini {
  background: #1E293B;
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 22px;
  overflow: hidden;
  width: 186px;
  flex-shrink: 0;
  box-shadow: var(--shadow-xl);
}
.phone-top-bar {
  background: #0F172A;
  padding: 8px 0 6px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.phone-notch-pill {
  width: 44px; height: 8px;
  background: #1E293B;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.08);
}
.phone-screen-content { padding: 10px 10px 12px; }
.phone-app-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.phone-app-name { font-size: 10px; font-weight: 700; color: var(--white); }
.phone-pin-tag {
  font-size: 9px;
  background: rgba(37,99,235,.2);
  color: #93C5FD;
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,.3);
}

.phone-group-label {
  font-size: 9px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin: 9px 0 5px;
}
.phone-meter-entry {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
  padding: 4px 5px;
  background: rgba(255,255,255,.03);
  border-radius: 5px;
}
.phone-meter-emoji { font-size: 10px; }
.phone-meter-lbl { font-size: 9px; color: #94A3B8; flex: 1; }
.phone-meter-val {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.2);
  padding: 2px 6px;
  border-radius: 4px;
}

.phone-bill-entry {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #94A3B8;
  margin-bottom: 3px;
  padding: 4px 5px;
  background: rgba(255,255,255,.03);
  border-radius: 5px;
}
.phone-bill-month { flex: 1; }
.phone-bill-sum { font-weight: 700; color: var(--white); }
.phone-bill-tag {
  font-size: 8px;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
}
.phone-bill-tag.paid { background: rgba(16,185,129,.15); color: var(--success); }
.phone-bill-tag.pending { background: rgba(245,158,11,.15); color: var(--warning); }

.notif-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.notif-card-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.notif-card-item.sms { border-left: 3px solid var(--success); }
.notif-card-item.email { border-left: 3px solid var(--primary); }
.notif-card-item.wa { border-left: 3px solid #25D366; }

.notif-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.notif-channel-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.sms-badge { background: rgba(16,185,129,.1); color: var(--success); }
.email-badge { background: rgba(37,99,235,.1); color: var(--primary); }
.wa-badge { background: rgba(37,211,102,.1); color: #22C55E; }

.notif-trigger {
  font-size: 10px;
  color: var(--slate-light);
  margin-left: auto;
}
.notif-msg {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
}

/* ── Listings Mockup ──────────────────────────────────── */
.listings-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.listing-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.listing-photo-bar {
  height: 130px;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 40%, #2563EB 70%, #06B6D4 100%);
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.listing-photo-chip {
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.listing-preview-body { padding: 16px; }
.listing-preview-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.listing-preview-addr {
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 10px;
}
.listing-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}
.listing-price-main { font-size: 22px; font-weight: 900; color: var(--primary); }
.listing-price-unit { font-size: 13px; color: var(--slate); }
.listing-price-media { font-size: 11px; color: var(--slate-light); margin-left: auto; }

.listing-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.listing-tag {
  font-size: 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 9px;
  color: var(--slate);
}

.listing-actions-row { display: flex; gap: 8px; }
.listing-btn-olx {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
}
.listing-btn-site {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,.1);
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16,185,129,.25);
}

.listing-auto-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
}
.listing-auto-badge svg { color: var(--success); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: center; }
  .dashboard-mockup { max-width: 480px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .portals-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .docs-inner { grid-template-columns: 1fr; gap: 48px; }
  .docs-visual { order: -1; }
  .module-row { grid-template-columns: 48px 1fr; }
  .module-tags { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .spotlight-inner-rev .spotlight-text { order: 0; }
  .spotlight-inner-rev .spotlight-visual { order: 0; }
  .comms-mockup { flex-direction: column; align-items: center; max-width: 380px; margin: 0 auto; }
  .phone-mockup-mini { width: 220px; }
  .config-mockup, .ai-flow-mockup, .listings-mockup { max-width: 480px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(15,23,42,.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open a { color: var(--white); padding: 12px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 48px 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .module-row { grid-template-columns: 1fr; gap: 8px; }
  .module-num { font-size: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .dashboard-mockup { border-radius: var(--radius-lg); }
  .mockup-sidebar { width: 110px; }
  .sidebar-item { font-size: 10px; gap: 5px; }
}
