@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ───────────────────────────────────────────────────────────────── */
:root {
    --primary-color:  #1e40af;
    --primary-light:  #3b82f6;
    --primary-dark:   #1e3a8a;
    --accent-color:   #60a5fa;

    --silver-light:    #f1f5f9;
    --silver-metallic: #cbd5e1;
    --silver-dark:     #64748b;

    --text-dark:  #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;

    --bg-dark:    #020617;
    --bg-light:   #ffffff;
    --bg-surface: #f8fafc;

    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;

    --transition:    all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 8px;
    --shadow-soft:   0 10px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    --shadow-heavy:  0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
    --shadow-glow:   0 0 20px rgba(59,130,246,.4);
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}
p { margin-bottom: 1.5rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ── Glassmorphism Header ────────────────────────────────────────────────────── */
.site-header {
    background: rgba(2,6,23,.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.site-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(59,130,246,.3));
}

.logo-text {
    display: flex;

    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--text-light);
    align-items: center;
    gap: 15px;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 4px;
    font-weight: 600;
    margin-top: 2px;
}

/* ── Navigation ──────────────────────────────────────────────────────────────── */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-navigation > ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation a {
    color: var(--silver-metallic);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    position: relative;
    padding: .5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--accent-color);
    transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--text-light);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

/* ── Dropdown Menu ───────────────────────────────────────────────────────────── */
.has-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--bg-dark);
    min-width: 250px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.1);
    border-top: 3px solid var(--primary-light);
    box-shadow: var(--shadow-heavy);
    z-index: 1100;
    max-height: 450px;
    overflow-y: auto;
    border-radius: 0 0 8px 8px;
    transform-origin: top;
    display: flex;
    flex-direction: column;
}

.dropdown-menu::-webkit-scrollbar { width: 6px; }
.dropdown-menu::-webkit-scrollbar-track { background: var(--bg-dark); }
.dropdown-menu::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: .75rem 1.5rem;
    color: var(--silver-metallic);
    font-size: .9rem;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,.05);
    color: var(--accent-color);
    padding-left: 2rem;
}

.dropdown-menu a::after { display: none; }

/* ── Dropdown Arrow ──────────────────────────────────────────────────────────── */
.dropdown-arrow {
    font-size: .65rem;
    display: inline-block;
    margin-left: .2rem;
    transition: transform .3s ease;
    vertical-align: middle;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ── Language Switcher ───────────────────────────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-left: 2.5rem;
    flex-shrink: 0;
}

.lang-switcher > span {
    color: var(--silver-dark);
    font-size: .85rem;
}

.lang-btn {
    color: var(--silver-metallic);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: .2rem .4rem;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn::after { display: none !important; }

.lang-btn:hover {
    color: var(--accent-color);
}

.lang-btn.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,.4);
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,.1);
    color: white;
}

/* ── Hero Section ────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 12rem 0 10rem;
    background: var(--bg-dark);
    background-image: linear-gradient(to right, rgba(2,6,23,.92) 0%, rgba(2,6,23,.5) 100%);
    color: var(--text-light);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(59,130,246,.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0,0,0,.8), 0 10px 40px rgba(0,0,0,.4);
    font-weight: 900;
    color: var(--text-light);
}

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--silver-metallic);
    margin-bottom: 3.5rem;
    font-weight: 300;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Inner Page Header ───────────────────────────────────────────────────────── */
.page-header {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 7rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(59,130,246,.12) 0%, transparent 65%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--silver-metallic);
    font-size: 1.2rem;
    max-width: 620px;
    margin: 0 auto;
    margin-bottom: 0;
    font-weight: 300;
}

/* ── Cards ───────────────────────────────────────────────────────────────────── */
.card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--silver-light);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* ── Feature Grid ────────────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* ── Products Grid ───────────────────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--silver-light);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light);
}

.product-card-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: .75rem;
    letter-spacing: -0.03em;
}

.product-card-desc {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 1.5rem;
}

/* ── Sections ────────────────────────────────────────────────────────────────── */
.section { padding: 8rem 0; }
.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-surface { background: var(--bg-surface); }

.section-title {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.section-title-left {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -3rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Stats ───────────────────────────────────────────────────────────────────── */
.stats-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    color: var(--silver-metallic);
    font-size: .9rem;
    margin-top: .5rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ── About / Split Layout ────────────────────────────────────────────────────── */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* ── CTA Section ─────────────────────────────────────────────────────────────── */
.cta-section {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--silver-metallic);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-dark);
    color: var(--silver-metallic);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-grid .logo-text { color: white; }
.footer-grid .logo-text span { color: var(--accent-color); }

.footer-desc {
    color: var(--silver-metallic);
    font-size: .95rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: .6rem; }

.footer-links a {
    color: var(--silver-metallic);
    font-size: .9rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--accent-color); padding-left: .5rem; }

.footer-contact-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .9rem;
    margin-bottom: .75rem;
    color: var(--silver-metallic);
}

.footer-contact-item a:hover { color: var(--accent-color); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 2.5rem;
    text-align: center;
    font-size: .85rem;
    color: var(--silver-dark);
}

.footer-bottom a { color: var(--silver-dark); }
.footer-bottom a:hover { color: var(--accent-color); }

/* ── Form Styles ─────────────────────────────────────────────────────────────── */
.form-container {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-dark);
    margin-bottom: .5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--silver-metallic);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--silver-light);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(59,130,246,.1);
}

