/* =============================================
   RADARCRUSH — Design System & Global Styles
   Mobile-First · Clean · Minimal
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ---- Design Tokens ---- */
:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #09090B;
  --secondary: #71717A;
  --brand: #FD3A25;
  --brand-dark: #c4200e;
  --brand-light: #fff0ee;
  --brand-mid: #fde8e5;
  --text: #3b3b3b;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-hero: #fffcfc;
  --border: #e4e4e7;
  --border-light: #f0f0f2;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.10);
  --shadow-brand: 0 12px 40px rgba(253,58,37,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 999px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-bold-titles: 'Alfa Slab One', serif;
  --space-1: 4px; --space-2: 8px; --space-3: 16px; --space-4: 24px;
  --space-5: 32px; --space-6: 48px; --space-7: 64px; --space-8: 96px; --space-9: 128px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --navbar-h: 68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--primary); line-height: 1.12; font-weight: 900; }
h1 { font-size: 2.3rem; }
h2 { font-size: 1.85rem;  }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }
p { font-size: 1rem; color: var(--secondary); line-height: 1.75; }

.font-climate{
  font-family: var(--font-bold-titles);
  text-transform: uppercase;
  font-weight: 100;
} 

@media (min-width: 576px) { h1 { font-size: 2.9rem; } h2 { font-size: 2.3rem; } }
@media (min-width: 768px) { h1 { font-size: 3.6rem; } h2 { font-size: 2.75rem; } }
@media (min-width: 992px) { h1 { font-size: clamp(3rem,4.8vw,4.8rem); } h2 { font-size: clamp(2.2rem,3.2vw,3.4rem); } }

.italic-accent { font-family: var(--font-accent); font-style: italic; color: var(--brand); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar-custom {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 var(--space-3); height: var(--navbar-h);
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.navbar-custom.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.navbar-logo {
  font-family: var(--font-display); font-weight: 900; font-size: 1.4rem;
  color: var(--primary); letter-spacing: -0.5px; line-height: 1;
}
.navbar-logo span { color: var(--brand); }
.navbar-links { display: none; gap: var(--space-5); list-style: none; align-items: center; }
.navbar-links a { font-size: 0.88rem; font-weight: 500; color: var(--secondary); transition: var(--transition); }
.navbar-links a:hover { color: var(--brand); }
.navbar-cta {
  background: var(--brand) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.85rem !important;
}
.navbar-cta:hover { background: var(--brand-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-brand); }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px; border-radius: var(--radius-sm);
}
.hamburger span { display: block; width: 23px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--navbar-h); left: 0; right: 0;
  background: var(--white); padding: var(--space-2) var(--space-4) var(--space-4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08); z-index: 999;
  flex-direction: column; gap: 2px;
  border-top: 1px solid var(--border-light);
}
.mobile-menu.open { display: flex; animation: slideDown 0.22s ease; }
@keyframes slideDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.mobile-menu a { font-weight: 500; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--border-light); font-size: 0.92rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--brand); }

