
  :root {
    --deep-blue: #081065;
    --deep-blue-dark: #050b4a;
    --red: #DD3333;
    --red-light: #f04444;
    --light-blue: #66A9BF;
    --off-white: #f4f6ff;
    --white: #ffffff;
    --gray-100: #f8f9ff;
    --gray-200: #e8ecf8;
    --gray-400: #9aa0c4;
    --gray-600: #5c6494;
    --text-dark: #0a0f3c;
    --text-muted: #6b729e;
    --border: rgba(8,16,101,0.12);
    --shadow-sm: 0 2px 16px rgba(8,16,101,0.08);
    --shadow-md: 0 8px 40px rgba(8,16,101,0.12);
    --shadow-lg: 0 24px 80px rgba(8,16,101,0.18);
  }

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

  body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

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

  /* ========== NAVBAR ========== */
  .navbar {
    background: rgba(8,16,101,0.97);
    backdrop-filter: blur(12px);
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(102,169,191,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff !important;
    letter-spacing: -0.01em;
  }
  .navbar-brand span { color: var(--red); }
  .nav-link { color: rgba(255,255,255,0.8) !important; font-size: 0.875rem; font-weight: 500; padding: 0.4rem 1rem !important; transition: color 0.2s; }
  .nav-link:hover { color: var(--light-blue) !important; }
  .nav-cta { background: var(--red) !important; color: #fff !important; border-radius: 6px; padding: 0.45rem 1.25rem !important; font-weight: 600; }
  .nav-cta:hover { background: var(--red-light) !important; }

  /* ========== HERO ========== */
  .hero {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-dark) 60%, #0d1570 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(102,169,191,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(221,51,51,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(102,169,191,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(102,169,191,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(221,51,51,0.15);
    border: 1px solid rgba(221,51,51,0.35);
    color: #ff8080;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse-dot 1.5s infinite; }
  @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }
  .hero h1 .accent { color: var(--light-blue); }
  .hero h1 .danger { color: #ff7070; }
  .hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 2.5rem;
  }
  .hero-sub strong { color: #fff; }
  .btn-hero-primary {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-hero-primary:hover { background: var(--red-light); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(221,51,51,0.4); }
  .btn-hero-secondary {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-hero-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #fff; }
  .hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--light-blue);
    line-height: 1;
    text-align: center;
  }
  .hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; text-align: center; }
  @media (max-width: 767px) {
    .hero-stats { flex-direction: column; align-items: center; gap: 1.5rem; }
  }
  /* Hero Right Panel */
  .hero-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(102,169,191,0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    color: #ffffff;
  }
  .hero-panel-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    /* color: var(--light-blue); */
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }
  .post-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  .post-item-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.25rem; }
  .post-item-text { font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
  .arrow-down { text-align: center; color: var(--light-blue); font-size: 1.2rem; margin: 0.75rem 0; }
  .post-item.output { border-color: rgba(102,169,191,0.3); background: rgba(102,169,191,0.08); }
  .output-tag {
    display: inline-block;
    background: rgba(102,169,191,0.2);
    color: var(--light-blue);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }

  /* ========== SECTIONS ========== */
  section { padding: 5rem 0; }
  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  .section-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
  }

  /* ========== PROBLEM SECTION ========== */
  .problem-section { background: #fafbff; }
  .problem-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .problem-card:hover::before { transform: scaleX(1); }
  .problem-icon {
    width: 48px; height: 48px;
    background: rgba(221,51,51,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: var(--red);
    margin-bottom: 1rem;
  }
  .problem-card h5 { font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
  .problem-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

  /* ========== SOLUTION SECTION ========== */
  .solution-section { background: var(--deep-blue); position: relative; overflow: hidden; }
  .solution-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(102,169,191,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  .solution-section .section-label { color: var(--light-blue); }
  .solution-section .section-title { color: #fff; }
  .solution-section .section-sub { color: rgba(255,255,255,0.65); }
  .solution-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .step-num {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: var(--red);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    color: #fff;
  }
  .step-content h5 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
  .step-content p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }
  .solution-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(102,169,191,0.2);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
  }

  /* ========== HOW IT WORKS ========== */
  .how-section { background: var(--off-white); }
  .step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    height: 100%;
    position: relative;
    transition: all 0.3s;
  }
  .step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
  .step-card .step-num-lg {
    width: 56px; height: 56px;
    background: var(--deep-blue);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    color: #fff;
    margin: 0 auto 1.25rem;
  }
  .step-card h5 { font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
  .step-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
  .step-connector {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    color: var(--light-blue);
    font-size: 1.25rem;
    z-index: 10;
  }

  /* ========== PRICING ========== */
  .pricing-section { background: #fff; }
  .pricing-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem;
    height: 100%;
    position: relative;
    transition: all 0.3s;
    background: #fff;
  }
  .pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
  .pricing-card.featured {
    border-color: var(--deep-blue);
    background: linear-gradient(145deg, var(--deep-blue) 0%, #0d1570 100%);
  }
  .pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
  }
  .pricing-tier {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  .pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
  .pricing-name { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.25rem; }
  .pricing-card.featured .pricing-name { color: #fff; }
  .pricing-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1.5rem; }
  .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
  .price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--deep-blue);
    line-height: 1;
  }
  .pricing-card.featured .price-amount { color: #fff; }
  .price-original {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
  }
  .pricing-card.featured .price-original { color: rgba(255,255,255,0.4); }
  .price-period { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; margin-bottom: 1.5rem; }
  .pricing-card.featured .price-period { color: rgba(255,255,255,0.5); }
  .pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
  .pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.15); }
  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.875rem;
    color: var(--text-dark);
  }
  .pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }
  .pricing-feature i { color: var(--light-blue); flex-shrink: 0; font-size: 0.875rem; margin-top: 2px; }
  .pricing-card.featured .pricing-feature i { color: #a8d8e8; }
  .btn-pricing {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 1.75rem;
    border: none;
  }
  .btn-pricing-outline { background: transparent; border: 1.5px solid var(--deep-blue) !important; color: var(--deep-blue); }
  .btn-pricing-outline:hover { background: var(--deep-blue); color: #fff; }
  .btn-pricing-solid { background: var(--red); color: #fff; }
  .btn-pricing-solid:hover { background: var(--red-light); }
  .btn-pricing-white { background: #fff; color: var(--deep-blue); }
  .btn-pricing-white:hover { background: var(--off-white); }

  /* ========== PAGES - How To Export ========== */
  .pages-section { background: var(--gray-100); }
  .step-visual {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .step-visual-header {
    background: var(--deep-blue);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-red { background: #ff5f57; }
  .dot-yellow { background: #febc2e; }
  .dot-green { background: #28c840; }
  .step-visual img { width: 100%; display: block; }
  .step-list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
  }
  .step-list-item:last-child { border: none; }
  .step-list-num {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: var(--deep-blue);
    color: #fff;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
  }
  .step-list-title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
  .step-list-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

  /* ========== SOCIAL PROOF ========== */
  .proof-section { background: var(--deep-blue); position: relative; overflow: hidden; }
  .proof-section .section-label { color: var(--light-blue); }
  .proof-section .section-title { color: #fff; }
  .proof-section .section-sub { color: rgba(255,255,255,0.65); }
  .testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s;
  }
  .testimonial-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(102,169,191,0.3); }
  .stars { color: #ffd700; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
  .testimonial-text { font-size: 0.9375rem; color: rgba(255,255,255,0.85); line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .author-avatar {
    width: 40px; height: 40px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--deep-blue);
  }
  .author-name { font-size: 0.875rem; font-weight: 700; color: #fff; }
  .author-role { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

  /* ========== AUTHORITY SECTION ========== */
  .authority-section { background: #fafbff; }
  .authority-badge {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.25s;
  }
  .authority-badge:hover { box-shadow: var(--shadow-md); border-color: var(--light-blue); }
  .authority-badge-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .authority-badge h6 { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
  .authority-badge p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

  /* ========== CTA SECTION ========== */
  .cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #c02020 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.02em; }
  .cta-section p { font-size: 1.0625rem; color: rgba(255,255,255,0.8); }
  .btn-cta-white { background: #fff; color: var(--red); border: none; padding: 0.9rem 2rem; border-radius: 8px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
  .btn-cta-white:hover { background: var(--off-white); color: var(--red); transform: translateY(-2px); }
  .btn-cta-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); padding: 0.9rem 2rem; border-radius: 8px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
  .btn-cta-outline-white:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }

  /* ========== CONTACT ========== */
  .contact-section { background: var(--deep-blue); }
  .contact-section .section-label { color: var(--light-blue); }
  .contact-section .section-title { color: #fff; }
  .contact-section .section-sub { color: rgba(255,255,255,0.65); }
  .whatsapp-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
  }
  .whatsapp-card:hover { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.4); transform: translateY(-4px); }
  .whatsapp-icon {
    width: 52px; height: 52px;
    background: #25D366;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .whatsapp-card h5 { font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
  .whatsapp-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
  .whatsapp-num { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: #25D366; font-weight: 500; }
  .social-links-wrap { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: all 0.2s;
    text-decoration: none;
    margin-right: 0.5rem;
  }
  .social-link:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }

  /* ========== FOOTER ========== */
  footer {
    background: #04083a;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  footer p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }
  footer a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: var(--light-blue); }
  .footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 800; color: #fff; font-size: 1rem; }
  .footer-brand span { color: var(--red); }

  /* ========== MISC ========== */
  .urgency-bar {
    background: linear-gradient(90deg, var(--red) 0%, #c02020 100%);
    padding: 0.6rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .urgency-bar strong { font-weight: 700; }

  /* Animations */
  @keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  .fade-in { animation: fadeInUp 0.7s ease forwards; }
  .fade-in-delay-1,
  .fade-in-delay-2,
  .fade-in-delay-3 {
    animation-name: fadeInUp;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  .fade-in-delay-1 { animation-delay: 0.1s; }
  .fade-in-delay-2 { animation-delay: 0.25s; }
  .fade-in-delay-3 { animation-delay: 0.4s; }

  @media (max-width: 768px) {
    .hero { padding: 5rem 0 3rem; min-height: auto; }
    .hero-stats { gap: 1.5rem; }
    section { padding: 3.5rem 0; }
    .hero-panel { margin-top: 3rem; }
  } 
