/* =============================================================
   CALLARA — Landing Page Styles
   Brand: Navy (#1a1f36) + White + Amber (#f59e0b)
   Font: Inter
   ============================================================= */

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

:root {
  --navy: #1a1f36;
  --navy-light: #252b4a;
  --navy-dark: #0f1221;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-dark: #d97706;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f9;
  --gray-200: #e2e6f0;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #334155;
  --text: #1e2535;
  --text-light: #64748b;
  --green: #10b981;
  --green-light: #d1fae5;
  --red-light: #fee2e2;
  --red: #ef4444;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 31, 54, 0.08);
  --shadow-lg: 0 8px 48px rgba(26, 31, 54, 0.14);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

p {
  line-height: 1.7;
  color: var(--text-light);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy-dark);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--amber);
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e2850 100%);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2; /* above hero-wave (z-index:0) — buttons stay clickable */
  max-width: 760px;
  padding-bottom: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.1); }
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-sub-cta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  font-style: italic;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  flex-shrink: 0;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 0;       /* below hero-inner (z-index:2) */
  pointer-events: none; /* clicks pass through, buttons stay clickable */
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.br-desktop {
  display: block;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--off-white);
  position: relative;
  margin-top: -1px; /* overlap with hero to prevent subpixel gap */
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.problem-lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.problem-text p {
  margin-bottom: 16px;
}

.problem-text strong {
  color: var(--navy);
  font-weight: 600;
}

.problem-callout {
  background: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.problem-callout-icon {
  font-size: 1.2rem;
}

.problem-callout em {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}

.problem-callout-source {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gray-200);
}

.stat-card--accent {
  border-left-color: var(--amber);
  background: var(--navy);
}

.stat-card--accent .stat-number {
  color: var(--amber);
}

.stat-card--accent .stat-label {
  color: rgba(255,255,255,0.7);
}

.stat-card--success {
  border-left-color: var(--green);
}

.stat-card--success .stat-number {
  color: var(--green);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ===== DEMO ===== */
.demo {
  background: var(--white);
}

.demo-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.demo-icon {
  width: 80px;
  height: 80px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.demo-icon svg {
  width: 36px;
  height: 36px;
  color: var(--amber);
}

.demo-text h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.demo-text > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.demo-number {
  margin-bottom: 12px;
}

.demo-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0 !important;
}

/* ===== SOLUTION ===== */
.solution {
  background: var(--off-white);
}

.steps {
  margin-top: 24px;
  max-width: 700px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  padding-top: 16px;
}

.step-content p {
  margin-bottom: 12px;
}

.step-detail {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-dark);
  background: rgba(245, 158, 11, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

.step-connector {
  padding-left: 31px;
  height: 60px;
  display: flex;
  align-items: center;
}

.step-connector svg {
  width: 24px;
  height: 60px;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-studio {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== PRICING ===== */
.pricing {
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--gray-200);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card--featured {
  background: var(--navy);
  border-color: var(--amber);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.price-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.price-card--featured .price-name {
  color: rgba(255,255,255,0.6);
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card--featured .price-amount {
  color: var(--white);
}

.price-currency {
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: super;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
}

.price-card--featured .price-period {
  color: rgba(255,255,255,0.5);
}

.price-setup {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.price-card--featured .price-setup {
  color: rgba(255,255,255,0.5);
}

.price-roi {
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--gray-100);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.price-card--featured .price-roi {
  background: rgba(245, 158, 11, 0.12);
  color: rgba(255,255,255,0.75);
}

.price-card--featured .price-roi strong {
  color: var(--amber-light);
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.feature-yes {
  color: var(--text-light);
}

.feature-no {
  color: var(--gray-400);
  text-decoration: line-through;
  opacity: 0.65;
}

.price-card--featured .feature-yes {
  color: rgba(255,255,255,0.85);
}

.price-card--featured .feature-no {
  color: rgba(255,255,255,0.3);
}

.feature-yes svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-no svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.5;
}

.price-features li strong {
  color: var(--navy);
  font-weight: 600;
}

.price-card--featured .price-features li strong {
  color: var(--white);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

.price-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

.price-guarantee--light {
  color: rgba(255,255,255,0.4);
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--white);
  padding: 48px 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-badge svg {
  color: var(--amber-dark);
  flex-shrink: 0;
}

.trust-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-badge strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.trust-badge span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq {
  background: var(--off-white);
}

.faq-list {
  margin-top: 48px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--amber-dark);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--off-white);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-urgency {
  position: relative;
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.cta-box h2 {
  position: relative;
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-box p {
  position: relative;
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-micro {
  position: relative;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

.cta-trust {
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}

.footer-brand .logo {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  grid-column: 1 / -1;
  margin-top: -16px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 0;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .br-desktop {
    display: none;
  }

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

  .demo-box {
    flex-direction: column;
    padding: 40px 32px;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card--featured {
    transform: none;
  }

  .price-card--featured:hover {
    transform: translateY(-4px);
  }

  .trust-badges {
    gap: 28px;
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    margin-top: 0;
  }

  .cta-box {
    padding: 48px 28px;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }

  .demo-box {
    padding: 32px 20px;
  }

  .step-connector {
    padding-left: 23px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 20px;
  }

  .trust-section {
    padding: 40px 0;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.animate-in-delayed {
  animation: fadeInUp 0.5s 0.15s ease forwards;
  opacity: 0;
}

.animate-in-delayed-2 {
  animation: fadeInUp 0.5s 0.3s ease forwards;
  opacity: 0;
}
