/* ════════════════════════════════════════════════════════════════
   HVAC AI WhatsApp Assistant  –  SaaS Landing Page Styles
   ════════════════════════════════════════════════════════════════ */

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

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
    --accent: #10b981;
    --accent-dark: #059669;
    --bg: #f8fafc;
    --bg-dark: #0f172a;
    --card: #ffffff;
    --border: #e2e8f0;
    --text: #0f172a;
    --muted: #64748b;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .10);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .14);
    --gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #7c3aed 100%);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: .2s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* RTL support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-cta {
    flex-direction: row-reverse;
}

[dir="rtl"] .step-icon {
    margin-right: 0;
    margin-left: 0;
}

[dir="rtl"] .feature-item {
    text-align: right;
}

[dir="rtl"] .footer-inner {
    flex-direction: row-reverse;
}

/* ── Typography ─────────────────────────────────────────────────── */
h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
}

h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

p {
    color: var(--muted);
}

.section-label {
    display: inline-block;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 12px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 99px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 99, 235, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, .45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 18px rgba(16, 185, 129, .35);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

.btn-ghost {
    background: var(--card);
    color: var(--text);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
}

.btn-wa:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* ── Header ─────────────────────────────────────────────────────── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

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

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    transition: color var(--transition);
}

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

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 99px;
    padding: 3px;
}

.lang-btn {
    padding: 4px 10px;
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--muted);
    transition: all var(--transition);
    letter-spacing: .03em;
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
}

.lang-btn:hover:not(.active) {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-menu a {
    display: block;
    padding: 14px 24px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

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

.mobile-menu .mobile-lang {
    display: flex;
    gap: 8px;
    padding: 14px 24px;
    align-items: center;
}

.mobile-menu .mobile-lang button {
    padding: 6px 14px;
    border-radius: 99px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--muted);
    transition: all var(--transition);
}

.mobile-menu .mobile-lang button.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ── Sections ───────────────────────────────────────────────────── */
section {
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 20px;
}

.section-inner.narrow {
    max-width: 760px;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header p {
    margin-top: 12px;
    font-size: 1.05rem;
}

/* ── Hero ────────────────────────────────────────────────────────── */
#hero {
    background: var(--gradient);
    color: #fff;
    overflow: hidden;
    padding-top: 64px;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% -10%, rgba(124, 58, 237, .4) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at -10% 80%, rgba(16, 185, 129, .25) 0%, transparent 60%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

#hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

#hero .hero-sub {
    color: rgba(255, 255, 255, .82);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 280px;
    background: var(--card);
    border-radius: 32px;
    box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255, 255, 255, .1);
    overflow: hidden;
    position: relative;
}

.phone-header {
    background: #25d366;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.phone-contact {
    font-weight: 600;
    font-size: .88rem;
}

.phone-status {
    font-size: .72rem;
    opacity: .85;
}

.phone-body {
    padding: 16px;
    background: #e5ddd5;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-msg {
    max-width: 82%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: .8rem;
    line-height: 1.45;
    position: relative;
    animation: fadeSlide .4s ease forwards;
}

.phone-msg.incoming {
    background: #fff;
    border-radius: 10px 10px 10px 2px;
    align-self: flex-start;
    color: var(--text);
}

.phone-msg.outgoing {
    background: #dcf8c6;
    border-radius: 10px 10px 2px 10px;
    align-self: flex-end;
    color: var(--text);
}

.phone-msg .time {
    font-size: .65rem;
    color: var(--muted);
    text-align: right;
    margin-top: 3px;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* Floating badges around phone */
.float-badge {
    position: absolute;
    background: var(--card);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}

.float-badge.top {
    top: -18px;
    right: -30px;
    animation-delay: 0s;
}

.float-badge.bottom {
    bottom: 20px;
    left: -40px;
    animation-delay: 1.5s;
}

.float-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

@keyframes float {

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

    50% {
        transform: translateY(-7px);
    }
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

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

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.stat-lbl {
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
}

/* ── Demo Section ────────────────────────────────────────────────── */
#demo {
    background: #fff;
}

.demo-frame-wrap {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 620px;
    position: relative;
}

.demo-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--muted);
    margin-top: 12px;
    justify-content: center;
}

.demo-notice::before {
    content: 'ⓘ';
    color: var(--primary);
    font-size: 1rem;
}

/* ── How It Works ───────────────────────────────────────────────── */
#how {
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: .25;
}

.step-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .4);
}

.step-icon {
    font-size: 2.8rem;
    margin: 0 auto 16px;
    display: block;
}

.step-card h3 {
    margin-bottom: 8px;
}

.step-card p {
    font-size: .9rem;
}

/* ── Features ────────────────────────────────────────────────────── */
#features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1rem;
}

.feature-item p {
    font-size: .88rem;
}

/* ── Benefits ────────────────────────────────────────────────────── */
#benefits {
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
}

#benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(37, 99, 235, .2) 0%, transparent 70%);
}

#benefits .section-inner {
    position: relative;
    z-index: 1;
}

#benefits .section-header h2,
#benefits .section-header p {
    color: #fff;
}

#benefits .section-header p {
    color: rgba(255, 255, 255, .6);
}

#benefits .section-label {
    background: rgba(37, 99, 235, .25);
    color: #93c5fd;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-3px);
}

.benefit-num {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
}

/* ── Pricing ─────────────────────────────────────────────────────── */
#pricing {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 700px;
    margin: 0 auto;
}

.price-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(37, 99, 235, .08);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 99px;
    white-space: nowrap;
}

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

.price-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.price-card h3 {
    margin-bottom: 6px;
}

.price-card .price-desc {
    font-size: .85rem;
    margin-bottom: 20px;
}

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

.price-amount span {
    font-size: 1.4rem;
    font-weight: 700;
}

.price-period {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 28px;
}

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

[dir="rtl"] .price-features {
    text-align: right;
}

.price-features li {
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.price-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Contact ─────────────────────────────────────────────────────── */
#contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info h2 {
    margin-bottom: 4px;
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 28px;
    border-radius: 99px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
    transition: all var(--transition);
}

.contact-wa-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    resize: vertical;
    transition: border var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.form-success {
    display: none;
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #15803d;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
}

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, .6);
    padding: 40px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
}

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

.footer-links a {
    font-size: .85rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: .82rem;
    text-align: center;
}

[dir="rtl"] .footer-links {
    flex-direction: row-reverse;
}

/* ── Utility ─────────────────────────────────────────────────────── */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

.emoji {
    font-style: normal;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    #hero .hero-sub {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .section-inner {
        padding: 72px 20px;
    }

    .nav-links,
    .header-right .btn {
        display: none;
    }

    .lang-switcher {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

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

    .steps-grid::before {
        display: none;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .demo-frame-wrap {
        height: 520px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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