/* ==========================================================================
   Filevue Landing - style.css
   Modern SaaS landing page with light/dark themes
   ========================================================================== */

/* Design tokens */
:root {
    --color-primary: #4CAF50;
    --color-primary-dark: #2E7D32;
    --color-primary-light: #66BB6A;
    --color-primary-50: rgba(76, 175, 80, 0.08);
    --color-primary-100: rgba(76, 175, 80, 0.16);
    --color-primary-rgb: 76, 175, 80;

    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FDF9;
    --color-bg-soft: #F4F6F8;
    --color-surface: #FFFFFF;
    --color-surface-hover: #F8FDF9;

    --color-text: #1d2327;
    --color-text-muted: #50575e;
    --color-text-soft: #646970;
    --color-border: #e5e7eb;
    --color-border-soft: #f0f2f5;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 30px rgba(76, 175, 80, 0.15);

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    --container: 1200px;
    --transition: 200ms ease;
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

[data-theme="dark"] {
    --color-bg: #0f1419;
    --color-bg-alt: #131a21;
    --color-bg-soft: #1a232c;
    --color-surface: #1a232c;
    --color-surface-hover: #1f2a35;

    --color-text: #f1f5f9;
    --color-text-muted: #cbd5e1;
    --color-text-soft: #94a3b8;
    --color-border: #2c3e50;
    --color-border-soft: #1f2a35;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 8px 30px rgba(76, 175, 80, 0.3);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition), color var(--transition);
    padding-bottom: env(safe-area-inset-bottom);
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: max(var(--space-lg), env(safe-area-inset-left));
    padding-right: max(var(--space-lg), env(safe-area-inset-right));
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--color-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    z-index: 1000;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    border: 1.5px solid transparent;
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(var(--color-primary-rgb), 0.2);
}

.btn--primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(var(--color-primary-rgb), 0.35);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.btn--secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn--secondary:hover {
    color: var(--color-text);
    border-color: var(--color-primary);
    background: var(--color-surface-hover);
    transform: translateY(-1px);
}

.btn--small {
    padding: 8px 14px;
    font-size: 13px;
}

.btn--large {
    padding: 14px 28px;
    font-size: 15px;
}

.btn--xlarge {
    padding: 18px 36px;
    font-size: 17px;
}

.btn--block {
    width: 100%;
}

/* Header / Nav */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    overflow: visible;
}

[data-theme="dark"] .header {
    background: rgba(15, 20, 25, 0.85);
}

.header.is-scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    min-height: calc(72px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    padding-left: max(var(--space-lg), env(safe-area-inset-left));
    padding-right: max(var(--space-lg), env(safe-area-inset-right));
    gap: var(--space-md);
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

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

.nav__logo-icon {
    color: var(--color-primary);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.nav__link {
    display: inline-block;
    padding: 8px 14px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--color-primary);
    background: var(--color-primary-50);
}

.nav__link--live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary-dark);
    background: var(--color-primary-50);
    border: 1px solid var(--color-primary-100);
}

.nav__link--live:hover,
.nav__link--live:focus-visible {
    color: var(--color-primary-dark);
    background: var(--color-primary-100);
    border-color: var(--color-primary);
}

.nav__link-live-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.2);
    animation: pulse 2s ease-in-out infinite;
}

[data-theme="dark"] .nav__link--live {
    color: var(--color-primary-light);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav__toggle:hover {
    background: var(--color-bg-soft);
}

.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle-bar:not(:last-child) {
    margin-bottom: 5px;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Theme toggle */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: all var(--transition);
    border: 1px solid var(--color-border-soft);
}

.theme-toggle:hover {
    background: var(--color-primary-50);
    color: var(--color-primary);
    border-color: var(--color-primary-100);
}

.theme-toggle__icon {
    transition: opacity var(--transition), transform var(--transition);
}

.theme-toggle__icon--sun { display: block; }
.theme-toggle__icon--moon { display: none; }

[data-theme="dark"] .theme-toggle__icon--sun { display: none; }
[data-theme="dark"] .theme-toggle__icon--moon { display: block; }

/* Hero */
.hero {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 0%, rgba(var(--color-primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(var(--color-primary-rgb), 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--color-primary-50);
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: var(--space-md);
    border: 1px solid var(--color-primary-100);
}

[data-theme="dark"] .hero__badge {
    color: var(--color-primary-light);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--space-xl);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px var(--space-md);
}

.hero__badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.hero__badge-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Hero visual / dashboard mockup */
.hero__visual {
    position: relative;
}

.hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(var(--color-primary-rgb), 0.2) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
}

.dashboard-mockup {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1500px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}

.dashboard-mockup:hover {
    transform: perspective(1500px) rotateY(-2deg) rotateX(1deg);
}

.dashboard-mockup__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-bg-soft);
    border-bottom: 1px solid var(--color-border);
}