@media (min-width: 992px) {
  .navbar-custom { padding: 0 48px; }
  .navbar-links { display: flex; }
  .hamburger { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.btn-secondary { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-secondary:hover { background: var(--brand); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--primary); }
.btn-white { background: var(--white); color: var(--brand); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn:disabled, .btn-disabled { background: var(--border); color: var(--secondary); border-color: var(--border); cursor: not-allowed; pointer-events: none; }
.btn-lg { padding: 15px 38px; font-size: 0.98rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* ============================================
   HERO — Clean Light
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #fffcfc;
  padding-top: var(--navbar-h);
}
/* Soft radial glow top-right */
.hero-glow-tr {
  position: absolute; top: -80px; right: -60px;
  width: min(580px, 90vw); height: min(580px, 90vw);
  background: radial-gradient(ellipse at 70% 30%, rgba(253,58,37,0.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
/* Soft glow bottom-left */
.hero-glow-bl {
  position: absolute; bottom: -60px; left: -40px;
  width: min(400px, 70vw); height: min(400px, 70vw);
  background: radial-gradient(ellipse at 30% 70%, rgba(253,58,37,0.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
/* Dot grid */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(253,58,37,0.13) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 75% 75% at 60% 45%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 60% 45%, black 30%, transparent 100%);
  opacity: 0.35;
}
/* Decorative rings */
.hero-ring {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  border: 1px solid rgba(253,58,37,0.1);
}
.hero-ring-1 { width: 280px; height: 280px; top: 10%; right: 3%; }
.hero-ring-2 { width: 200px; height: 200px; top: calc(10% + 40px); right: calc(3% + 40px); border-color: rgba(253,58,37,0.06); }

@media (min-width: 768px) {
  .hero-ring-1 { width: 380px; height: 380px; }
  .hero-ring-2 { width: 280px; height: 280px; top: calc(10% + 50px); right: calc(3% + 50px); }
}

.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: var(--space-5) 0 var(--space-6);
}
@media (min-width: 992px) { .hero-content { padding: var(--space-7) 0 var(--space-8); } }

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-light); border: 1px solid rgba(253,58,37,0.18);
  color: var(--brand); padding: 5px 14px; border-radius: var(--radius-full);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.hero-pulse {
  width: 5px; height: 5px; background: var(--brand);
  border-radius: 50%; flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.8);opacity:0.5;} }

.hero h1 { color: var(--primary); margin-bottom: var(--space-3); max-width: 580px; }
.hero h1 em { font-family: var(--font-accent); font-style: italic; color: var(--brand); font-size: 1.06em; }

.hero-sub {
  font-size: 0.98rem; color: var(--secondary);
  max-width: 400px; margin-bottom: var(--space-4); line-height: 1.82;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.05rem; max-width: 430px; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }

/* Stats */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
  margin-top: var(--space-2);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--primary); line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.hero-stat-divider { width: 1px; background: var(--border); align-self: stretch; display: none; }
@media (min-width: 400px) { .hero-stat-divider { display: block; } }

/* ============================================
   FORM CARD — Glass blur
   ============================================ */
.form-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid rgba(253,58,37,0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.8),
    0 20px 60px rgba(0,0,0,0.05),
    0 4px 20px rgba(253,58,37,0.06);
  position: relative; z-index: 5;
  transition: var(--transition);
}
.form-card:hover {
  border-color: rgba(253,58,37,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.9), 0 24px 72px rgba(0,0,0,0.07), 0 6px 24px rgba(253,58,37,0.1);
}
@media (min-width: 576px) { .form-card { padding: var(--space-5); } }

.form-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-2); }
.form-card-icon {
  width: 36px; height: 36px; background: var(--brand); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.95rem; flex-shrink: 0;
}
.form-card-title { font-family: var(--font-display); font-size: 1.45rem; color: var(--primary); font-weight: 900; line-height: 1; }
.form-card-sub { font-size: 0.82rem; color: var(--secondary); margin-bottom: var(--space-3); }

