/* ============================================
   ThinkSUITE — Light Professional Theme
   Aligned with Zagreo brand language
   ============================================ */

:root {
    /* Colors — Light Professional Palette */
    --bg-body: #f7f9f8;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f5f3;
    --bg-section-alt: #eef3f1;
    --bg-footer: #0f1e2d;

    --text-main: #1a2b3c;
    --text-muted: #5a6b7a;
    --text-dim: #8a97a4;

    /* Primary — Teal (matching ThinkSUITE logo & Zagreo accent) */
    --primary: #00a693;
    --primary-hover: #008f7e;
    --primary-light: #e6f7f4;
    --primary-lighter: #f0faf8;

    /* Accent — Warm Amber */
    --accent: #e8850c;
    --accent-light: #fef3e2;

    --gradient-primary: linear-gradient(135deg, #00a693 0%, #00c9a7 50%, #00d4b0 100%);
    --gradient-warm: linear-gradient(135deg, #f25b00 0%, #f49300 100%);
    --gradient-hero: linear-gradient(180deg, #f0faf8 0%, #f7f9f8 60%, #ffffff 100%);

    /* Border */
    --border-color: #dce5e2;
    --border-light: #e8eeeb;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 30, 45, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 30, 45, 0.06);
    --shadow-lg: 0 12px 40px rgba(15, 30, 45, 0.08);
    --shadow-xl: 0 20px 60px rgba(15, 30, 45, 0.1);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 72px;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Utilities
   ============================================ */

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    line-height: 1.4;
}

.btn--primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 166, 147, 0.25);
}

.btn--primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 147, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--text-main);
    font-weight: 500;
}

.btn--secondary:hover {
    color: var(--primary);
}

.btn--outline {
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--text-main);
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn--large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(247, 249, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--text-main);
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 166, 147, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(0, 166, 147, 0.15);
}

