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

:root {
    --red:      #e30613;
    --red-dark: #a8040e;
    --red-glow: rgba(227,6,19,0.25);
    --navy:     #080d1a;
    --navy2:    #0e1525;
    --navy3:    #141d30;
    --blue:     #00b4d8;
    --text:     #e8eaf0;
    --text-dim: #8892a4;
    --border:   rgba(255,255,255,0.07);
    --radius:   14px;
    --shadow:   0 8px 40px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }
.section-dark { background: var(--navy2); }

/* ========================
   BUTTONS
======================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid var(--border);
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}
.btn-large { padding: 16px 36px; font-size: 16px; }

/* ========================
   NAVBAR
======================== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 16px 0;
    transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
    background: rgba(8,13,26,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
    padding: 12px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    flex-shrink: 0;
}
.nav-logo img { width: 38px; height: 38px; border-radius: 8px; }
.nav-logo strong { color: var(--red); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.btn-nav {
    background: var(--red) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}
.btn-nav:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================
   HERO
======================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}
.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(227,6,19,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227,6,19,0.15);
    border: 1px solid rgba(227,6,19,0.3);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}
#hero h1 {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #fff;
}
.gradient-text {
    background: linear-gradient(135deg, var(--red) 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 40px;
    flex-wrap: wrap;
    gap: 0;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}
.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
    text-align: center;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    font-size: 18px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================
   SECTION HEADERS
======================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    background: rgba(227,6,19,0.15);
    border: 1px solid rgba(227,6,19,0.3);
    color: var(--red);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.section-header p {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================
   STEPS
======================== */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    padding: 32px 20px;
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.step:hover {
    transform: translateY(-6px);
    border-color: rgba(227,6,19,0.3);
}
.step-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(227,6,19,0.12);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 16px;
}
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(227,6,19,0.15);
    border: 1px solid rgba(227,6,19,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
    margin: 0 auto 16px;
}
.step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.step p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}
.step-arrow {
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: var(--text-dim);
    font-size: 18px;
    padding-top: 60px;
}

/* ========================
   FEATURES
======================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--navy3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227,6,19,0.3);
    box-shadow: 0 16px 40px rgba(227,6,19,0.1);
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.feature-icon.fire   { background: rgba(255,80,30,0.15); color: #ff5030; }
.feature-icon.theft  { background: rgba(255,160,0,0.15); color: #ffa000; }
.feature-icon.ai     { background: rgba(0,180,216,0.15); color: var(--blue); }
.feature-icon.panel  { background: rgba(120,80,255,0.15); color: #a070ff; }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 20px;
}
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
}
.feature-list li i {
    color: var(--red);
    font-size: 11px;
    flex-shrink: 0;
}

/* ========================
   NOTIFICATIONS
======================== */
.notifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.notif-card {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}
.notif-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227,6,19,0.25);
}
.notif-highlight {
    border-color: rgba(227,6,19,0.35);
    background: rgba(227,6,19,0.05);
}
.notif-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(227,6,19,0.15);
    border: 1px solid rgba(227,6,19,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--red);
    margin: 0 auto 20px;
}
.notif-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.notif-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
}
.notif-card p strong { color: var(--text); }
.notif-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ========================
   CİHAZ
======================== */
.cihaz-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.cihaz-text .section-tag { display: inline-block; margin-bottom: 16px; }
.cihaz-text h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.cihaz-desc {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cihaz-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cihaz-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.cf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(227,6,19,0.15);
    border: 1px solid rgba(227,6,19,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}
.cihaz-features li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cihaz-features li strong {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}
.cihaz-features li span {
    font-size: 13px;
    color: var(--text-dim);
}
.cihaz-image {
    position: relative;
}
.cihaz-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227,6,19,0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.cihaz-image img {
    border-radius: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
    transition: transform 0.4s;
}
.cihaz-image:hover img { transform: scale(1.02); }

/* ========================
   PANEL GRID
======================== */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.panel-item {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.3s, border-color 0.3s;
}
.panel-item:hover {
    transform: translateY(-4px);
    border-color: rgba(227,6,19,0.25);
}
.panel-item i {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 14px;
    display: block;
}
.panel-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.panel-item p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ========================
   VIDEO
======================== */
.video-wrapper {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.video-wrapper video {
    width: 100%;
    display: block;
    background: #000;
}

/* ========================
   CTA / İLETİŞİM
======================== */
.cta-box {
    background: var(--navy2);
    border: 1px solid rgba(227,6,19,0.2);
    border-radius: 28px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(227,6,19,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin: 0 auto 24px;
}
.cta-box h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-box p {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
}
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.cta-domain {
    font-size: 14px !important;
    color: var(--text-dim) !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
}

/* ========================
   FOOTER
======================== */
footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}
.footer-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}
.footer-brand img { width: 32px; height: 32px; border-radius: 6px; }
.footer-brand strong { color: var(--red); }
.footer-tagline {
    font-size: 13px;
    color: var(--text-dim);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}
.footer-links a {
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.footer-copy a { color: rgba(255,255,255,0.4); }
.footer-copy a:hover { color: rgba(255,255,255,0.7); }

/* ========================
   WHATSAPP BUTTON
======================== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid #25D366;
}
.btn-whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

/* ========================
   MODAL
======================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: var(--navy2);
    border: 1px solid rgba(227,6,19,0.2);
    border-radius: 24px;
    padding: 40px 40px 36px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--text-dim);
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.modal-logo {
    width: 56px; height: 56px;
    border-radius: 14px;
    margin: 0 auto 16px;
}
.modal-box h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 6px;
}
.modal-sub {
    font-size: 14px;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 28px;
}

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.3px;
}
.form-group label span { color: var(--red); }

.form-group input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.12);
}
/* Remove number input arrows */
.form-group input[type=number]::-webkit-outer-spin-button,
.form-group input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; }
.form-group input[type=number] { -moz-appearance: textfield; }

/* Captcha */
.captcha-group { margin-bottom: 24px; }
.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.captcha-question {
    background: rgba(227,6,19,0.1);
    border: 1px solid rgba(227,6,19,0.25);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    white-space: nowrap;
    user-select: none;
    flex-shrink: 0;
}
.captcha-row input {
    flex: 1;
    margin-bottom: 0 !important;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 20px 0;
}
.success-icon {
    font-size: 56px;
    color: #25D366;
    margin-bottom: 16px;
}
.form-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.form-success p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Responsive modal */
@media (max-width: 560px) {
    .modal-box { padding: 32px 20px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .captcha-question { font-size: 16px; padding: 10px 14px; }
}

/* ========================
   REVEAL ANIMATION
======================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 900px) {
    .nav-links { display: none; flex-direction: column; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0; right: 0;
        background: rgba(8,13,26,0.98);
        backdrop-filter: blur(12px);
        padding: 20px 24px 28px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        z-index: 998;
    }
    .nav-links a { font-size: 16px !important; }
    .hamburger { display: flex; }
    #navbar { position: fixed; }

    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 12px 0; }

    .cihaz-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .cihaz-image { order: -1; }

    .hero-stats { gap: 16px; padding: 20px; }
    .stat { padding: 0 16px; }
    .stat-divider { display: none; }
}

@media (max-width: 560px) {
    .section { padding: 72px 0; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions a { text-align: center; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions a { justify-content: center; }
    .cta-box { padding: 48px 20px; }
    .hero-stats { flex-direction: column; }
}
