﻿@media (max-width: 600px) {
    .cta-banner-box {
        padding: 48px 28px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SCREEN SECTION
═══════════════════════════════════════════════════════════════ */
.hero-screen-section {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-screen-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f2f7 0%, #e8edf5 60%, #dce4f0 100%);
    z-index: 0;
}

.hero-screen-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left copy */
.hero-screen-copy {
    flex: 1 1 360px;
    max-width: 520px;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-eyebrow.center {
    display: block;
    margin-bottom: 10px;
}

.hero-screen-h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: .4em;
    color: var(--primary);
    text-transform: none;
    font-weight: 700;
}

.hero-screen-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 28px;
    max-width: 460px;
}

.hero-screen-lead strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-screen-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    box-shadow: inset 0 0 0 2px var(--primary);
}

.btn-ghost:hover {
    background: var(--primary);
    color: #fff;
}

.hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-item {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

/* Right – Slider */
.hero-screen-slider-wrap {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-screen-slider {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(23, 27, 38, .18);
    aspect-ratio: 16/10;
    background: var(--primary);
}

.hero-screen-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
}

.hero-screen-slide.active {
    opacity: 1;
    position: relative;
}

.hero-screen-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-screen-dots {
    display: flex;
    gap: 8px;
}

.hero-screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(23, 27, 38, .2);
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}

.hero-screen-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

@media (max-width: 900px) {
    .hero-screen-section {
        padding: 120px 0 60px;
    }

    .hero-screen-layout {
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hero-screen-copy {
        max-width: 100%;
    }

    .hero-screen-h1 {
        font-size: 32px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--primary);
    padding: 40px 0;
}

.trust-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.trust-bar-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.4);
    text-align: center;
}

.trust-bar-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.trust-stat-desc {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE GRID (3-spaltig)
═══════════════════════════════════════════════════════════════ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-tile {
    background: var(--offwhite);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--line);
    transition: box-shadow .2s, transform .2s;
}

.feature-tile:hover {
    box-shadow: 0 8px 28px rgba(23, 27, 38, .09);
    transform: translateY(-3px);
}

.feature-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.feature-tile-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    text-transform: none;
    margin-bottom: .4em;
}

.feature-tile p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT SHOWCASE
═══════════════════════════════════════════════════════════════ */
.product-section {
    padding: 80px 0;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.product-showcase--reverse {
    flex-direction: row-reverse;
}

.product-showcase-text {
    flex: 1 1 320px;
}

.product-showcase-text h3 {
    font-size: 26px;
    text-transform: none;
    margin-bottom: .5em;
}

.product-showcase-text p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.product-showcase-img {
    flex: 1 1 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(23, 27, 38, .14);
}

.product-showcase-img img {
    width: 100%;
    display: block;
}

@media (max-width: 760px) {
    .product-showcase,
    .product-showcase--reverse {
        flex-direction: column;
    }
}

/* ── Inline Image Slider ─────────────────────────────────────── */
.img-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(23, 27, 38, .14);
}

.img-slide {
    display: none;
}

.img-slide.active {
    display: block;
    animation: imgFadeIn .4s ease;
}

@keyframes imgFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.img-slide img {
    width: 100%;
    display: block;
}

.img-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.img-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #3a4256;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}

.img-slider-dot.active {
    background: black;
    transform: scale(1.35);
}