.hero__title {
    font-size: 3.2rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.hero__title-accent {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    color: var(--text-main);
    -webkit-text-fill-color: var(--text-main);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero__subtitle strong {
    color: var(--text-main);
    font-weight: 600;
}

.hero__note {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.75rem;
}

/* Hero Video */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    background: #000;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.video-controls {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.video-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Fullscreen video overrides */
.hero-video-wrapper:fullscreen,
.hero-video-wrapper:-webkit-full-screen {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: #000;
}

.hero-video-wrapper:fullscreen .hero-video,
.hero-video-wrapper:-webkit-full-screen .hero-video {
    border-radius: 0;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   Sections General
   ============================================ */

.section {
    padding: 5.5rem 0;
}

.section-header {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   Pain Section
   ============================================ */

.pain-section {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.pain__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pain__desc,
.pain__story {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pain__stat {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #dc2626;
}

.stat-label {
    font-size: 0.9rem;
    color: #991b1b;
    line-height: 1.5;
}

/* Gap Illustration */
.gap-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
}

.thought-bubble {
    background: var(--primary-light);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 166, 147, 0.15);
    position: relative;
}

.thought-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--primary-light);
}

.barrier {
    background: #fef2f2;
    color: #dc2626;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border: 1px dashed #fecaca;
}

.computer-icon {
    background: var(--bg-card);
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    color: var(--text-dim);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   Vision Section
   ============================================ */

.vision-section {
    padding: 4rem 0;
}

.vision-title {
    max-width: 800px;
    margin: 0 auto;
    font-size: 2rem;
}

.vision-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--primary);
}

/* ============================================
   Solution / Demo
   ============================================ */

.solution-section {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.demo-interactive {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    padding: 1.5rem;
    border-left: 3px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 12px 12px 0;
}

.step:hover {
    background: rgba(0, 166, 147, 0.03);
}

.step.active {
    border-left-color: var(--primary);
    background: var(--primary-light);
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-num {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    color: var(--text-dim);
    font-weight: 600;
}

.step.active .step-num {
    color: var(--primary);
    font-weight: 700;
}

.preview-screen {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* ============================================
   Features Grid
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Enterprise Section
   ============================================ */

.enterprise-section {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

/* ============================================
   Use Cases
   ============================================ */

.cases-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.case-card {
    padding: 2rem;
    border-left: 3px solid var(--border-color);
    border-radius: 0 12px 12px 0;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.case-card:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.case-header {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.case-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.case-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Pricing
   ============================================ */

.pricing-section {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    background: linear-gradient(180deg, var(--primary-lighter) 0%, var(--bg-card) 100%);
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(0, 166, 147, 0.12);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pricing-header {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 2.5rem;
    flex: 1;
}

.pricing-features li {
    margin-bottom: 0.65rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300a693' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
    border-top: 1px solid var(--border-light);
}

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

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--bg-card);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

.faq-item[open] {
    border-color: var(--primary);
    background: var(--primary-lighter);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Privacy Message
   ============================================ */

.privacy-msg-section {
    background: var(--primary-lighter);
    border-top: 1px solid rgba(0, 166, 147, 0.1);
    border-bottom: 1px solid rgba(0, 166, 147, 0.1);
}

.privacy-msg-section h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.privacy-msg-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.link-arrow:hover {
    color: var(--primary-hover);
}

/* ============================================
   PS Banner
   ============================================ */

.ps-banner {
    background: var(--bg-footer);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-footer);
    padding: 4rem 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__container h4 {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__col p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer__col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer__col a:hover {
    color: #00d4b0;
}

.footer__bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

/* ============================================
   Cookie Banner
   ============================================ */

#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 1.25rem 1.5rem;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

#cookieConsentBanner p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

#cookieConsentBanner button {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

#cookieConsentBanner #acceptCookiesButton {
    background: var(--primary);
    color: white;
    border: none;
}

#cookieConsentBanner #acceptCookiesButton:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

#cookieConsentBanner #declineCookiesButton {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

#cookieConsentBanner #declineCookiesButton:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

/* ============================================
   Responsive — Mobile (max-width: 960px)
   ============================================ */

@media (max-width: 960px) {
    .hero__container,
    .pain__grid,
    .features-grid,
    .pricing-grid,
    .cases-row {
        grid-template-columns: 1fr;
    }

    .hero__container {
        gap: 1.5rem;
        text-align: center;
    }

    .hero {
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 3rem;
    }

    .hero__title {
        font-size: 2.25rem;
        margin-bottom: 0;
    }

    .hero__badge {
        margin-bottom: 1rem;
    }

    /* Mobile: Titolo -> Video -> Subtitle + CTA */
    .hero__content {
        display: contents;
    }

    .hero__badge {
        order: 0;
    }

    .hero__title {
        order: 1;
    }

    .hero__visual {
        order: 2;
    }

    .hero__body {
        order: 3;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }

    .hero__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .demo-interactive {
        grid-template-columns: 1fr;
    }

    .pain__grid {
        display: flex;
        flex-direction: column;
    }

    .pain__text {
        order: 2;
        text-align: center;
    }

    .pain__visual {
        order: 1;
    }

    .nav__list,
    .header__actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header__container {
        justify-content: space-between;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    /* Disable hover transforms on mobile */
    .feature-card,
    .pricing-card,
    .case-card,
    .faq-item {
        transform: none !important;
        transition: none;
    }

    .feature-card:hover,
    .pricing-card:hover,
    .case-card:hover {
        transform: none !important;
    }

    /* Prevent horizontal overflow */
    .section,
    .hero,
    .features-section,
    .pricing-section,
    .cases-section,
    .faq-section,
    .pain-section,
    .solution-section,
    .privacy-msg-section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .features-grid,
    .pricing-grid,
    .cases-row,
    .container {
        overflow: hidden;
        max-width: 100%;
    }

    .feature-card,
    .pricing-card,
    .case-card {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Footer responsive */
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer__col {
        align-items: center;
    }

    /* Cookie banner responsive */
    #cookieConsentBanner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .vision-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   Small mobile tweaks (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.85rem;
    }

    .price {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