.dashboard-mockup__dots {
    display: flex;
    gap: 6px;
}

.dashboard-mockup__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
}

.dashboard-mockup__dots span:nth-child(1) { background: #ff5f56; }
.dashboard-mockup__dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-mockup__dots span:nth-child(3) { background: #27c93f; }

.dashboard-mockup__url {
    flex: 1;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    color: var(--color-text-soft);
    font-family: monospace;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
}

.dashboard-mockup__url:hover,
.dashboard-mockup__url:focus-visible {
    color: var(--color-primary-dark);
    background: var(--color-primary-50);
    text-decoration: none;
}

[data-theme="dark"] .dashboard-mockup__url:hover,
[data-theme="dark"] .dashboard-mockup__url:focus-visible {
    color: var(--color-primary-light);
}

.dashboard-mockup__body {
    display: grid;
    grid-template-columns: 64px 1fr;
    min-height: 360px;
}

.dashboard-mockup__sidebar {
    background: var(--color-bg-soft);
    padding: 16px 12px;
    border-right: 1px solid var(--color-border);
}

.dashboard-mockup__logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 8px;
    margin-bottom: 16px;
}

.dashboard-mockup__nav-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-border-soft);
    margin-bottom: 8px;
}

.dashboard-mockup__nav-item--active {
    background: var(--color-primary-100);
    box-shadow: inset 3px 0 0 var(--color-primary);
}

.dashboard-mockup__main {
    padding: 24px;
}

.dashboard-mockup__title {
    width: 60%;
    height: 24px;
    background: var(--color-border-soft);
    border-radius: 6px;
    margin-bottom: 24px;
}

.dashboard-mockup__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.dashboard-mockup__stat {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    padding: 14px;
}

.dashboard-mockup__stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.dashboard-mockup__stat-label {
    font-size: 11px;
    color: var(--color-text-soft);
    font-weight: 500;
}

.dashboard-mockup__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-mockup__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
}

.dashboard-mockup__list-icon {
    width: 28px;
    height: 28px;
    background: var(--color-primary-100);
    border-radius: 6px;
    flex-shrink: 0;
}

.dashboard-mockup__list-text {
    flex: 1;
}

.dashboard-mockup__list-title {
    width: 70%;
    height: 10px;
    background: var(--color-border);
    border-radius: 4px;
    margin-bottom: 6px;
}

.dashboard-mockup__list-sub {
    width: 40%;
    height: 8px;
    background: var(--color-border-soft);
    border-radius: 4px;
}

/* Stats counter */
.stats {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border-soft);
    border-bottom: 1px solid var(--color-border-soft);
    background: var(--color-bg-alt);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stats__value {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stats__label {
    margin-top: var(--space-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Section header */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-2xl);
}

.section-header__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-header__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.section-header__subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Features */
.features {
    padding: var(--space-3xl) 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition);
}

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

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.feature-card__icon--green { background: rgba(76, 175, 80, 0.12); color: #4CAF50; }
.feature-card__icon--blue  { background: rgba(33, 150, 243, 0.12); color: #2196F3; }
.feature-card__icon--purple { background: rgba(156, 39, 176, 0.12); color: #9C27B0; }
.feature-card__icon--orange { background: rgba(255, 152, 0, 0.12); color: #FF9800; }
.feature-card__icon--teal  { background: rgba(0, 150, 136, 0.12); color: #009688; }
.feature-card__icon--red   { background: rgba(244, 67, 54, 0.12); color: #F44336; }

.feature-card__title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.feature-card__description {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Video section */
.video-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.video-section__wrapper {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.video-section__wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.15) 0%, rgba(var(--color-primary-rgb), 0.05) 100%);
    border-radius: var(--radius-xl);
    filter: blur(40px);
    z-index: -1;
}

.video-section__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.video-section__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-section__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: #000;
    cursor: pointer;
    display: block;
    overflow: hidden;
    transition: transform var(--transition);
}

.video-section__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition);
    filter: brightness(0.85);
}

.video-section__poster:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}

.video-section__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
}

.video-section__play svg {
    margin-left: 6px;
}

.video-section__poster:hover .video-section__play {
    background: var(--color-primary);
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 50px rgba(var(--color-primary-rgb), 0.5);
}

.video-section__poster:focus-visible {
    outline: none;
}

