/* ===== TOKENS ===== */
:root {
    --bg: #ffffff;
    --bg-alt: #f8faf9;
    --text: #111827;
    --text-secondary: #6b7280;
    --accent: #10b981;
    --accent-hover: #059669;
    --accent-light: rgba(16, 185, 129, 0.08);
    --accent-glow: rgba(16, 185, 129, 0.15);
    --card-bg: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

[data-theme="dark"] {
    --bg: #0a0f0d;
    --bg-alt: #111916;
    --text: #f1f5f3;
    --text-secondary: #94a3a0;
    --accent: #34d399;
    --accent-hover: #10b981;
    --accent-light: rgba(52, 211, 153, 0.1);
    --accent-glow: rgba(52, 211, 153, 0.2);
    --card-bg: #111916;
    --border: #1e2a25;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.35);
    --nav-bg: rgba(10, 15, 13, 0.9);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; }

::selection { background: var(--accent); color: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--accent);
    z-index: 10100;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

@media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: scroll()) {
        @keyframes grow-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
        .scroll-progress {
            animation: grow-progress auto linear;
            animation-timeline: scroll(block root);
        }
    }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.3s, padding 0.3s, border-color 0.3s;
}

.nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.nav-inner {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
    border-radius: 1px;
}

.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

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

.theme-btn {
    background: var(--accent-light);
    border: none;
    color: var(--accent);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.theme-btn:hover {
    background: var(--accent);
    color: #fff;
}

.currency-btn {
    background: var(--accent-light);
    border: none;
    color: var(--accent);
    height: 38px;
    padding: 0 0.9rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.currency-btn:hover {
    background: var(--accent);
    color: #fff;
}

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

.menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.25s ease;
}

.menu-btn.active span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.menu-btn.active span:last-child { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.hero-inner {
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.9rem;
    background: var(--accent-light);
    border-radius: var(--radius-full);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.25rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-socials {
    display: flex;
    gap: 0.75rem;
}

.hero-socials a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.2s;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.hero-socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-light);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-note i {
    color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

/* ===== SECTION HEADINGS ===== */
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES ===== */
.services {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: all 0.25s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-glow);
}

.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.25s ease;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
}

.service-for {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 0.1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--accent);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.service-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.service-price strong {
    color: var(--text);
    font-weight: 700;
}

.service-price__cur {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    margin-top: auto;
}

.btn-service:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-service--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-service--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

/* ===== CTA BANNER ===== */
.cta {
    padding: 0 0 6rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--accent), #0d9488);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -15%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.rotate-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    white-space: nowrap;
    position: relative;
}

.rotate-word {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotate-word.is-leaving {
    opacity: 0;
    transform: translateY(-100%);
}

.rotate-word.is-entering {
    opacity: 0;
    transform: translateY(100%);
}

.rotate-word.is-entering.in {
    opacity: 1;
    transform: translateY(0);
}

.cta-actions {
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

.btn-cta {
    background: #fff;
    color: var(--accent-hover);
    font-size: 1rem;
    padding: 0.9rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.cta-perks span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-perks i {
    color: #fff;
    font-size: 0.75rem;
}

/* ===== PROCESS ===== */
.process {
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.process-step {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.25s ease;
}

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

.step-num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.process-step .step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.25s ease;
}

.process-step:hover .step-icon {
    background: var(--accent);
    color: #fff;
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.avatar-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    background: var(--accent-light);
}

.about-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.stat:hover {
    border-color: var(--accent);
}

.stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-text .section-tag { margin-bottom: 0.25rem; }
.about-text .section-title { margin-bottom: 1rem; }

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 0;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-left-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.detail i {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 0.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.form-group { margin-bottom: 0.875rem; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group .error {
    display: none;
    font-size: 0.72rem;
    color: #ef4444;
    margin-top: 0.25rem;
    font-weight: 500;
}

.form-group.error {
    animation: shake 0.3s ease;
}

@keyframes shake {
    10%, 90% { transform: translateX(-1px); }
    20%, 80% { transform: translateX(2px); }
    30%, 50%, 70% { transform: translateX(-3px); }
    40%, 60% { transform: translateX(3px); }
}

.form-group.error .error {
    display: block;
    animation: fadeUp 0.25s ease;
}

#submitBtn.loading i { animation: spin 0.8s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.success-msg {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-msg.show {
    display: block;
    animation: fadeUp 0.4s ease;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.success-msg p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== FOOTER ===== */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.2s;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links a:hover {
    color: var(--accent);
    background: var(--accent-light);
}

.top-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
}

.top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.75rem; }
    .about-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .about-text { max-width: 100%; }
    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .process-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .contact-card { grid-template-columns: 1fr; gap: 2rem; }
    .section-title { font-size: 1.85rem; }
    .cta-card { padding: 3rem 2rem; }
    .cta-title { font-size: 1.75rem; }
}

@media (max-width: 768px) {
    .menu-btn { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--nav-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

    .nav-links.active { transform: translateY(0); }
    .nav-link { font-size: 1.3rem; }

    .hero { padding: 7rem 0 3rem; }
    .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-desc { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

    .contact-card { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { gap: 0.5rem; }
    .stat { padding: 0.75rem 0.35rem; }

    .section-title { font-size: 1.6rem; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .cta-desc { font-size: 0.9rem; }
    .cta-perks { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.4rem; }
    .btn { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
    .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}