/* =====================================================
   Finance — Pure HTML/CSS conversion of the landing page
   ===================================================== */

:root {
  --radius: 0.75rem;

  --background: #ffffff;
  --foreground: #21283b;

  --card: #ffffff;
  --card-foreground: #21283b;

  --primary: #2a4dd0;
  --primary-foreground: #fdfdfd;
  --primary-soft: #eef1fc;

  --secondary: #f5f6fa;
  --secondary-foreground: #2a3142;

  --muted-foreground: #767e94;

  --success: #3fae73;
  --success-foreground: #fdfdfd;
  --success-soft: #e9f7ef;

  --destructive: #e0432f;
  --destructive-foreground: #fdfdfd;

  --border: #e7e9ef;

  --shadow-soft: 0 1px 2px 0 rgb(15 23 42 / 0.04), 0 1px 3px 0 rgb(15 23 42 / 0.06);
  --shadow-card: 0 4px 24px -8px rgb(15 23 42 / 0.08), 0 2px 6px -2px rgb(15 23 42 / 0.04);
  --shadow-elevated: 0 24px 60px -20px rgb(37 99 235 / 0.25), 0 8px 24px -8px rgb(15 23 42 / 0.08);
  --shadow-glow: 0 0 0 6px rgb(37 99 235 / 0.08);
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

h1, h2, h3, h4 {
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* ---------- Layout helpers ---------- */
.container {
  max-width: 80rem; /* 7xl */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.container-narrow {
  max-width: 56rem; /* 4xl/2xl mix */
  margin: 0 auto;
}

.container-wide {
  max-width: 72rem; /* 6xl */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container-wide { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container-wide { padding: 0 2rem; }
}

.container-faq {
  max-width: 48rem; /* 3xl */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container-faq { padding: 0 1.5rem; }
}

.section {
  padding: 5rem 0;
}
@media (min-width: 640px) {
  .section { padding: 7rem 0; }
}

.section-alt {
  background-color: var(--secondary);
}

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

.grid {
  display: grid;
  gap: 1rem;
}
.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) {
  .grid-2, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Typography ---------- */
.h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .h2 { font-size: 3rem; }
}

.lead {
  margin: 0 auto;
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .lead { font-size: 1.125rem; }
}

.lead-strong {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}
@media (min-width: 640px) {
  .lead-strong { font-size: 1.125rem; }
}

.text-gradient {
  background: linear-gradient(120deg, #2a4dd0, #3b4fc9, #3f8fd6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-destructive {
  color: var(--destructive);
}

/* ---------- Eyebrow / badges ---------- */
.eyebrow {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow-primary {
  background-color: var(--primary-soft);
  color: var(--primary);
}
.eyebrow-success {
  background-color: var(--success-soft);
  color: var(--success);
}
.eyebrow-destructive {
  background-color: rgba(224, 67, 47, 0.1);
  color: var(--destructive);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-success {
  border-color: rgba(63, 174, 115, 0.3);
  background-color: var(--success-soft);
  color: var(--success);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm {
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
}
.btn-md {
  height: 2.75rem;
  padding: 0 1.25rem;
}
.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  width: 100%;
}
@media (min-width: 640px) {
  .btn-lg { width: auto; }
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
}
.btn-sm.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: none;
}

.btn-outline {
  border-color: var(--border);
  background-color: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-soft);
}
.btn-outline:hover {
  background-color: var(--secondary);
}

.btn-light {
  background-color: var(--card);
  color: var(--primary);
  box-shadow: var(--shadow-elevated);
}
.btn-light:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: var(--primary-foreground);
}
.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.group:hover .icon {
  transform: translateX(2px);
}
.btn .icon {
  transition: transform 0.2s ease;
}

/* ---------- Icons ---------- */
.icon {
  width: 1rem;
  height: 1rem;
}
.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}
.icon-xs {
  width: 0.75rem;
  height: 0.75rem;
}
.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-success {
  color: var(--success);
}
.icon-quote {
  color: rgba(42, 77, 208, 0.4);
}
.star {
  fill: #facc15;
  color: #facc15;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(231, 233, 239, 0.6);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, var(--primary), rgba(42, 77, 208, 0.7));
  box-shadow: var(--shadow-soft);
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--primary-foreground);
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--foreground);
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---------- Language switcher ---------- */
.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.lang-toggle:hover {
  background-color: var(--secondary);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  display: none;
  flex-direction: column;
  min-width: 9rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 0.375rem;
  box-shadow: var(--shadow-card);
  z-index: 60;
}
.lang-menu.open {
  display: flex;
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  border-radius: 0.5rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
}
.lang-option:hover {
  background-color: var(--secondary);
}
.lang-option.active {
  color: var(--primary);
  font-weight: 700;
  background-color: var(--primary-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(42, 77, 208, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(63, 174, 115, 0.15), transparent 60%),
    #ffffff;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(to right, rgba(231, 233, 239, 0.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(231, 233, 239, 0.6) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) {
  .hero-inner { padding-top: 6rem; }
}
@media (min-width: 1024px) {
  .hero-inner { padding-top: 7rem; padding-bottom: 6rem; }
}

.hero-content {
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
}
@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-subtitle {
  margin: 0 auto;
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.125rem; }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-visual {
  position: relative;
  margin: 0 auto;
  margin-top: 3.5rem;
  max-width: 72rem;
}

.hero-visual-glow {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  top: -1.5rem;
  height: 6rem;
  border-radius: 9999px;
  background-color: rgba(42, 77, 208, 0.2);
  filter: blur(64px);
}

.hero-visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-elevated);
}

