/* ============================================
   THE ANT METHOD - STATIC SITE STYLES
   Design System: Warm, Approachable, Trust-Evoking
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* CSS Variables / Design Tokens */
:root {
  /* Primary Green Palette */
  --primary-50: #e6f7ed;
  --primary-100: #ccf0db;
  --primary-200: #99e1b7;
  --primary-300: #66d293;
  --primary-400: #33c36f;
  --primary-500: #00A651;
  --primary-600: #008541;
  --primary-700: #006431;
  --primary-800: #004321;
  --primary-900: #002110;

  /* Accent Orange */
  --accent-500: #FF6600;
  --accent-600: #cc5200;

  /* Neutrals */
  --cream: #fdfcf9;
  --sand-50: #faf8f5;
  --sand-100: #f5f1eb;
  --sand-200: #ebe5db;
  --sand-300: #d6cdc0;

  /* Text Colors */
  --ink: #202020;
  --ink-light: #4a4a4a;
  --ink-muted: #6b6b6b;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-soft: 0 2px 8px -2px rgba(26, 31, 22, 0.08), 0 4px 16px -4px rgba(26, 31, 22, 0.04);
  --shadow-card: 0 4px 20px -4px rgba(26, 31, 22, 0.1), 0 8px 32px -8px rgba(26, 31, 22, 0.06);
  --shadow-lg: 0 10px 40px -10px rgba(0, 166, 81, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.font-display {
  font-family: var(--font-display);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

@media (min-width: 1024px) {
  .nav {
    height: 100px;
  }
}

.logo img {
  height: 80px;
  width: auto;
}

@media (min-width: 1024px) {
  .logo img {
    height: 100px;
  }
}

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

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

.nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--ink-light);
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: var(--sand-100);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.mobile-menu-btn.active .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  background: white;
  border-radius: 1rem;
  margin-top: 0.5rem;
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.mobile-menu .btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--sand-300);
  margin-top: 0.5rem;
  font-weight: 500;
}

.mobile-menu .btn-secondary:hover {
  background: var(--sand-50);
}

.mobile-menu .btn-primary {
  margin-top: 0.75rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--sand-100);
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--sand-200);
}

.btn-white {
  background: white;
  color: var(--primary-600);
}

.btn-white:hover {
  background: var(--primary-50);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 1rem;
}

.btn-icon {
  width: 24px;
  height: 24px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding: 10rem 0 6rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--primary-50), var(--cream), var(--cream));
  opacity: 0.5;
}

.hero-blob {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: var(--primary-200);
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(60px);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--sand-200);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
}

.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero h1 .highlight {
  color: var(--primary-500);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--ink-light);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-cta-note {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.section-white {
  background: white;
}

.section-cream {
  background: var(--cream);
}

.section-sand {
  background: var(--sand-50);
}

.section-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--ink-light);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-card);
}

.card-sand {
  background: var(--sand-50);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-600);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

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

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-toggle {
  display: inline-flex;
  background: var(--sand-100);
  border-radius: 9999px;
  padding: 0.25rem;
}

.pricing-toggle-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ink-muted);
  transition: all 0.2s;
}

.pricing-toggle-btn.active {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.pricing-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 2px solid var(--sand-200);
  box-shadow: var(--shadow-card);
  position: relative;
}

@media (min-width: 1024px) {
  .pricing-card {
    padding: 2rem;
  }
}

.pricing-card.popular {
  border-color: var(--primary-500);
  box-shadow: 0 10px 40px rgba(0, 166, 81, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-500);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-period {
  color: var(--ink-muted);
}

.pricing-monthly {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.pricing-tagline {
  font-size: 0.875rem;
  color: var(--primary-600);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-light);
}

.pricing-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--sand-200);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-500);
  transition: transform 0.3s;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-light);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-card);
}

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

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent-500);
  color: var(--accent-500);
}

.testimonial-text {
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
}

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

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.step {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .step {
    grid-template-columns: 1fr 1fr;
  }

  .step.reverse .step-content {
    order: 2;
  }

  .step.reverse .step-visual {
    order: 1;
  }
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-100);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.step-badge span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-600);
}

.step h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .step h2 {
    font-size: 1.875rem;
  }
}

.step p {
  color: var(--ink-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-light);
}

.step-list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-500);
  flex-shrink: 0;
}

.step-visual {
  background: var(--sand-50);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--sand-200);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-600);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 166, 81, 0.5), transparent);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary-500);
  color: white;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: background 0.2s;
}

.footer-cta:hover {
  background: var(--primary-600);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-contact-item a {
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PROSE / LEGAL PAGES
   ============================================ */
.prose {
  max-width: 65ch;
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  color: var(--ink-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.prose ul {
  margin-bottom: 1rem;
}

.prose li {
  color: var(--ink-light);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.prose li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--primary-500);
  border-radius: 50%;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose a {
  color: var(--primary-600);
  transition: color 0.2s;
}

.prose a:hover {
  color: var(--primary-700);
}

/* ============================================
   VALUE COMPARISON
   ============================================ */
.comparison-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  border-radius: 1rem;
  padding: 1.5rem;
}

.comparison-card.negative {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
}

.comparison-card.positive {
  background: var(--primary-50);
  border: 2px solid var(--primary-200);
}

.comparison-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.comparison-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.comparison-subtitle {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.comparison-label {
  color: var(--ink-muted);
}

.comparison-value {
  font-weight: 500;
}

.comparison-value.negative {
  color: #dc2626;
}

.comparison-value.positive {
  color: var(--primary-600);
}

.comparison-total {
  border-top: 1px solid var(--sand-200);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.comparison-total .comparison-label {
  font-weight: 600;
  color: var(--ink);
}

.comparison-total .comparison-value {
  font-size: 1.25rem;
  font-weight: 700;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

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

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

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.hidden {
  display: none;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* SVG Icons (inline) */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
