/* ============================================================
   CampMatic Landing Page — Styles
   ============================================================ */

/* --- Fonts (self-hosted, DSGVO-konform) --- */
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin_latin-ext-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin_latin-ext-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin_latin-ext-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* --- Custom Properties --- */
:root {
    --orange: #E8530E;
    --orange-hover: #C9450B;
    --orange-light: rgba(232, 83, 14, 0.1);
    --navy: #1A252F;
    --slate: #2C3E50;
    --slate-light: #5D6D7E;
    --gold: #FFD93D;
    --green: #27AE60;
    --red: #E74C3C;
    --blue: #5DADE2;
    --light: #F0F2F5;
    --white: #FFFFFF;
    --font-heading: 'DM Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --max-w: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--slate);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
    background: rgba(26, 37, 47, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}
.nav__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}
.nav__links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}
.nav__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav__lang {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all var(--transition);
}
.nav__lang:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
    border-radius: 2px;
}
.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 83, 14, 0.3);
}
.btn--primary:hover {
    background: var(--orange-hover);
    box-shadow: 0 6px 24px rgba(232, 83, 14, 0.4);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--xl { padding: 18px 48px; font-size: 1.15rem; letter-spacing: 0.02em; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--navy);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(232, 83, 14, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s 0.2s forwards;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.6s 0.4s forwards;
}
.hero__subtitle {
    font-size: 1.15rem;
    color: #BDC3C7;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 0.6s 0.6s forwards;
}
.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s 0.8s forwards;
}
.hero__trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.6s 1s forwards;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
}
.hero__image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 0.8s 0.6s forwards;
}
.hero__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: rotate(1deg);
}
.hero__image::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius) + 8px);
    border: 2px solid rgba(232, 83, 14, 0.2);
    pointer-events: none;
}
.hero__divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
    background: var(--white);
    padding: 40px 0 60px;
}
.stats__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 4px;
}
.stat__label {
    font-size: 0.9rem;
    color: var(--slate-light);
    font-weight: 500;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.section__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}
.section__label--light { color: var(--gold); }
.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section__title--light { color: #fff; }
.section__subtitle {
    font-size: 1.1rem;
    color: var(--slate-light);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    background: var(--light);
    padding: 100px 0;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    color: var(--orange);
    margin-bottom: 20px;
}
.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.feature-card__text {
    font-size: 0.95rem;
    color: var(--slate-light);
    line-height: 1.7;
}

/* ============================================================
   APP SHOWCASE
   ============================================================ */
.showcase {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--light);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}
.showcase__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}
.showcase__phone {
    text-align: center;
    max-width: 320px;
}
.phone-frame {
    background: #111;
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    position: relative;
}
.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #333;
    border-radius: 4px;
}
.phone-frame img {
    border-radius: 18px;
    width: 100%;
}
.showcase__caption {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.showcase__desc {
    font-size: 0.95rem;
    color: #BDC3C7;
    line-height: 1.6;
}

/* ============================================================
   INSTALLATION
   ============================================================ */
.installation {
    background: var(--white);
    padding: 100px 0;
}
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 48px 0 40px;
    flex-wrap: wrap;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 240px;
    flex: 1;
}
.step__number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(232, 83, 14, 0.3);
}
.step__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.step__text {
    font-size: 0.9rem;
    color: var(--slate-light);
    line-height: 1.6;
}
.step__line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    margin-top: 32px;
    flex-shrink: 0;
    border-radius: 2px;
}
.installation__note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--slate-light);
    font-style: italic;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================================
   CONNECTIVITY
   ============================================================ */
