/* ==========================================================================
   Jofti — Premium Modern Landing Page Stylesheet
   ========================================================================== */

:root {
  --bg-dark: #070814;
  --bg-surface: #0e1124;
  --bg-card: rgba(19, 23, 44, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-glow: rgba(236, 72, 153, 0.3);

  --primary: #ec4899;
  --primary-hover: #db2777;
  --primary-glow: rgba(236, 72, 153, 0.35);
  
  --secondary: #8b5cf6;
  --secondary-hover: #7c3aed;

  --accent-cyan: #06b6d4;
  --accent-amber: #f59e0b;
  --accent-emerald: #10b981;

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

section[id] {
  scroll-margin-top: 96px;
}

/* ==========================================================================
   Ambient Background Glow Elements
   ========================================================================== */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.orb-1 {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, #ec4899 0%, rgba(139, 92, 246, 0.3) 70%, transparent 100%);
}

.orb-2 {
  top: 40%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, rgba(6, 182, 212, 0.2) 70%, transparent 100%);
}

.orb-3 {
  bottom: 10%;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #ec4899 0%, rgba(244, 63, 94, 0.2) 70%, transparent 100%);
}

/* ==========================================================================
   Typography & Helpers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.max-w-lg {
  max-width: 860px;
}

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

.text-pink {
  color: var(--primary);
}

.gradient-text {
  background: linear-gradient(135deg, #ff60ad 0%, #ec4899 40%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  touch-action: manipulation;
}

.btn:focus-visible,
.mobile-toggle:focus-visible,
.mobile-nav-link:focus-visible,
.faq-trigger:focus-visible {
  outline: 3px solid rgba(255, 117, 186, 0.9);
  outline-offset: 3px;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

.btn .icon-sm {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}

.btn-glass:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 8, 20, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(255, 79, 165, 0.45));
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo-img {
  transform: scale(1.08) rotate(-3deg);
}

.footer-logo-img {
  width: 32px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 79, 165, 0.35));
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-dot {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 11px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  touch-action: manipulation;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  min-height: calc(90vh - 76px);
}

.chip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffa0d1;
  margin-bottom: 24px;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ec4899;
  box-shadow: 0 0 10px #ec4899;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: 3.8rem;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--bg-surface);
}

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

.proof-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.proof-text strong {
  color: #fff;
}

.proof-text .stars {
  color: #fbbf24;
  font-size: 0.85rem;
}

.proof-text .stars span {
  color: var(--text-muted);
  margin-left: 4px;
}

/* ==========================================================================
   Hero Visual / Phone Mockup
   ========================================================================== */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.visual-card-wrapper {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.phone-frame {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(236, 72, 153, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.12);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.phone-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge-match {
  top: 10%;
  left: -30px;
  animation-delay: 0s;
}

.badge-shield {
  bottom: 25%;
  right: -30px;
  animation-delay: 1.5s;
}

.badge-distance {
  bottom: 8%;
  left: -20px;
  animation-delay: 2.5s;
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-body strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.badge-body span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Metrics Strip
   ========================================================================== */
.metrics-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(14, 17, 36, 0.4);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-val {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.metric-lbl {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Sections General
   ========================================================================== */
.section {
  padding: 100px 24px;
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.6rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.15);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.bg-pink { background: rgba(236, 72, 153, 0.15); color: #ec4899; }
.bg-purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.bg-cyan { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.bg-amber { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.bg-emerald { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.bg-indigo { background: rgba(99, 102, 241, 0.15); color: #6366f1; }

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   How It Works Steps
   ========================================================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.step-card {
  padding: 40px 32px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(236, 72, 153, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   Safety & Privacy Card
   ========================================================================== */
.safety-card {
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.safety-content h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.safety-content p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.safety-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.safety-list strong {
  color: #fff;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.shield-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.shield-pulse {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
  animation: pulse 3s infinite ease-in-out;
}

.shield-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.shield-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 16px;
}

.shield-inner h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.shield-inner p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 240px;
  margin: 0 auto;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Bottom CTA Banner
   ========================================================================== */
.cta-banner {
  padding: 40px 24px 100px;
}

.banner-inner {
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%), var(--bg-card);
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.banner-orb {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.banner-inner h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.banner-inner p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.banner-actions {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-wrapper {
  background: #04050a;
  border-top: 1px solid var(--border-glass);
  padding: 70px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 16px 0 24px;
  max-width: 320px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.link-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}

.link-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.link-col a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group,
  .hero-social-proof {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .safety-card {
    grid-template-columns: 1fr;
    padding: 40px;
    text-align: center;
  }

  .safety-list li {
    text-align: left;
  }

  .floating-badge {
    display: none; /* keep phone clean on smaller displays */
  }

  .phone-frame {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar {
    height: 68px;
  }

  .nav-links,
  .nav-actions > .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 auto;
    z-index: 99;
    padding: 20px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-glass);
    gap: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 1.1rem;
    font-weight: 600;
    touch-action: manipulation;
  }

  .hero-section {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 56px;
    gap: 48px;
  }

  section[id] {
    scroll-margin-top: 84px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 2.8rem);
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .hero-cta-group {
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-cta-group .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-social-proof {
    align-items: flex-start;
  }

  .visual-card-wrapper {
    max-width: 360px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-icon,
  .brand-logo-img {
    width: 36px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .chip-badge {
    padding: 6px 12px;
    font-size: 0.76rem;
  }

  .hero-section {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .hero-social-proof {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .proof-text {
    text-align: center;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 1rem;
  }

  .features-grid,
  .steps-container {
    gap: 18px;
  }

  .feature-card,
  .step-card {
    padding: 28px 22px;
  }

  .safety-card {
    padding: 28px 22px;
    gap: 24px;
  }

  .safety-content h2 {
    font-size: 2rem;
  }

  .shield-graphic {
    padding: 24px 0;
  }

  .faq-trigger {
    min-height: 56px;
    padding: 18px 20px;
    gap: 16px;
    font-size: 1rem;
  }

  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-banner {
    padding: 24px 16px 72px;
  }

  .banner-inner {
    padding: 48px 22px;
  }

  .banner-inner h2 {
    font-size: 2.2rem;
  }

  .banner-inner p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .footer-wrapper {
    padding-top: 52px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