.form-group { margin-bottom: var(--space-3); }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--primary); margin-bottom: 5px; letter-spacing: 0.2px; }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.88rem; color: var(--primary);
  background: rgba(255,255,255,0.85);
  transition: var(--transition); outline: none; -webkit-appearance: none;
}
.form-control:focus { border-color: var(--brand); background: var(--white); box-shadow: 0 0 0 3px rgba(253,58,37,0.09); }
.form-control.is-error { border-color: #ef4444; }
.form-control.is-success { border-color: #22c55e; }
.form-control::placeholder { color: #bbb; }
.input-with-icon { position: relative; }
.input-with-icon .form-control { padding-left: 38px; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--secondary); font-size: 0.85rem; pointer-events: none; }
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; cursor: pointer;
}

/* Radio — no native icons, pure text pill */
.radio-group { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.radio-option {
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.82rem; font-weight: 500; color: var(--text);
  padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition); user-select: none; -webkit-tap-highlight-color: transparent;
  flex: 1; min-width: 72px; text-align: center;
}
.radio-option:hover { border-color: var(--brand); color: var(--brand); }
.radio-option input[type="radio"] { display: none; }
.radio-option.selected { background: var(--brand-light); border-color: var(--brand); color: var(--brand); font-weight: 600; }

.form-check-term {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.8rem; color: var(--secondary); cursor: pointer; line-height: 1.5;
}
.form-check-term input[type="checkbox"] { accent-color: var(--brand); margin-top: 1px; flex-shrink: 0; width: 14px; height: 14px; cursor: pointer; }

.form-error-msg { font-size: 0.76rem; color: #ef4444; margin-top: 4px; display: none; }

/* ============================================
   TICKER BAND
   ============================================ */
.ticker-section { position: relative; z-index: 10; overflow: hidden; }
.ticker-band {
  padding: 13px 0; overflow: hidden;
  white-space: nowrap; display: flex; align-items: center;
}
.ticker-band-dark { background: var(--primary); }
.ticker-band-red { background: var(--brand); }
.ticker-track {
  display: inline-flex; animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}
.ticker-band-red .ticker-track { animation-direction: reverse; animation-duration: 22s; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 28px; font-size: 0.73rem; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.88);
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.ticker-band-red .ticker-dot { background: rgba(255,255,255,0.5); }
@keyframes ticker-scroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ============================================
   SECTIONS COMMONS
   ============================================ */
.section { padding: var(--space-6) 0; }
@media (min-width: 768px) { .section { padding: var(--space-8) 0; } }
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-light); color: var(--brand);
  padding: 4px 13px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: var(--space-3);
}
.section-label::before { content:''; width:5px; height:5px; background:var(--brand); border-radius:50%; flex-shrink:0; }
.section-title { font-size: clamp(1.8rem,3.2vw,3.1rem); color: var(--primary); line-height: 1.15; margin-bottom: var(--space-3); }
.section-sub { font-size: 0.98rem; color: var(--secondary); max-width: 500px; line-height: 1.8; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: var(--bg); }
.step-card { position: relative; z-index: 1; text-align: center; padding: var(--space-3); }
.step-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3); position: relative;
  background: var(--white); box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-light); transition: var(--transition);
}
.step-card:hover .step-icon-wrap { background: var(--brand); border-color: var(--brand); transform: scale(1.07) translateY(-3px); box-shadow: var(--shadow-brand); }
.step-icon-wrap i { color: var(--brand); font-size: 1.3rem; transition: var(--transition); }
.step-card:hover .step-icon-wrap i { color: white; }
.step-number {
  position: absolute; top: -3px; right: -3px;
  width: 20px; height: 20px; background: var(--brand); color: var(--white);
  border-radius: 50%; font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-body);
}
.step-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--primary); margin-bottom: 7px; }
.step-text { font-size: 0.85rem; color: var(--secondary); max-width: 190px; margin: 0 auto; }
.steps-line {
  display: none; position: absolute; top: 44px; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,58,37,0.2), var(--brand), rgba(253,58,37,0.2), transparent);
  z-index: 0;
}
@media (min-width: 992px) { .steps-line { display: block; } }

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section { background: var(--bg-alt); }
.benefit-card {
  background: var(--white); border-radius: var(--radius-lg); padding: var(--space-4);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
  transition: var(--transition); height: 100%;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(253,58,37,0.18); }
