/* ========================================
   DOCUMENT WALLAH — COMING SOON
   Premium Landing Page Styles
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0A3D62;
  --primary-light: #1a5276;
  --primary-dark: #061e30;
  --secondary: #ffffff;
  --accent: #FFC300;
  --accent-soft: rgba(255,195,0,0.15);
  --accent-glow: rgba(255,195,0,0.3);
  --grey-100: #f8f9fb;
  --grey-200: #eef1f5;
  --grey-400: #9eafc2;
  --grey-600: #5a6a7e;
  --text-primary: #0A3D62;
  --text-secondary: #5a6a7e;
  --text-light: #9eafc2;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --shadow-sm: 0 2px 8px rgba(10,61,98,0.08);
  --shadow-md: 0 8px 32px rgba(10,61,98,0.12);
  --shadow-lg: 0 24px 64px rgba(10,61,98,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  font-family: var(--font-body);
  background: #f0f4f8;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* === CANVAS === */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* === GRADIENT ORBS === */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orb-float 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,61,98,0.18) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,195,0,0.08) 0%, transparent 70%);
  top: 30%; right: -150px;
  animation-delay: -4s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,61,98,0.12) 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -8s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(20px) scale(0.97); }
}

/* === SECTION LAYOUT === */
section {
  position: relative;
  z-index: 1;
}

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

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, #0A3D62 0%, #1a7fbf 50%, #0A3D62 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
  to { background-position: 200% center; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, #061e30 0%, #0a3d62 45%, #0d4f80 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #f0f4f8);
  z-index: 2;
}

/* === NAVBAR === */
.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,195,0,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.logo-icon:hover {
  transform: scale(1.05);
  border-color: rgba(255,195,0,0.5);
}

.logo-icon svg { width: 100%; height: 100%; }
.logo-icon.sm { width: 40px; height: 40px; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}

.brand-domain {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255,195,0,0.1);
  border: 1px solid rgba(255,195,0,0.25);
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

/* === HERO CONTENT === */
.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 100px;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 20px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: white;
  margin-bottom: 28px;
  max-width: 900px;
  letter-spacing: -0.025em;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #FFC300 0%, #FFE066 40%, #FFC300 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s linear infinite;
}

.accent-word {
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.hero-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.service-tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
}

.divider {
  color: var(--accent);
  opacity: 0.6;
}

/* === EMAIL FORM === */
.email-form {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 32px;
}

.email-form.big {
  max-width: 580px;
}

.input-group {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group:focus-within {
  border-color: rgba(255,195,0,0.4);
  box-shadow: 0 0 0 3px rgba(255,195,0,0.1);
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: white;
}

.input-group input::placeholder {
  color: rgba(255,255,255,0.4);
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.cta-btn svg {
  width: 16px; height: 16px;
  transition: transform 0.25s var(--ease-out);
}

.cta-btn:hover {
  background: #ffd740;
  transform: none;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

.cta-btn:active {
  transform: scale(0.97);
}

.cta-btn.glow {
  box-shadow: 0 0 24px rgba(255,195,0,0.4);
  animation: btn-glow 2.5s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,195,0,0.35); }
  50% { box-shadow: 0 0 40px rgba(255,195,0,0.55); }
}

.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  text-align: center;
}

.form-note.light {
  color: rgba(255,255,255,0.5);
}

/* === HERO STATS === */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 40px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,195,0,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===================================
   COUNTDOWN SECTION
   =================================== */
.countdown-section {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.countdown-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.countdown-card {
  background: linear-gradient(145deg, #f8f9fb, white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  min-width: 130px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.countdown-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.count-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.count-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
}

.count-progress {
  height: 3px;
  background: var(--grey-200);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}

.count-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 1s linear;
}

.count-sep {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
  background: var(--grey-100);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(10,61,98,0.14);
  border-color: rgba(10,61,98,0.15);
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,195,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-icon-wrap {
  width: 64px; height: 64px;
  margin-bottom: 20px;
  position: relative;
}

.service-icon {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 12px rgba(10,61,98,0.08));
}

.service-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,195,0,0.12);
  border: 1px solid rgba(255,195,0,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(10,61,98,0.06);
  border: 1px solid rgba(10,61,98,0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

/* ===================================
   TRUST SECTION
   =================================== */
.trust-section {
  background: white;
  padding: 100px 0;
}

.trust-header {
  text-align: center;
  margin-bottom: 64px;
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.pillar {
  text-align: center;
  padding: 40px 28px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: white;
}

.pillar-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
}

.pillar-icon svg { width: 100%; height: 100%; }

.pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === TRUST COUNTER === */
.trust-counter {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.trust-counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trust-counter-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 48px 40px;
  gap: 24px;
  position: relative;
}

.tc-item {
  text-align: center;
}

.tc-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.tc-plus {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255,195,0,0.6);
  margin-left: 2px;
}

.tc-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  text-transform: uppercase;
}

.tc-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ===================================
   NOTIFY SECTION
   =================================== */
.notify-section {
  background: linear-gradient(160deg, #061e30 0%, #0A3D62 60%, #0d4f80 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.notify-section::before {
  content: '';
  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;
}


.sp-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  margin-left: -12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.1);
  z-index: 2;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notify-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,195,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.notify-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notify-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,195,0,0.1);
  border: 1px solid rgba(255,195,0,0.25);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.notify-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.gradient-text-light {
  background: linear-gradient(135deg, #FFC300 0%, #FFE066 50%, #FFC300 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s linear infinite;
}

.notify-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* === SOCIAL PROOF === */
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.sp-avatars {
  display: flex;
}

.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.2);
  margin-left: -10px;
  first-child { margin-left: 0; }
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-avatars .avatar:first-child { margin-left: 0; }

.social-proof p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--primary-dark);
  padding: 48px 0 32px;
}

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

.footer-brand {
  margin-bottom: 32px;
}

.logo-mark.small .brand-name {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.powered {
  color: rgba(255,255,255,0.35) !important;
}

.powered strong {
  color: var(--accent);
}

/* ===================================
   TOAST NOTIFICATION
   =================================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(10,61,98,0.3);
  border: 1px solid rgba(255,195,0,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
  opacity: 0;
  white-space: nowrap;
}

.toast svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 24px;
  }

  .nav-badge span:not(.pulse-dot) {
    display: none;
  }

  .nav-badge {
    padding: 8px 12px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .countdown-card {
    padding: 20px 24px;
    min-width: 90px;
  }

  .count-num {
    font-size: 2.2rem;
  }

  .trust-counter-inner {
    padding: 32px 24px;
  }

  .tc-sep {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .input-group {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .cta-btn {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    justify-content: center;
    padding: 16px;
  }

  .social-proof {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    gap: 6px;
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .countdown-grid {
    gap: 8px;
  }

  .count-sep {
    font-size: 1.8rem;
  }
}

/* === FLOATING ICONS (decorative) === */
.float-icon {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  animation: float-drift 8s ease-in-out infinite;
}

@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(3deg); }
  75% { transform: translateY(12px) rotate(-2deg); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(10,61,98,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(10,61,98,0.4); }
