/* Fonts loaded via <link> in index.html <head> for faster first paint */

:root {
    --bg-color: #050a14;
    --text-color: #ffffff;
    --text-muted: #94a3b8;

    /* Gradient Palette */
    --primary-blue: #0066ff;
    --cyan-highlight: #00f2ff;
    --brand-aqua: #48f1d2;
    --deep-navy: #020c1b;

    --brand-title-gradient: linear-gradient(135deg, #f8fcff 0%, #60a5fa 35%, #00d8ff 68%, #48f1d2 100%);
    --gradient-text: var(--brand-title-gradient);
    --gradient-blob: linear-gradient(to right, #0066ff, #00f2ff);

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.1);

    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 120px;
    position: relative;
    z-index: 10;
}

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

h1,
h2,
h3,
h4,
.logo-text,
.btn {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.02em;
}

/* Background Animation Elements */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary-blue);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--cyan-highlight), var(--primary-blue));
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header (Universal) */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-img {
    height: 34px;
    max-width: 74px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    filter: brightness(1.08) saturate(1.05);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.5px;
    background: var(--brand-title-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Toggle (Hamburger) */
.mobile-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2005;
    padding: 0.5rem;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.mobile-toggle.open .bar-1 {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--cyan-highlight);
}

.mobile-toggle.open .bar-2 {
    opacity: 0;
}

.mobile-toggle.open .bar-3 {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--cyan-highlight);
}

/* Navigation (Desktop - Hidden on mobile default) */
.desktop-nav {
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 12, 27, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    flex-direction: column;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-content a {
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-nav-content a:hover {
    color: var(--cyan-highlight);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--brand-title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.hero p {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 700px;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
    width: 100%;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-highlight));
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: transparent;
}

/* Sections */
.presentation,
.contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align to top */
    padding-top: 12vh;
    /* Even higher: ~12% from top */
    padding-bottom: 10rem;
}

.section-title {
    margin-bottom: 5rem;
    /* Increased to 5rem (~80px) for mobile */
    text-align: center;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Grids - Default to 1 Column (Mobile) */
.cards-grid,
.targets-grid,
.contact-container,
.preview-gallery {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* Increased to 4rem for distinct separation */
}

/* --- RESTORED VISUAL STYLES FOR CARDS (Previously lost) --- */
/* Applying these GLOBALLY so they work on mobile too */

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    /* Restored padding */
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-speed);
}

.card:hover {
    transform: scale(1.03);
    border-color: var(--glass-highlight);
    background: rgba(255, 255, 255, 0.05);
    /* Restored hover effect */
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    /* Restored margin */
    color: var(--cyan-highlight);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.card p {
    color: var(--text-muted);
}

/* --- PREVIEW ITEMS (Refined) --- */
.preview-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.preview-item:hover {
    border-color: var(--cyan-highlight);
    transform: translateY(-5px) scale(1.02);
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

.img-container {
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.preview-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

/* Preview segments (Retail / Pro) */
.preview-segment {
    margin-bottom: 4rem;
}

.preview-segment:last-of-type {
    margin-bottom: 0;
}

.preview-segment-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .preview-segment {
        margin-bottom: 5rem;
    }
    .preview-segment-title {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
}

.preview-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Solutions / Target Cards */
.target-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    /* Restored original padding */
    position: relative;
    overflow: hidden;
    transition: var(--transition-speed);
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--glass-border);
}

.target-card.retail::before {
    background: var(--cyan-highlight);
}

.target-card.pro::before {
    background: var(--primary-blue);
}

.target-card:hover {
    /* Restored hover */
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.target-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-retail {
    background: rgba(0, 242, 255, 0.1);
    color: var(--cyan-highlight);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.badge-pro {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.4), rgba(0, 102, 255, 0.1));
    color: #fff;
    border: 1px solid rgba(0, 102, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

.target-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    /* Restored size */
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.target-features {
    list-style: none;
    margin-top: 2rem;
}

.target-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.target-features li::before {
    content: '✓';
    color: var(--cyan-highlight);
    font-weight: bold;
}

.target-card.pro .target-features li::before {
    color: var(--primary-blue);
}

#solutions .section-title {
    margin-bottom: 2rem;
}

#solutions.presentation {
    padding-top: 9vh;
}

#solutions .target-card {
    padding: 1.75rem;
}

#solutions .target-badge {
    margin-bottom: 0.9rem;
    padding: 0.38rem 0.8rem;
}

#solutions .target-card h3 {
    font-size: clamp(1.25rem, 2.15vw, 1.48rem);
    line-height: 1.12;
    margin-bottom: 0.65rem;
}

