/* ========================================
   Phoenix Vault – Static CSS
   Google Fonts: Inter + Space Grotesk
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --background: 240 20% 2%;
  --foreground: 0 0% 98%;

  --card: 240 20% 5%;
  --card-foreground: 0 0% 98%;

  --primary: 173 100% 39%;
  --primary-foreground: 240 20% 2%;

  --secondary: 240 20% 8%;
  --secondary-foreground: 0 0% 85%;

  --muted: 240 10% 12%;
  --muted-foreground: 240 5% 55%;

  --accent: 35 50% 65%;
  --accent-foreground: 240 20% 2%;

  --border: 240 10% 14%;

  --gold: 35 50% 65%;
  --gold-light: 35 60% 75%;
  --teal: 173 100% 39%;
  --teal-glow: 173 100% 45%;
  --charcoal: 240 20% 2%;
  --slate: 240 20% 5%;
  --slate-light: 240 15% 10%;

  --radius: 0.75rem;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Typography Helpers ---------- */
.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-gold {
  color: hsl(var(--gold));
}

.text-teal {
  color: hsl(var(--teal));
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

/* ---------- Text Gradient Hero ---------- */
.text-gradient-hero {
  background-image: linear-gradient(135deg, hsl(0 0% 100%) 40%, hsl(var(--gold)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ---------- Glass Nav ---------- */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(240, 20%, 3%, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(240, 10%, 20%, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: hsl(var(--foreground));
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.nav-links a:hover {
  color: hsl(var(--foreground));
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta .btn-login {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  border-radius: 0.5rem;
}

.nav-cta .btn-login:hover {
  color: hsl(var(--foreground));
}

.mobile-toggle {
  display: block;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  padding: 0.25rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: hsl(var(--foreground));
}

.mobile-menu-cta {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.mobile-menu-cta .btn-login {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ---------- Buttons ---------- */
.btn-teal {
  background: linear-gradient(135deg, hsl(var(--teal)) 0%, hsl(var(--teal-glow)) 100%);
  color: hsl(var(--charcoal));
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-teal:hover {
  box-shadow: 0 0 24px hsla(173, 100%, 39%, 0.3);
  transform: translateY(-1px);
}

.btn-secondary-gold {
  background: transparent;
  border: 1px solid hsl(var(--gold));
  color: hsl(var(--gold));
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-secondary-gold:hover {
  background: hsla(35, 50%, 65%, 0.08);
  box-shadow: 0 0 16px hsla(35, 50%, 65%, 0.15);
}

/* ---------- Card Premium ---------- */
.card-premium {
  background: linear-gradient(145deg, hsl(var(--slate)) 0%, hsl(var(--charcoal)) 100%);
  border: 1px solid hsla(240, 10%, 18%, 0.5);
  box-shadow: 0 4px 24px -4px hsla(0, 0%, 0%, 0.4);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card-premium:hover {
  border-color: hsla(173, 100%, 39%, 0.2);
  box-shadow: 0 8px 32px -4px hsla(173, 100%, 39%, 0.08);
}

/* ---------- Section Divider ---------- */
.section-divider {
  border-top: 1px solid hsla(240, 10%, 15%, 0.6);
}

/* ---------- Hero Background Pattern ---------- */
.bg-hero-pattern {
  background-image:
    radial-gradient(ellipse at 20% 50%, hsla(173, 100%, 39%, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, hsla(35, 50%, 65%, 0.03) 0%, transparent 50%);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-bg-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero p.subtitle {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-buttons .btn-teal {
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 160px;
}

.hero-buttons .btn-secondary-gold {
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  min-width: 160px;
}

/* Regulatory Header */
.regulatory-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
}

.regulatory-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.regulatory-header p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  max-width: 28rem;
  margin: 0 auto;
}

/* Regulatory Cards */
.regulatory-cards {
  width: 100%;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.regulatory-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  width: 100%;
}

.regulatory-card {
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.regulatory-card .logo-area {
  width: 100%;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(var(--background), 0.5);
  border-bottom: 1px solid hsla(var(--border), 0.4);
}

.regulatory-card .logo-area img {
  max-height: 5.5rem;
  max-width: 30%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.regulatory-card .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.regulatory-card .abbr {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.regulatory-card .full-name {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.125rem;
}

.badge-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  background: hsla(173, 100%, 39%, 0.1);
  border: 1px solid hsla(173, 100%, 39%, 0.2);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--teal));
}

.badge-teal svg {
  width: 13px;
  height: 13px;
}

.regulatory-card .description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ============================
   TRUST BAR (Stats)
   ============================ */
.trust-bar {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat-item .stat-icon {
  margin: 0 auto 0.75rem;
}

.stat-item .stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-item .stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================
   FEATURES SECTION
   ============================ */
.features {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.section-header .divider {
  width: 4rem;
  height: 1px;
  margin: 0 auto;
}

.divider-teal {
  background-color: hsl(var(--teal));
}

.divider-gold {
  background-color: hsl(var(--gold));
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.feature-card {
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: all 0.3s;
}

.feature-card .feature-icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.4;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
  padding: 6rem 0;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.step-item {
  position: relative;
  text-align: center;
}

.step-icon-box {
  position: relative;
  z-index: 10;
  margin: 0 auto 1rem;
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}

.step-icon-box svg {
  color: hsl(var(--teal));
  width: 24px;
  height: 24px;
  stroke-width: 1.4;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--gold));
  letter-spacing: 0.1em;
}

.step-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.step-item p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Connector line (desktop) */
.step-connector {
  display: none;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: hsl(var(--gold));
  color: hsl(var(--gold));
}

.testimonial-quote {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(var(--muted));
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--gold));
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.testimonial-role {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ============================
   TRUST & SECURITY
   ============================ */
.trust-security {
  padding: 6rem 0;
}

.trust-logos-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  text-align: center;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.trust-logos span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(var(--muted-foreground), 0.6);
  letter-spacing: 0.025em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
}

.trust-badge-item svg {
  color: hsl(var(--teal));
  width: 18px;
  height: 18px;
  stroke-width: 1.4;
}

.trust-badge-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.footer-brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.footer-links h4 {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-foreground));
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsla(var(--muted-foreground), 0.7);
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  font-size: 0.75rem;
  color: hsla(var(--muted-foreground), 0.6);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: hsl(var(--foreground));
}

/* ============================
   ANIMATIONS (Intersection Observer)
   ============================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.animate-delay-1 {
  transition-delay: 0.08s;
}

.animate-delay-2 {
  transition-delay: 0.16s;
}

.animate-delay-3 {
  transition-delay: 0.24s;
}

.animate-delay-4 {
  transition-delay: 0.32s;
}

.animate-delay-5 {
  transition-delay: 0.40s;
}

.animate-delay-6 {
  transition-delay: 0.48s;
}

/* Navbar animation */
.nav-animate {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* SM: 640px+ */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

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

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

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

  .regulatory-card .logo-area {
    height: 12rem;
  }

  .regulatory-card .logo-area img {
    max-height: 9rem;
  }
}

/* MD: 768px+ */
@media (min-width: 768px) {
  .regulatory-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-logos {
    gap: 3.5rem;
  }

  .trust-logos span {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .regulatory-header h3 {
    font-size: 1.5rem;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

/* LG: 1024px+ */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

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

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-connector {
    display: block;
    position: absolute;
    top: 2rem;
    left: 60%;
    width: 80%;
    height: 1px;
    background: hsl(var(--border));
  }

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

  .regulatory-cards {
    padding: 0 2.5rem;
  }

  .container {
    padding: 0 2rem;
  }

  .cta-buttons {
    flex-direction: row;
  }
}

/* ============================
   GLOW ORBS (Hero decoration)
   ============================ */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.glow-orb-teal {
  width: 400px;
  height: 400px;
  background: hsla(173, 100%, 39%, 0.07);
  top: 20%;
  left: -5%;
}

.glow-orb-gold {
  width: 350px;
  height: 350px;
  background: hsla(35, 50%, 65%, 0.05);
  top: 10%;
  right: -5%;
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* ---------- Hero Grid Pattern ---------- */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsla(240, 10%, 20%, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, hsla(240, 10%, 20%, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* ---------- Feature Card Glow ---------- */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--teal)), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* ---------- Brand Logo Styling ---------- */
.brand-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  opacity: 0.5;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.brand-logo:hover {
  opacity: 0.8;
}

.brand-logo-divider {
  width: 1px;
  height: 20px;
  background: hsla(var(--muted-foreground), 0.2);
}

@media (min-width: 768px) {
  .brand-logo {
    font-size: 1.25rem;
  }
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  padding: 6rem 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, hsl(var(--slate)) 0%, hsl(var(--charcoal)) 100%);
  border: 1px solid hsla(173, 100%, 39%, 0.15);
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, hsla(173, 100%, 39%, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.cta-card>p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.cta-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.cta-trust-row svg {
  color: hsl(var(--teal));
  flex-shrink: 0;
}