textarea.form-control { resize: vertical; min-height: 150px; }

.form-alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-size: .95rem;
}

.form-alert-success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.form-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ── Marquee ─────────────────────────────────────────────────────────────────── */
.marquee-container {
    background: var(--bg-dark);
    padding: 1.75rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-block;
    color: var(--silver-metallic);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 4rem;
    opacity: .5;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Mobile Menu Button ──────────────────────────────────────────────────────── */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    padding: .4rem .75rem;
    border-radius: 4px;
    transition: var(--transition);
    line-height: 1;
}

.mobile-menu-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* ── Utility ─────────────────────────────────────────────────────────────────── */
.text-accent   { color: var(--accent-color); }
.text-muted    { color: var(--text-muted); }
.text-center   { text-align: center; }
.mb-0          { margin-bottom: 0; }
.mt-2          { margin-top: 2rem; }

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════════════════════════ */

/* ── 1200px ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .split-layout   { gap: 4rem; }
    .footer-grid    { gap: 3rem; }
}

/* ── 1024px ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-headline { font-size: 3.5rem; }
    .main-navigation > ul { gap: 1.5rem; }
    .lang-switcher { margin-left: 1.5rem; }
    .section-title { font-size: 2.8rem; }
    .cta-section h2 { font-size: 2.5rem; }
}

/* ── 768px (Tablet / Mobile Menu) ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }

    /* Hero */
    .hero-section    { padding: 8rem 0 5rem; }
    .hero-headline   { font-size: 2.8rem; }
    .hero-subheadline { font-size: 1.25rem; }

    /* Sections */
    .section         { padding: 5rem 0; }
    .section-title   { font-size: 2.4rem; margin-bottom: 2.5rem; }
    .cta-section     { padding: 4rem 0; }
    .cta-section h2  { font-size: 2rem; }
    .page-header     { padding: 6rem 0 3.5rem; }
    .page-header h1  { font-size: 2.5rem; }

    /* Layout */
    .features-grid   { grid-template-columns: 1fr; }
    .split-layout    { grid-template-columns: 1fr; gap: 3rem; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* Form */
    .form-container { padding: 2.5rem 2rem; }
    .form-row       { grid-template-columns: 1fr; gap: 0; }

    /* Nav: Mobile Overlay */
    .main-navigation {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 2rem 1.5rem 2.5rem;
        border-bottom: 1px solid rgba(255,255,255,.1);
        box-shadow: 0 20px 40px rgba(0,0,0,.4);
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: flex-start;
    }

    .main-navigation > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .main-navigation > ul > li > a {
        display: block;
        padding: .9rem 0;
        font-size: 1.05rem;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(255,255,255,.04);
        min-width: 100%;
        margin-bottom: .5rem;
        border-radius: 6px;
        border-top: none;
        border: 1px solid rgba(255,255,255,.08);
        max-height: none;
        box-shadow: none;
    }

    .has-dropdown:hover .dropdown-menu { display: none; } /* disable hover on mobile */
    .has-dropdown.dropdown-active .dropdown-menu { display: flex; }

    .has-dropdown.dropdown-active .dropdown-arrow { transform: rotate(180deg); }

    /* Lang Switcher in mobile nav */
    .lang-switcher {
        margin-left: 0;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,.1);
        width: 100%;
    }

    .mobile-menu-btn { display: block; }
}

/* ── AGB ─────────────────────────────────────────────────────────────────────── */
.agb-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.agb-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.agb-section:last-of-type {
    border-bottom: none;
}
.agb-heading {
    font-size: 1.15rem;
    color: grey;
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.agb-num {
    color: grey;
    font-weight: 700;
    white-space: nowrap;
}
.agb-section p {
    color:grey;
    line-height: 1.75;
    margin-bottom: .75rem;
}
.agb-contact {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 2.5rem;
    border-left: 3px solid var(--accent);
}
.agb-contact p {
    margin: .2rem 0;
    color: var(--silver-metallic);
    font-size: .95rem;
}
.agb-contact-link { color: var(--accent); text-decoration: none; }
.agb-contact-link:hover { text-decoration: underline; }
.agb-contact-meta { font-size: .8rem !important; opacity: .6; }

/* ── Slim Hero ───────────────────────────────────────────────────────────────── */
.hero-section--slim { padding: 5rem 0 4rem; min-height: unset; }

/* ── 600px ───────────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .cta-buttons  { flex-direction: column; align-items: center; }
    .stats-row    { gap: 2rem; justify-content: center; }
}

/* ── 480px ───────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .hero-headline   { font-size: 2.2rem; }
    .hero-subheadline { font-size: 1.05rem; margin-bottom: 2.5rem; }
    .section-title   { font-size: 2rem; }
    .page-header h1  { font-size: 2rem; }
    .cta-section h2  { font-size: 1.8rem; }
    .card            { padding: 2rem 1.5rem; }
    .form-container  { padding: 2rem 1.25rem; }
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: .85rem 1.75rem;
        font-size: .9rem;
        width: 100%;
        justify-content: center;
    }
    .hero-buttons    { width: 100%; }
    .stat-number     { font-size: 2.8rem; }
}

/* ── 360px ───────────────────────────────────────────────────────────────────── */
@media (max-width: 360px) {
    .hero-headline { font-size: 1.9rem; }
    .logo-text     { font-size: 1.3rem; }
    .section-title { font-size: 1.8rem; }
}