#solutions .target-card p {
    margin-bottom: 0.85rem !important;
    font-size: 0.9rem;
    line-height: 1.45;
}

#solutions .target-features {
    margin-top: 1.1rem;
}

#solutions .target-features li {
    margin-bottom: 0.46rem;
    gap: 0.6rem;
    font-size: 0.86rem;
    line-height: 1.28;
}

/* Forms */
/* Forms */
#contact .section-title {
    margin-bottom: 2rem;
    /* Reduced specifically for contact to match visual pattern */
}

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    /* Compacted padding */
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    color: var(--text-color);
    font-family: inherit;
    /* Fixes font mismatch */
}

.form-group {
    margin-bottom: 1.25rem;
    /* Uniform spacing between fields */
}

/* Enforce height for inputs/selects but not textareas */
input.form-input,
select.form-input {
    height: 54px;
    /* Uniform height */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

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

/* --- DESKTOP OVERRIDES (> 768px) --- */
/* These purely change Layout (Row vs Column), sizing, and margins. */
/* The Visual Style (Border, Color, Shadow) is now handled globally above. */

@media (min-width: 769px) {

    /* Header & Nav */
    header {
        padding: 2rem 4rem;
        background: transparent;
        border: none;
    }

    .logo-img {
        height: 38px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .mobile-toggle {
        display: none;
    }

    .desktop-nav {
        display: block;
    }

    .desktop-nav ul {
        display: flex;
        gap: clamp(1rem, 1.45vw, 1.75rem);
        list-style: none;
        align-items: center;
    }

    .desktop-nav a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
        font-size: 0.95rem;
    }

    .desktop-nav a:hover {
        color: var(--cyan-highlight);
    }

    /* Hero */
    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        width: auto;
        justify-content: center;
    }

    .btn {
        width: auto;
        padding: 1rem 2.5rem;
    }

    /* Titles & Spacing */
    .section-title {
        margin-bottom: 4.5rem;
        /* Reverted back to 4.5rem */
        text-align: center;
        /* Enforce centering */
        width: 100%;
    }

    .section-title h2 {
        font-size: 3rem;
        /* Ensure gradient is visible on desktop */
        background: var(--brand-title-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    /* Grids */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        /* Original grid logic */
        gap: 2rem;
    }

    .targets-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        /* Original grid logic */
        gap: 2rem;
    }

    .preview-gallery {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        /* Restore correct desktop spacing (override global 4rem) */
    }

    .preview-item {
        flex: 1 1 30%;
        min-width: 300px;
        max-width: 32%;
        /* Keep it under control */
    }

    .contact-container {
        padding: 3rem 4rem;
    }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
    padding-top: 7vh;
    padding-bottom: 6rem;
}

.pricing-section .section-title {
    margin-bottom: 1.35rem;
}

.pricing-section .section-title h2 {
    margin-bottom: 0.55rem;
}

.pricing-section .section-title p {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.pricing-group {
    margin-bottom: 2.35rem;
}

.pricing-group:last-of-type {
    margin-bottom: 2rem;
}

.pricing-group-title {
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-speed), border-color var(--transition-speed), background var(--transition-speed);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-highlight);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card-featured {
    border: 1px solid rgba(0, 242, 255, 0.35);
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.08);
}

.pricing-card-featured:hover {
    border-color: var(--cyan-highlight);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
}

.pricing-card-pro.pricing-card-featured {
    border-color: rgba(0, 102, 255, 0.4);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.1);
}

.pricing-card-pro.pricing-card-featured:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-highlight));
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.pricing-card-header {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
}

.pricing-card-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: 'Manrope', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-color);
    letter-spacing: -0.03em;
}

.pricing-price-contact .price-amount {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    letter-spacing: -0.02em;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-left: 0.1rem;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 0.3rem;
}

.pricing-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.pricing-annual-note {
    color: var(--cyan-highlight);
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    line-height: 1.45;
}

.pricing-card-pro .pricing-annual-note {
    color: var(--primary-blue);
}