.hero-visual-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-bottom: 1px solid var(--border);
  background-color: rgba(245, 246, 250, 0.6);
  padding: 0.75rem 1rem;
}

.dot {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
}
.dot-red { background-color: rgba(224, 67, 47, 0.6); }
.dot-yellow { background-color: rgba(250, 204, 21, 0.7); }
.dot-green { background-color: rgba(63, 174, 115, 0.7); }

.hero-visual-url {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.hero-visual-img {
  width: 100%;
}

/* ---------- Logo strip ---------- */
.logo-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: rgba(245, 246, 250, 0.3);
  padding: 2rem 0;
}

.logo-strip-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.logo-strip-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.logo-strip-grid div {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(118, 126, 148, 0.8);
}
@media (min-width: 640px) {
  .logo-strip-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .logo-strip-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
}
.card-pad {
  padding: 1.25rem;
}

/* ---------- Problem ---------- */
.problem-grid {
  margin-top: 3rem;
}
.problem-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--destructive);
}
.problem-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---------- Solution ---------- */
.solution-grid {
  margin-top: 3rem;
}
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}
.solution-item:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 77, 208, 0.3);
  box-shadow: var(--shadow-card);
}
.solution-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary-soft);
  color: var(--primary);
  transition: all 0.2s ease;
}
.solution-item:hover .solution-icon {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.solution-item p {
  padding-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--foreground);
}

/* ---------- Features ---------- */
.features-grid {
  margin-top: 3.5rem;
  gap: 1.5rem;
}
.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}
.feature-icon-primary {
  background-color: var(--primary-soft);
  color: var(--primary);
}
.feature-icon-success {
  background-color: var(--success-soft);
  color: var(--success);
}
.feature-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

.benefits-grid .lead {
  margin-left: 0;
}

.benefits-grid .btn {
  margin-top: 2rem;
}

.benefits-items {
  gap: 0.75rem;
}

.benefit-card {
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}
.benefit-card:hover {
  border-color: rgba(42, 77, 208, 0.3);
  box-shadow: var(--shadow-card);
}
.benefit-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: var(--success-soft);
  color: var(--success);
}
.benefit-title {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.benefit-desc {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ---------- Free access ---------- */
.free-access-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(42, 77, 208, 0.2);
  background: linear-gradient(to bottom right, var(--primary-soft), var(--card), var(--success-soft));
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
}
@media (min-width: 640px) {
  .free-access-card { padding: 3rem; }
}
@media (min-width: 1024px) {
  .free-access-card { padding: 4rem; }
}

.free-access-glow {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
  filter: blur(64px);
}
.free-access-glow-1 {
  right: -5rem;
  top: -5rem;
  background-color: rgba(42, 77, 208, 0.1);
}
.free-access-glow-2 {
  left: -5rem;
  bottom: -5rem;
  background-color: rgba(63, 174, 115, 0.1);
}

.free-access-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .free-access-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.free-access-grid .lead {
  margin-left: 0;
}

.free-access-sub {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .free-access-sub { font-size: 1rem; }
}

.free-access-grid .btn {
  margin-top: 1.75rem;
}

.free-access-panel {
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) {
  .free-access-panel { padding: 2rem; }
}

.free-access-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.free-access-includes-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--success);
}

.free-access-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.free-access-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.check-circle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: rgba(63, 174, 115, 0.15);
  color: var(--success);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  margin-top: 3.5rem;
  gap: 1.25rem;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  margin: 0;
  transition: all 0.2s ease;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.testimonial-card blockquote {
  margin: 0.75rem 0 0 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--foreground);
}
.testimonial-author {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--primary-soft);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.stars {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.125rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
@media (min-width: 640px) {
  .faq-item summary { font-size: 1rem; }
}
.faq-item .chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.2s ease;
}
.faq-item[open] .chevron {
  transform: rotate(180deg);
}
.faq-answer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  animation: fade-in 0.4s ease-out both;
}

/* ---------- Final CTA ---------- */
.final-cta-section {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .final-cta-section { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .final-cta-section { padding-left: 2rem; padding-right: 2rem; }
}

.final-cta {
  position: relative;
  overflow: hidden;
  max-width: 64rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, var(--primary), var(--primary), #2c3f9e);
  padding: 4rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-elevated);
}
@media (min-width: 640px) {
  .final-cta { padding: 5rem 3rem; }
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,0.4), transparent 60%);
}

.final-cta-content {
  position: relative;
}

.final-cta-title {
  color: var(--primary-foreground);
}

.final-cta-text {
  margin: 0 auto;
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1rem;
  color: rgba(253, 253, 253, 0.8);
}
@media (min-width: 640px) {
  .final-cta-text { font-size: 1.125rem; }
}

.final-cta-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .final-cta-actions { flex-direction: row; }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background-color: rgba(245, 246, 250, 0.4);
}
.footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-desc {
  margin-top: 0.75rem;
  max-width: 20rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
}
.footer-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--foreground);
}
.footer-social {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}
.footer-social a:hover {
  border-color: rgba(42, 77, 208, 0.3);
  color: var(--primary);
}
.footer-sponsor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-sponsor-logo {
  width: 3rem;
  height: auto;
  flex-shrink: 0;
}
.footer-sponsor-text {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}
.footer-bottom {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.footer-legal a:hover {
  color: var(--foreground);
}

/* ---------- Animations ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-up {
  animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