.connectivity {
    background: var(--light);
    padding: 100px 0;
}
.connectivity__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.conn-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}
.conn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.conn-card__icon {
    color: var(--orange);
    margin-bottom: 20px;
}
.conn-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.conn-card__rec {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.conn-card__text {
    font-size: 0.95rem;
    color: var(--slate-light);
    line-height: 1.7;
}

/* ============================================================
   COMPATIBILITY
   ============================================================ */
.compatibility {
    background: var(--white);
    padding: 100px 0;
}
.compat-list {
    max-width: 700px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.compat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    background: var(--light);
    border-left: 4px solid transparent;
}
.compat-item--yes { border-left-color: var(--green); }
.compat-item--no { border-left-color: var(--red); }
.compat-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 2px;
}
.compat-item__icon--yes {
    background: rgba(39, 174, 96, 0.1);
    color: var(--green);
}
.compat-item__icon--no {
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
}
.compat-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.compat-item p {
    font-size: 0.88rem;
    color: var(--slate-light);
    line-height: 1.5;
}

/* ============================================================
   SPECS
   ============================================================ */
.specs {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
}
.specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}
.specs__table {
    max-width: 700px;
    margin: 48px auto 0;
}
.spec-row {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.spec-row:last-child { border-bottom: none; }
.spec-row__key {
    flex: 0 0 180px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}
.spec-row__val {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #ECF0F1;
    font-weight: 400;
}

/* ============================================================
   ADVANCED
   ============================================================ */
.advanced {
    background: var(--light);
    padding: 80px 0;
}
.advanced__card {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow);
}
.advanced__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    border-radius: var(--radius);
    color: var(--orange);
}
.advanced__text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.advanced__text p {
    font-size: 0.95rem;
    color: var(--slate-light);
    line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--white);
    padding: 100px 0;
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial {
    padding: 32px 28px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.testimonial__stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}
.testimonial__text {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial__author {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-light);
}

/* ============================================================
   ORDER / CTA
   ============================================================ */
.order {
    background: var(--navy);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.order::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(232, 83, 14, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.order::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}
.order__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.order__subtitle {
    font-size: 1.15rem;
    color: #BDC3C7;
    margin-bottom: 48px;
}
.order__delivery {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px;
}
.order__delivery h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.order__delivery li {
    font-size: 0.95rem;
    color: #ECF0F1;
    padding: 6px 0 6px 24px;
    position: relative;
}
.order__delivery li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}
.order__actions {
    margin-bottom: 40px;
}
.order__contact {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #BDC3C7;
}
.order__contact a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.order__teaser {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 217, 61, 0.08);
    border: 1px solid rgba(255, 217, 61, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    color: #ECF0F1;
}
.badge {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 100px;
}
.badge--coming {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #111820;
    padding: 60px 0 0;
    color: #BDC3C7;
}
.footer__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer__brand img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    margin-bottom: 12px;
}
.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}
.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer__col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 0;
    transition: color var(--transition);
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
    margin-top: 48px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px) rotate(1deg); }
    to { opacity: 1; transform: translateX(0) rotate(1deg); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; text-align: center; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__ctas { justify-content: center; }
    .hero__trust { justify-content: center; }
    .hero__image { order: -1; max-width: 480px; margin: 0 auto; }
    .hero__image img { transform: none; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__links, .nav__actions .btn { display: none; }
    .nav__burger { display: flex; }
    .nav__links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 99;
    }
    .nav__links.active .nav__link {
        font-size: 1.3rem;
        color: #fff;
    }
    .nav__actions { margin-left: auto; }

    .stats__container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .features__grid { grid-template-columns: 1fr; }
    .connectivity__grid { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }

    .steps { flex-direction: column; align-items: center; }
    .step__line {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .showcase__container { gap: 48px; }
    .spec-row { flex-direction: column; gap: 4px; }
    .spec-row__key { flex: none; }

    .advanced__card { flex-direction: column; text-align: center; padding: 32px 24px; }

    .footer__container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer__brand img { margin: 0 auto 12px; }

    .order__delivery { padding: 24px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__ctas { flex-direction: column; }
    .btn--lg { width: 100%; }
    .stats__container { grid-template-columns: 1fr 1fr; }
}