.pricing-features {
    list-style: none;
    margin: 0 0 1.75rem 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.45rem 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    color: var(--cyan-highlight);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-card-pro .pricing-features li::before {
    color: var(--primary-blue);
}

.pricing-cta {
    margin-top: auto;
    padding: 0.85rem 1.5rem;
    width: 100%;
}

.pricing-footnote {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2rem;
    padding: 0 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop layout */
@media (min-width: 769px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .pricing-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.75rem;
        max-width: 1120px;
        margin: 0 auto;
    }

    .pricing-grid-public {
        max-width: 1180px;
    }

    .pricing-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .pricing-group-title {
        font-size: 1.5rem;
        margin-bottom: 1.1rem;
    }

    .price-amount {
        font-size: 3.25rem;
    }
}

/* Tablet layout */
@media (min-width: 600px) and (max-width: 768px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   TRAINING / FORMATION SECTION
   ========================================================================== */

.training-section {
    padding-top: 8vh;
    padding-bottom: 6rem;
}

.training-section .section-title {
    margin-bottom: 1.45rem;
}

.training-inclusion-badge {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.65rem 1.2rem;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.12), rgba(0, 102, 255, 0.12));
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50px;
    color: var(--cyan-highlight);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.5;
}

@media (min-width: 769px) {
    .training-inclusion-badge {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

.training-philosophy {
    margin: 0;
    max-width: none;
    padding: 0;
}

.training-philosophy-inner {
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.04) 0%, rgba(0, 102, 255, 0.04) 100%);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.training-philosophy-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-highlight));
}

.training-philosophy-quote {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.training-philosophy-body {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: center;
    margin: 0;
}

@media (min-width: 769px) {
    .training-philosophy-inner {
        padding: 2.5rem 2.5rem;
    }

    .training-philosophy-quote {
        font-size: 1.5rem;
    }

    .training-philosophy-body {
        font-size: 1rem;
    }
}

.training-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0;
    padding: 1.6rem 1.35rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.training-overview {
    display: grid;
    gap: 1.25rem;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}

.training-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.training-stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.training-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.training-parts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 0;
}

.training-detail-intro {
    max-width: 760px;
    margin: 4.5rem auto 1.8rem;
    text-align: center;
}

.training-detail-intro h3 {
    font-size: clamp(1.45rem, 2.5vw, 2.1rem);
    margin-bottom: 0.7rem;
}

.training-detail-intro p {
    color: var(--text-muted);
    margin: 0;
}

.training-part-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-speed), border-color var(--transition-speed), background var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.training-part-card:hover {
    transform: translateY(-3px);
    border-color: var(--glass-highlight);
    background: rgba(255, 255, 255, 0.05);
}

.training-part-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-highlight));
    opacity: 0.6;
}

.training-part-number {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-highlight));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.training-part-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-color);
}

.training-part-count {
    color: var(--cyan-highlight);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.training-part-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.training-cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.training-cta-overview {
    margin-top: 1.35rem;
}

.training-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.training-badge-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Desktop layout */
@media (min-width: 769px) {
    .training-overview {
        grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    }

    .training-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1.6rem;
    }

    .training-stat-number {
        font-size: 2.65rem;
    }

    .training-parts-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .training-part-card {
        padding: 2rem 1.75rem;
    }

    .training-part-number {
        font-size: 2.5rem;
    }
}

/* Tablet layout */
@media (min-width: 600px) and (max-width: 768px) {
    .training-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .training-parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.comparison-section {
    padding-bottom: 6rem;
}

.comparison-group {
    margin-bottom: 3.5rem;
}

.comparison-group:last-of-type {
    margin-bottom: 2rem;
}

.comparison-group-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .comparison-group-title {
        font-size: 1.4rem;
        margin-bottom: 2.25rem;
    }
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.comparison-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.85rem 0.8rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    color: var(--text-color);
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    text-align: center;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--glass-highlight);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
}

.comparison-table th.comparison-col-us {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 242, 255, 0.15));
    color: var(--cyan-highlight);
    border-radius: 8px 8px 0 0;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:nth-child(2) {
    background: rgba(0, 242, 255, 0.03);
    font-weight: 600;
}

.comparison-yes {
    color: var(--cyan-highlight);
    font-weight: 700;
}

.comparison-no {
    color: rgba(255, 100, 100, 0.6);
    font-weight: 400;
}

.comparison-partial {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
}

.comparison-footnote {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

@media (min-width: 769px) {
    .comparison-table {
        font-size: 0.95rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1.1rem 1rem;
    }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding-bottom: 6rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color var(--transition-speed), background var(--transition-speed);
}

.faq-item[open] {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none;
    position: relative;
}

/* Hide default disclosure triangle */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
}

/* Custom chevron */
.faq-item summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--cyan-highlight);
    border-bottom: 2px solid var(--cyan-highlight);
    transform: rotate(45deg);
    transition: transform var(--transition-speed);
    flex-shrink: 0;
    margin-bottom: 4px;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.faq-item summary:hover {
    color: var(--cyan-highlight);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-top: 0;
}

