/* ═══════════════════════════════════════════════════
   Zapfretes Landing Page - CSS Puro
   Paleta: Navy #0A1045, Verde #4CAE50, Ciano #00E5FF
   Fontes: Sora (display), Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #0E1A4A;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Typography ─── */
.font-display { font-family: 'Sora', system-ui, sans-serif; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ─── Container ─── */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; max-width: 1280px; } }

/* ─── Gradient Text ─── */
.gradient-text {
  background: linear-gradient(135deg, #4CAE50, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Glass Card ─── */
.glass-card {
  background: rgba(18, 30, 90, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(76, 174, 80, 0.15);
  transition: all 0.5s ease;
}
.glass-card:hover {
  border-color: rgba(76, 174, 80, 0.4);
  transform: translateY(-8px);
}

/* ─── Glow Effects ─── */
.glow-green { box-shadow: 0 0 30px rgba(76, 174, 80, 0.2), 0 0 60px rgba(76, 174, 80, 0.1); }
.glow-text { text-shadow: 0 0 40px rgba(76, 174, 80, 0.3); }

/* ─── Section Backgrounds ─── */
.section-dark { background: linear-gradient(180deg, #0E1A4A 0%, #142060 50%, #0E1A4A 100%); }
.section-darker { background: linear-gradient(180deg, #0B1238 0%, #142060 100%); }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0E1A4A; }
::-webkit-scrollbar-thumb { background: #4CAE50; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #5CBF60; }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes growWidth {
  from { width: 0; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.fade-in { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.fade-in-left { opacity: 0; animation: fadeInLeft 0.7s ease forwards; }
.fade-in-right { opacity: 0; animation: fadeInRight 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #fff;
  transition: all 0.5s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.navbar.scrolled { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.navbar-logo { height: 56px; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(10,16,69,0.7);
  transition: color 0.3s;
}
.nav-links a:hover { color: #4CAE50; }
.nav-cta {
  margin-left: 1rem; padding: 0.625rem 1.5rem;
  background: #4CAE50; color: #fff;
  font-weight: 600; font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.nav-cta:hover { background: #5CBF60; box-shadow: 0 4px 15px rgba(76,174,80,0.25); }
.mobile-toggle { display: block; color: #0A1045; font-size: 1.5rem; }
.mobile-menu {
  display: none; background: #fff;
  border-top: 1px solid #f1f1f1; padding-bottom: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.75rem 1.5rem;
  color: rgba(10,16,69,0.7); transition: color 0.3s;
}
.mobile-menu a:hover { color: #4CAE50; }
.mobile-menu .nav-cta {
  display: block; text-align: center;
  margin: 0.75rem 1.5rem 0;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
}

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,26,74,0.9), rgba(20,32,96,0.8), rgba(14,26,74,0.6));
}
.hero-overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #0E1A4A, transparent, transparent);
}
.hero-content {
  position: relative; z-index: 10;
  padding-top: 8rem; padding-bottom: 5rem;
}
.hero-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 36rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: rgba(76,174,80,0.1);
  border: 1px solid rgba(76,174,80,0.3);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: #4CAE50; animation: pulse 2s infinite;
}
.badge-text { color: #4CAE50; font-size: 0.875rem; font-weight: 500; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; background: #4CAE50; color: #fff;
  font-weight: 700; font-size: 1.125rem; border-radius: 0.75rem;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: #5CBF60;
  box-shadow: 0 10px 25px rgba(76,174,80,0.3);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-weight: 600; border-radius: 0.75rem;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.hero-note { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.hero-map-wrapper { display: none; position: relative; }
@media (min-width: 1024px) { .hero-map-wrapper { display: block; } }
.hero-map-wrapper img { border-radius: 1rem; box-shadow: 0 25px 50px rgba(76,174,80,0.1); }
.floating-card {
  position: absolute; border-radius: 0.75rem;
  padding: 1rem;
}
.floating-card-inner { display: flex; align-items: center; gap: 0.75rem; }
.floating-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.floating-card .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.floating-card .value { font-size: 1.125rem; font-weight: 700; color: #fff; }
.card-bottom-left { bottom: -1rem; left: -1rem; }
.card-top-right { top: -1rem; right: -1rem; }

/* ─── Metrics ─── */
.metrics { position: relative; padding: 5rem 0; background: #0E1A4A; }
.metrics-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #0E1A4A, rgba(20,32,96,0.5), #0E1A4A);
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  position: relative; z-index: 10;
}
@media (min-width: 1024px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-item { text-align: center; }
.metric-icon {
  width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem;
  border-radius: 0.75rem;
  background: rgba(76,174,80,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.metric-item:hover .metric-icon { background: rgba(76,174,80,0.2); }
.metric-value {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800; color: #fff;
}
.metric-label { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-top: 0.5rem; }

/* ─── Section Header ─── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.section-tag.green { color: #4CAE50; }
.section-tag.cyan { color: #00E5FF; }
.section-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800; color: #fff; margin-top: 1rem;
}
.section-subtitle { color: rgba(255,255,255,0.5); margin-top: 1rem; }

/* ─── How It Works ─── */
.steps-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  position: relative; border-radius: 1rem; padding: 2rem;
}
.step-num {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 3.75rem; font-weight: 800;
  color: rgba(255,255,255,0.05);
  transition: color 0.5s;
}
.step-card:hover .step-num { color: rgba(76,174,80,0.1); }
.step-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: rgba(76,174,80,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background 0.3s;
}
.step-card:hover .step-icon { background: rgba(76,174,80,0.2); }
.step-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem;
}
.step-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ─── ANTT Compliance ─── */
.antt-card {
  max-width: 48rem; margin: 4rem auto 0; text-align: center;
  border-radius: 1rem; padding: 2rem;
  border: 1px solid rgba(76,174,80,0.2) !important;
}
.antt-header { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.antt-tag { color: #4CAE50; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.antt-text { color: rgba(255,255,255,0.7); line-height: 1.7; }
.antt-text strong { color: #fff; font-weight: 600; }

/* ─── Video Block ─── */
.video-block {
  margin-top: 5rem; max-width: 56rem; margin-left: auto; margin-right: auto;
  position: relative; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.video-block video { width: 100%; border-radius: 1rem; display: block; }
.video-block .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,26,74,0.6), transparent);
  pointer-events: none; border-radius: 1rem;
}

/* ─── Features Grid ─── */
.features-section {
  position: relative; padding: 6rem 0;
  background-size: cover; background-position: center;
}
.features-section .bg-overlay {
  position: absolute; inset: 0; background: rgba(14,26,74,0.8);
}
.features-grid {
  display: grid; gap: 1.5rem; position: relative; z-index: 10;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { border-radius: 1rem; padding: 2rem; height: 100%; }
.feature-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; }
.feature-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: rgba(76,174,80,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.feature-card:hover .feature-icon { background: rgba(76,174,80,0.2); }
.feature-badge {
  font-size: 0.75rem; font-weight: 500; color: #00E5FF;
  background: rgba(0,229,255,0.1);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
}
.feature-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem;
}
.feature-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ─── Differentials ─── */
.diff-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
.diff-card {
  border-radius: 1rem; padding: 2.5rem; text-align: center;
}
.diff-icon {
  width: 5rem; height: 5rem; margin: 0 auto 1.5rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s;
}
.diff-card:hover .diff-icon { transform: translateY(-8px); }
.diff-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem;
}
.diff-desc { color: rgba(255,255,255,0.6); line-height: 1.6; }
.diff-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; padding: 0.75rem 1.5rem;
  background: rgba(76,174,80,0.1);
  border: 1px solid rgba(76,174,80,0.3);
  color: #4CAE50; font-weight: 600; border-radius: 0.75rem;
  transition: all 0.3s;
}
.diff-btn:hover { background: rgba(76,174,80,0.2); }

/* ─── WhatsApp Section ─── */
.whatsapp-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .whatsapp-grid { grid-template-columns: 1fr 1fr; } }
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item { display: flex; align-items: center; gap: 0.75rem; }
.check-icon {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: rgba(76,174,80,0.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.check-text { color: rgba(255,255,255,0.7); }
.whatsapp-mockup { max-width: 24rem; margin: 0 auto; border-radius: 1rem; }

/* ─── Why Section ─── */
.why-grid {
  display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { text-align: center; }
.why-icon {
  width: 6rem; height: 6rem; margin: 0 auto 1.5rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s;
}
.why-card:hover .why-icon { transform: translateY(-8px); }
.why-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem;
}
.why-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ─── Vehicle Stats ─── */
.stats-grid {
  display: grid; gap: 3rem; max-width: 56rem; margin: 0 auto;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stats-card { border-radius: 1rem; padding: 2rem; }
.stats-card-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #fff;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.bar-item { margin-bottom: 1rem; }
.bar-label { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.25rem; }
.bar-label span:first-child { color: rgba(255,255,255,0.7); }
.bar-label span:last-child { font-weight: 600; }
.bar-track { height: 0.5rem; background: rgba(255,255,255,0.05); border-radius: 9999px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 9999px;
  background: linear-gradient(to right, #4CAE50, #00E5FF);
  animation: growWidth 1.5s ease-out forwards;
}

/* ─── Security ─── */
.security-grid {
  display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto;
}
@media (min-width: 768px) { .security-grid { grid-template-columns: repeat(3, 1fr); } }
.security-card {
  border-radius: 1rem; padding: 2rem; text-align: center;
}
.security-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1.5rem;
  border-radius: 0.75rem;
  background: rgba(76,174,80,0.1);
  display: flex; align-items: center; justify-content: center;
}
.security-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem;
}
.security-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ─── WhiteLabel Section ─── */
.wl-section {
  position: relative; padding: 6rem 0; overflow: hidden;
  background: linear-gradient(135deg, #0E1A4A 0%, #142060 40%, #1A2870 100%);
}
.wl-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .wl-grid { grid-template-columns: 1fr 1fr; } }
.wl-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.3);
  margin-bottom: 1.5rem;
}
.wl-badge-text { color: #00E5FF; font-size: 0.875rem; font-weight: 500; }
.wl-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-bottom: 2rem;
}
.wl-feature-item { display: flex; align-items: center; gap: 0.5rem; }
.wl-feature-item span { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.wl-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #4CAE50, #00E5FF);
  color: #fff; font-weight: 700; font-size: 1.125rem;
  border-radius: 0.75rem; transition: all 0.3s;
}
.wl-btn:hover {
  box-shadow: 0 10px 25px rgba(76,174,80,0.3);
  transform: translateY(-2px);
}
.wl-image-wrapper { position: relative; }
.wl-image-wrapper img { border-radius: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.wl-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,26,74,0.8), transparent);
  border-radius: 1rem;
}
.wl-status-card {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  border-radius: 0.75rem; padding: 1rem;
}
.wl-status-header { display: flex; align-items: center; gap: 1rem; }
.wl-status-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #4CAE50; animation: pulse 2s infinite; }
.wl-status-text { color: #fff; font-weight: 600; font-size: 0.875rem; }
.wl-status-desc { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 0.5rem; }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  border-radius: 1rem; padding: 2rem;
  display: flex; flex-direction: column; height: 100%;
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.star { color: #4CAE50; }
.testimonial-quote {
  color: rgba(255,255,255,0.7); line-height: 1.7;
  font-style: italic; flex: 1;
}
.testimonial-footer {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-name {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700; color: #fff;
}
.testimonial-role { color: rgba(255,255,255,0.5); font-size: 0.875rem; }

/* ─── CTA Section ─── */
.cta-section {
  position: relative; padding: 6rem 0; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg .overlay { position: absolute; inset: 0; background: rgba(14,26,74,0.85); }
.cta-content {
  position: relative; z-index: 10;
  max-width: 48rem; margin: 0 auto; text-align: center;
}
.cta-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800; color: #fff; margin-bottom: 1.5rem;
}
.cta-subtitle { color: rgba(255,255,255,0.6); font-size: 1.125rem; margin-bottom: 2.5rem; }
.cta-buttons {
  display: flex; flex-direction: column; gap: 1.5rem;
  justify-content: center; margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-card {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  border-radius: 1rem; padding: 2rem 2.5rem;
  flex: 1; max-width: 24rem;
  transition: all 0.5s;
}
.cta-card:hover { transform: translateY(-8px); }
.cta-card-icon {
  width: 5rem; height: 5rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.cta-card-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #fff;
}
.cta-card-sub { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.cta-card-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; color: #fff;
  font-weight: 600; border-radius: 0.75rem;
  transition: all 0.3s;
}
.cta-links {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: center; justify-content: center;
}
@media (min-width: 640px) { .cta-links { flex-direction: row; } }
.cta-links a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s;
}
.cta-links a.green { color: #4CAE50; }
.cta-links a.green:hover { color: #5CBF60; }
.cta-links a.muted { color: rgba(255,255,255,0.5); }
.cta-links a.muted:hover { color: #fff; }

/* ─── Footer ─── */
.footer {
  background: #fff; border-top: 1px solid #e5e7eb; padding: 4rem 0;
}
.footer-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { height: 4rem; margin-bottom: 1.5rem; }
.footer-desc { color: rgba(10,16,69,0.6); line-height: 1.7; max-width: 28rem; }
.footer-slogan { color: rgba(10,16,69,0.4); font-size: 0.875rem; margin-top: 1rem; }
.footer-heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700; color: #0A1045; margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(10,16,69,0.6);
  transition: color 0.3s; display: flex; align-items: center; gap: 0.5rem;
}
.footer-links a:hover { color: #4CAE50; }
.footer-bottom {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copyright { color: rgba(10,16,69,0.4); font-size: 0.875rem; }
.footer-security {
  display: flex; align-items: center; gap: 0.25rem;
  color: rgba(10,16,69,0.3); font-size: 0.75rem;
}

/* ─── SVG Icons inline helper ─── */
.icon { display: inline-block; vertical-align: middle; }
.icon svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