.benefit-icon-wrap {
  width: 46px; height: 46px; background: var(--brand-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3);
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon-wrap { background: var(--brand); }
.benefit-icon-wrap i { color: var(--brand); font-size: 1.05rem; transition: var(--transition); }
.benefit-card:hover .benefit-icon-wrap i { color: white; }
.benefit-title { font-family: var(--font-display); font-size: 1rem; color: var(--primary); margin-bottom: 7px; }
.benefit-text { font-size: 0.85rem; color: var(--secondary); line-height: 1.7; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--primary); overflow: hidden; }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-sub { color: rgba(255,255,255,0.5); }
.testimonials-track-wrap { overflow: hidden; position: relative; }
.testimonials-track-wrap::before, .testimonials-track-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none;
}
@media (min-width:768px) { .testimonials-track-wrap::before,.testimonials-track-wrap::after{width:120px;} }
.testimonials-track-wrap::before{left:0;background:linear-gradient(to right,var(--primary),transparent);}
.testimonials-track-wrap::after{right:0;background:linear-gradient(to left,var(--primary),transparent);}
.testimonials-track { display:flex; gap:var(--space-3); width:max-content; animation:scroll-track 32s linear infinite; }
.testimonials-track:hover{animation-play-state:paused;}
@keyframes scroll-track{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.testimonial-card {
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg); padding:var(--space-4); width:290px; flex-shrink:0; transition:var(--transition);
}
@media (min-width:576px){.testimonial-card{width:310px;}}
.testimonial-card:hover{background:rgba(255,255,255,0.09);transform:translateY(-3px);}
.testimonial-stars{color:#fbbf24;font-size:0.76rem;margin-bottom:var(--space-2);letter-spacing:2px;}
.testimonial-text{font-size:0.88rem;color:rgba(255,255,255,0.7);line-height:1.75;margin-bottom:var(--space-3);font-style:italic;}
.testimonial-author{display:flex;align-items:center;gap:11px;}
.testimonial-avatar-placeholder {
  width:38px;height:38px;border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  display:flex;align-items:center;justify-content:center;
  font-weight:700;color:var(--white);font-size:0.78rem;flex-shrink:0;
}
.testimonial-name{font-weight:600;color:var(--white);font-size:0.85rem;}
.testimonial-city{font-size:0.73rem;color:rgba(255,255,255,0.4);}

/* ============================================
   CTA
   ============================================ */
.cta-section { background:var(--brand); position:relative; overflow:hidden; }
.cta-section::before {
  content:''; position:absolute; inset:0;
  background-image: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'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .section-title{color:var(--white);}
.cta-section p{color:rgba(255,255,255,0.82);}

/* ============================================
   FOOTER
   ============================================ */
.footer{background:var(--primary);padding:var(--space-7) 0 var(--space-4);}
@media(min-width:768px){.footer{padding:var(--space-8) 0 var(--space-4);}}
.footer-logo{font-family:var(--font-display);font-size:1.6rem;font-weight:900;color:var(--white);margin-bottom:var(--space-3);letter-spacing:-0.5px;}
.footer-logo span{color:var(--brand);}
.footer-desc{color:rgba(255,255,255,0.4);font-size:0.86rem;max-width:250px;line-height:1.8;}
.footer-title{font-size:0.7rem;font-weight:700;color:rgba(255,255,255,0.3);text-transform:uppercase;letter-spacing:1.5px;margin-bottom:var(--space-3);}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px;}
.footer-links a{color:rgba(255,255,255,0.5);font-size:0.86rem;transition:var(--transition);}
.footer-links a:hover{color:var(--brand);padding-left:4px;}
.footer-social{display:flex;gap:var(--space-2);margin-top:var(--space-3);flex-wrap:wrap;}
.social-btn{
  width:35px;height:35px;border-radius:50%;background:rgba(255,255,255,0.07);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.5);font-size:0.82rem;transition:var(--transition);
  border:1px solid rgba(255,255,255,0.08);
}
.social-btn:hover{background:var(--brand);color:var(--white);border-color:var(--brand);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.07);margin-top:var(--space-5);
  padding-top:var(--space-4);display:flex;justify-content:space-between;
  align-items:center;flex-wrap:wrap;gap:var(--space-2);
}
.footer-bottom p{color:rgba(255,255,255,0.25);font-size:0.8rem;margin:0;}

/* ============================================
   BADGES
   ============================================ */