@media (min-width: 769px) {
    .faq-item summary {
        font-size: 1.05rem;
        padding: 1.5rem 1.75rem;
    }

    .faq-answer {
        padding: 1rem 1.75rem 1.75rem 1.75rem;
        font-size: 0.98rem;
    }
}

/* ==========================================================================
   ENRICHED FOOTER
   ========================================================================== */

.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem 0;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 30px;
    max-width: 64px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    filter: brightness(1.08) saturate(1.05);
}

.footer-logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.footer-col h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.footer-col ul li a:hover {
    color: var(--cyan-highlight);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 769px) {
    .site-footer {
        padding: 5rem 0 2rem 0;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        padding-right: 2rem;
    }
}

/* Modal / Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: 5% auto;
    display: block;
    width: 90%;
    max-width: 1000px;
}

.modal-content img {
    width: 100%;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* ============================================
   Language Switcher — FR / EN / ES pills
   ============================================ */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    list-style: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lang-pill {
    all: unset;
    box-sizing: border-box;
    padding: 4px 10px;
    min-width: 34px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.lang-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.lang-pill:focus-visible {
    outline: 2px solid var(--cyan-highlight);
    outline-offset: 2px;
}

.lang-pill.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-highlight));
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.35);
}

.lang-switcher-mobile {
    justify-content: center;
    margin-top: 0.5rem;
}

.lang-switcher-mobile .lang-pill {
    padding: 8px 16px;
    min-width: 48px;
    font-size: 0.9rem;
}

/* ==========================================================================
   2026 Product Showcase
   ========================================================================== */
.hero-product {
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20svh 0 8svh;
}

.hero-grid {
    width: min(940px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow,
.section-kicker,
.tour-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(0, 242, 255, 0.22);
    background: rgba(0, 242, 255, 0.08);
    color: var(--cyan-highlight);
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-product h1 {
    max-width: 100%;
    width: 100%;
    display: block;
    margin: 0;
    font-size: clamp(2.25rem, 6vw, 5rem);
    line-height: 1.04;
    white-space: nowrap;
    letter-spacing: -0.055em;
    color: transparent;
    background-color: transparent;
    background-image: var(--brand-title-gradient);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 0.08em;
    padding-right: 0.08em;
}

.hero-product p {
    max-width: 720px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    color: #c9d8ea;
}

.hero-positioning {
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    font-weight: 800;
    color: #f4fbff;
    letter-spacing: -0.03em;
}

.hero-subline {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.hero-product .hero-buttons {
    padding: 0;
    width: auto;
    align-items: center;
    justify-content: center;
    margin-top: 1.8rem;
}

.hero-proof-grid {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-proof {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 18px;
    padding: 1rem;
}

.hero-proof span {
    display: block;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.hero-proof p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-preview-card {
    max-width: none;
    min-width: 0;
    width: 100%;
    flex: initial;
    padding: 0.75rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.18), rgba(0, 242, 255, 0.10)), rgba(5, 10, 20, 0.72);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 242, 255, 0.10) inset;
    cursor: zoom-in;
}

.hero-visual-badge {
    display: inline-flex;
    margin: 0.25rem 0.25rem 0.75rem;
    color: #b9efff;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-preview-img {
    border-radius: 20px;
}

.product-tour-section {
    padding-top: 6.5rem;
}

.product-tour-section .section-title,
.cgp-story-section .section-title {
    margin-bottom: 2.1rem;
}

.product-title p {
    max-width: 780px;
    margin: 0.75rem auto 0;
    color: var(--text-muted);
}

.platform-overview {
    display: grid;
    gap: 1.25rem;
    align-items: stretch;
    margin: 0 auto 4rem;
    max-width: 1120px;
}

.platform-overview-copy {
    display: grid;
    gap: 0.8rem;
}

.overview-step-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.85rem;
    row-gap: 0;
    align-items: start;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.032);
}

.overview-step-index {
    grid-row: span 2;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--cyan-highlight);
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}

.overview-step-card h3 {
    margin: 0;
    color: #f7fbff;
    font-size: clamp(1.02rem, 1.6vw, 1.25rem);
    line-height: 1.14;
}

.overview-step-card p {
    margin: 0.2rem 0 0;
    color: #aebdd0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.platform-overview-visual {
    max-width: none;
    min-width: 0;
    width: 100%;
    flex: initial;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(7, 14, 28, 0.74);
    cursor: zoom-in;
}

.product-tour-details {
    margin-top: 0;
}

.product-tour-details {
    margin-top: max(12rem, 18vh);
}