.video-section__poster:focus-visible .video-section__play {
    box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.4), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.video-section__duration {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.video-section__fallback {
    margin-top: var(--space-md);
    text-align: center;
    font-size: 14px;
    color: var(--color-text-soft);
}

.video-section__fallback a {
    color: var(--color-primary);
    font-weight: 500;
    margin-left: 4px;
    text-decoration: underline;
}

.video-section__fallback a:hover {
    color: var(--color-primary-dark);
}

/* Slides section (Google Slides embed) */
.slides-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.slides-section__wrapper {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.slides-section__wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.15) 0%, rgba(var(--color-primary-rgb), 0.05) 100%);
    border-radius: var(--radius-xl);
    filter: blur(40px);
    z-index: -1;
}

.slides-section__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 960 / 569;
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.slides-section__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.slides-section__fallback {
    margin-top: var(--space-md);
    text-align: center;
    font-size: 14px;
    color: var(--color-text-soft);
}

.slides-section__fallback a {
    color: var(--color-primary);
    font-weight: 500;
    margin-left: 4px;
    text-decoration: underline;
}

.slides-section__fallback a:hover {
    color: var(--color-primary-dark);
}

@media (max-width: 480px) {
    .video-section__play {
        width: 64px;
        height: 64px;
    }
    .video-section__play svg {
        width: 28px;
        height: 28px;
    }
}

/* How it works */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-glow);
}

.step__title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.step__description {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.step__connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-100), var(--color-primary-100));
    align-self: center;
    position: relative;
}

.step__connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-weight: 700;
}

/* Comparison */
.comparison {
    padding: var(--space-3xl) 0;
}

.comparison__table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.comparison__table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison__table thead {
    background: var(--color-bg-alt);
}

.comparison__table th,
.comparison__table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border-soft);
}

.comparison__table th[scope="col"] {
    font-weight: 700;
    color: var(--color-text);
    font-size: 14px;
}

.comparison__table th[scope="row"] {
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
}

.comparison__table td {
    text-align: center;
    color: var(--color-text-muted);
}

.comparison__table tbody tr:last-child td,
.comparison__table tbody tr:last-child th {
    border-bottom: none;
}

.comparison__table tbody tr:hover {
    background: var(--color-bg-alt);
}

.comparison__group th {
    background: linear-gradient(90deg, var(--color-primary-50) 0%, transparent 100%) !important;
    color: var(--color-primary-dark) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 20px !important;
    border-top: 1px solid var(--color-primary-100);
    border-bottom: 1px solid var(--color-primary-100) !important;
}

[data-theme="dark"] .comparison__group th {
    color: var(--color-primary-light) !important;
}

.comparison__group:hover th {
    background: var(--color-primary-50) !important;
}

.comparison__highlight {
    background: var(--color-primary-50) !important;
    color: var(--color-primary-dark) !important;
    font-weight: 600;
}

[data-theme="dark"] .comparison__highlight {
    color: var(--color-primary-light) !important;
}