.badge{display:inline-flex;align-items:center;gap:5px;padding:4px 11px;border-radius:var(--radius-full);font-size:0.73rem;font-weight:600;letter-spacing:0.3px;}
.badge-brand{background:var(--brand-light);color:var(--brand);}
.badge-dark{background:var(--primary);color:var(--white);}
.badge-outline{background:transparent;border:1.5px solid var(--border);color:var(--secondary);}
.badge-success{background:#dcfce7;color:#16a34a;}
.badge-warning{background:#fef9c3;color:#ca8a04;}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp{from{opacity:0;transform:translateY(26px);}to{opacity:1;transform:translateY(0);}}
.fade-in-up{opacity:0;transform:translateY(26px);transition:opacity 0.6s ease,transform 0.6s ease;}
.fade-in-up.visible{opacity:1;transform:translateY(0);}

/* ============================================
   DESIGN SYSTEM PAGE
   ============================================ */
.ds-nav{position:fixed;top:0;left:0;right:0;z-index:100;background:var(--white);border-bottom:1px solid var(--border);height:60px;display:flex;align-items:center;padding:0 var(--space-4);justify-content:space-between;}
.ds-nav-logo{font-family:var(--font-display);font-weight:900;font-size:1.3rem;color:var(--primary);}
.ds-nav-logo span{color:var(--brand);}
.ds-sidebar{position:fixed;left:0;top:60px;bottom:0;width:200px;background:var(--white);border-right:1px solid var(--border);overflow-y:auto;padding:18px 0;}
.ds-sidebar-link{display:block;padding:8px 18px;font-size:0.83rem;color:var(--secondary);font-weight:500;transition:all .2s;border-left:2px solid transparent;}
.ds-sidebar-link:hover,.ds-sidebar-link.active{color:var(--brand);border-left-color:var(--brand);background:var(--brand-light);}
.ds-main{margin-left:0;padding-top:60px;}
@media(min-width:768px){.ds-main{margin-left:200px;}.ds-sidebar{display:block !important;}}
.ds-section{padding:44px 0;border-bottom:1px solid var(--border);}
.ds-section:last-child{border-bottom:none;}
.ds-section-title{font-family:var(--font-display);font-size:1.55rem;margin-bottom:var(--space-4);padding-bottom:var(--space-2);border-bottom:2px solid var(--brand);display:inline-block;}
.ds-sample-box{background:var(--bg-alt);border-radius:var(--radius-md);padding:var(--space-4);border:1px solid var(--border);}
.space-swatch{background:var(--brand-light);height:22px;border-radius:4px;display:flex;align-items:center;justify-content:flex-end;padding-right:8px;font-size:0.7rem;color:var(--brand);font-weight:600;}
.grid-demo-cell{background:var(--brand-light);border:1px solid rgba(253,58,37,0.2);border-radius:var(--radius-sm);padding:var(--space-3);text-align:center;font-size:0.76rem;color:var(--brand);font-weight:600;}
code{background:var(--bg-alt);color:var(--brand);padding:2px 7px;border-radius:4px;font-size:0.82em;}

/* Modal */
#successModal{display:none;position:fixed;inset:0;background:rgba(9,9,11,0.6);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);z-index:9999;align-items:center;justify-content:center;padding:var(--space-3);}
#successModal.open{display:flex;}
.modal-card{background:var(--white);border-radius:var(--radius-lg);padding:36px 28px;max-width:400px;width:100%;text-align:center;animation:fadeInUp 0.3s ease forwards;box-shadow:var(--shadow-lg);}
.modal-icon{font-size:2.8rem;margin-bottom:12px;display:block;}
.modal-title{font-family:var(--font-display);font-size:1.6rem;color:var(--primary);margin-bottom:9px;}
.modal-text{color:var(--secondary);margin-bottom:22px;font-size:0.9rem;}
@keyframes shake{0%,100%{transform:translateX(0);}20%,60%{transform:translateX(-5px);}40%,80%{transform:translateX(5px);}}
.shake{animation:shake 0.35s ease;}

/* Responsive misc */
@media(max-width:575px){
  .section{padding:var(--space-5) 0;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .cta-section .d-flex{flex-direction:column;align-items:stretch;}
  .hero-content {
      padding: 30px;
  }
}
::-webkit-scrollbar{width:5px;}
::-webkit-scrollbar-track{background:var(--bg);}
::-webkit-scrollbar-thumb{background:var(--brand);border-radius:3px;}