.product-tour {
    display: grid;
    gap: 1.4rem;
}

.product-tour .preview-item {
    max-width: none;
    min-width: 0;
    width: 100%;
    flex: initial;
}

.tour-card.preview-item {
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(7, 14, 28, 0.74);
    cursor: zoom-in;
}

.platform-explorer-card {
    max-width: 1180px;
    margin: 0 auto;
}

.tour-card.preview-item:hover {
    transform: translateY(-6px);
}

.tour-image-wrap {
    background: radial-gradient(circle at 20% 0%, rgba(0, 242, 255, 0.16), transparent 38%), rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem;
}

.tour-image-wrap img {
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.tour-split-images {
    display: grid;
    gap: 0.75rem;
}

.tour-card-copy {
    padding: 1.35rem;
}

.tour-card-copy h3 {
    margin: 0.75rem 0 0.65rem;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.08;
}

.tour-card-copy p {
    color: #aebdd0;
    margin-bottom: 1rem;
}

.tour-points {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    list-style: none;
}

.tour-points li {
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    color: #c7f7ff;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.14);
    font-size: 0.85rem;
    font-weight: 700;
}

.cgp-story-section {
    scroll-margin-top: 120px;
    padding-top: 5.2rem;
}

.cgp-story-section .section-title {
    margin-bottom: 1.65rem;
}

.cgp-story-showcase {
    display: grid;
    gap: 0.9rem;
    max-width: 1120px;
    margin: 0 auto;
}

.cgp-screen-card.preview-item {
    max-width: none;
    min-width: 0;
    width: 100%;
    flex: initial;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.12), rgba(0, 242, 255, 0.05)), rgba(7, 14, 28, 0.78);
    cursor: zoom-in;
}

.cgp-story-image {
    padding: 0.62rem;
    background: radial-gradient(circle at 20% 0%, rgba(0, 242, 255, 0.14), transparent 35%), rgba(0, 0, 0, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cgp-story-image img {
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.cgp-story-copy {
    padding: 1.15rem 1.25rem;
}

.cgp-step {
    display: block;
    color: var(--cyan-highlight);
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.12em;
    margin-bottom: 0.55rem;
}

.cgp-story-copy h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.18rem, 1.85vw, 1.55rem);
    line-height: 1.08;
}

.cgp-story-copy p {
    color: #aebdd0;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

@media (min-width: 860px) {
    .hero-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .platform-overview {
        grid-template-columns: minmax(420px, 0.9fr) minmax(430px, 0.95fr);
        gap: 1.4rem;
        margin-bottom: 0;
    }

    .platform-overview {
        min-height: 46vh;
        align-items: center;
    }

    .platform-overview-copy {
        order: 2;
    }

    .platform-overview-visual {
        order: 1;
    }

    .platform-overview .tour-image-wrap {
        height: 100%;
    }

    .platform-overview .tour-image-wrap {
        min-height: min(430px, 48vh);
        display: flex;
        align-items: center;
    }

    .platform-overview .preview-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top center;
    }

    .platform-overview .overview-step-card {
        padding: 1.35rem 1.35rem;
    }

    .platform-overview .overview-step-card h3 {
        font-size: clamp(1.12rem, 1.7vw, 1.38rem);
    }

    .platform-overview .overview-step-card p {
        font-size: 0.95rem;
    }

    .product-tour {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-card-large,
    .tour-card-wide {
        grid-column: span 2;
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
        align-items: stretch;
    }

    .tour-card-wide {
        grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
    }

    .tour-card-large .tour-image-wrap,
    .tour-card-wide .tour-image-wrap {
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tour-card-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
    }

    .cgp-screen-card.preview-item {
        display: grid;
        grid-template-columns: minmax(270px, 0.42fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .cgp-screen-card .cgp-story-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.45rem 1.55rem;
    }

    .cgp-screen-card .cgp-story-image {
        border-bottom: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        min-height: min(220px, 25vh);
        display: flex;
        align-items: center;
    }

    .cgp-screen-card .preview-img {
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
}

@media (max-width: 768px) {
    .hero-product {
        min-height: 100svh;
        padding-top: 22svh;
        padding-bottom: 8svh;
    }

    .hero-grid {
        gap: 0;
    }

    .hero-product h1 {
        font-size: clamp(2.05rem, 9.2vw, 3rem);
        letter-spacing: -0.06em;
    }

    .hero-product .hero-buttons {
        align-items: stretch;
        width: min(100%, 360px);
    }

    .product-tour-section {
        padding-top: 6rem;
    }
}