.check {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

.check--limited {
    color: #FF9800;
}

.cross {
    color: #d63638;
    font-weight: 700;
    font-size: 18px;
}

/* Testimonials */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.carousel {
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel__track {
    display: flex;
    transition: transform var(--transition-slow);
    will-change: transform;
}

.carousel__slide {
    flex: 0 0 100%;
    padding: 0 var(--space-md);
}

.testimonial {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: border-color var(--transition);
}

.testimonial--has-more {
    cursor: help;
}

.testimonial--has-more:hover,
.testimonial--has-more:focus-within {
    border-color: var(--color-primary-100);
}

.testimonial--has-more .testimonial__quote::after {
    content: ' ';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 4px;
    vertical-align: middle;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.6;
}

.testimonial__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border-radius: inherit;
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
    pointer-events: none;
    z-index: 2;
}

.testimonial--has-more:hover .testimonial__overlay,
.testimonial--has-more:focus-within .testimonial__overlay {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial__overlay-stars {
    color: #FFB400;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    text-align: center;
}

.testimonial__overlay-text {
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    text-align: left;
    font-style: italic;
    white-space: pre-wrap;
    margin: 0 0 var(--space-md);
}

.testimonial__overlay-meta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: 13px;
    color: var(--color-text-muted);
}

.testimonial__overlay-author {
    font-weight: 600;
}

.testimonial__overlay-link {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.testimonial__overlay-link:hover,
.testimonial__overlay-link:focus-visible {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.testimonial__stars {
    color: #FFB400;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.testimonial__quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial__info {
    text-align: left;
}

.testimonial__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
}

.testimonial__role {
    font-size: 13px;
    color: var(--color-text-muted);
}

.carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.carousel__btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.carousel__dots {
    display: flex;
    gap: 8px;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    transition: all var(--transition);
}

.carousel__dot--active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* Pricing */
.pricing {
    padding: var(--space-3xl) 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 880px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.pricing-card--featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card--featured:hover {
    box-shadow: 0 16px 40px rgba(var(--color-primary-rgb), 0.25);
}

.pricing-card__ribbon {
    position: absolute;
    top: -12px;
    right: var(--space-xl);
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.35);
    animation: pulse 2s ease-in-out infinite;
}

.pricing-card__name {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.pricing-card__description {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border-soft);
}

.pricing-card__price-currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
}

.pricing-card__price-value {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.pricing-card__price-period {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.pricing-card__billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border-soft);
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

.pricing-card__billing-btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    border-radius: 100px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pricing-card__billing-btn:hover {
    color: var(--color-text);
}

.pricing-card__billing-btn--active {
    background: var(--color-surface);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.pricing-card__billing-save {
    display: inline-block;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card__billing-btn--active .pricing-card__billing-save {
    background: var(--color-primary);
    color: #fff;
}

.pricing-card__features {
    margin-bottom: var(--space-lg);
}

.pricing-card__notify {
    margin-top: var(--space-md);
    text-align: center;
    font-size: 13px;
}

.pricing-card__notify-link {
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color var(--transition);
}

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

.btn:disabled,
.btn[disabled] {
    background: var(--color-bg-soft);
    color: var(--color-text-soft);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.btn:disabled:hover,
.btn[disabled]:hover {
    background: var(--color-bg-soft);
    color: var(--color-text-soft);
    transform: none;
    box-shadow: none;
}

.pricing-card--featured .btn:disabled,
.pricing-card--featured .btn[disabled] {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    opacity: 0.85;
    cursor: not-allowed;
}

.pricing-card--featured .btn:disabled::before,
.pricing-card--featured .btn[disabled]::before {
    content: '🔒 ';
    margin-right: 4px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.pricing-card__features .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--color-primary-50);
    color: var(--color-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* FAQ */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq__item:hover {
    border-color: var(--color-primary-100);
}

.faq__item[open] {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    list-style: none;
    transition: all var(--transition);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question:hover {
    background: var(--color-bg-alt);
}

.faq__icon {
    flex-shrink: 0;
    color: var(--color-text-soft);
    transition: transform var(--transition);
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Newsletter */
.newsletter {
    padding: var(--space-2xl) 0;
}

.newsletter__inner {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-soft) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
}

.newsletter__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.newsletter__subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter__form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter__input {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.newsletter__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-50);
}

.newsletter__success {
    margin-top: var(--space-md);
    padding: 12px 16px;
    background: var(--color-primary-50);
    color: var(--color-primary-dark);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
}

[data-theme="dark"] .newsletter__success {
    color: var(--color-primary-light);
}

/* Final CTA */
.cta-section {
    padding: var(--space-3xl) 0;
}

.cta-section__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    padding: var(--space-3xl) var(--space-2xl);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.cta-section__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section__title {
    position: relative;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.cta-section__subtitle {
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn--primary {
    background: #fff;
    color: var(--color-primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn--primary:hover {
    background: #fff;
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border-soft);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

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

.footer__logo svg {
    color: var(--color-primary);
}

.footer__tagline {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer__heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border-soft);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copyright {
    font-size: 13px;
    color: var(--color-text-soft);
}

.footer__social {
    display: flex;
    gap: 8px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border-soft);
    transition: all var(--transition);
}

.footer__social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: var(--color-primary-50);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    max-width: 720px;
    margin: 0 auto;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: slideUp 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}

.cookie-banner__text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__content { margin: 0 auto; }
    .hero__badges { justify-content: center; }
    .hero__cta { justify-content: center; }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: var(--space-md);
        padding-left: max(var(--space-md), env(safe-area-inset-left));
        padding-right: max(var(--space-md), env(safe-area-inset-right));
        padding-bottom: max(var(--space-md), env(safe-area-inset-bottom));
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 72px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        overflow-y: auto;
        z-index: 99;
    }

    .nav__menu.is-open {
        display: flex;
    }

    .nav__link {
        padding: 12px 16px;
        font-size: 16px;
    }

    .nav__toggle {
        display: flex;
        order: 3;
    }

    .nav__cta {
        display: none;
    }

    .nav__actions {
        margin-left: auto;
        gap: 4px;
        order: 2;
    }

    .hero {
        padding: var(--space-2xl) 0;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl) var(--space-md);
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }
    .step__connector {
        display: none;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .footer__brand { grid-column: auto; }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

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

    .newsletter__form {
        flex-direction: column;
    }

    .dashboard-mockup {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container { 
        padding-left: max(var(--space-md), env(safe-area-inset-left)); 
        padding-right: max(var(--space-md), env(safe-area-inset-right)); 
    }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
    .hero__title { font-size: 36px; }
    .pricing-card { padding: var(--space-lg); }
    .cta-section__inner { padding: var(--space-xl) var(--space-lg); }
    .feature-card { padding: var(--space-lg); }
}
