:root {
    --primary: #E67E22;
    /* Earthy Orange (Buttons/CTAs) */
    --primary-hover: #D35400;
    --primary-light: #F39C12;
    --accent-teal: #26A69A;
    /* Professional Teal (Borders/Icons) */
    --accent-cyan: #00BCD4;
    --bg-dark: #050505;
    /* Super Black */
    --bg-card: #0F1313;
    /* Deep Teal-tinted Black */
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    /* More subtle */
    --primary-glow: rgba(230, 126, 34, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

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

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.accent-orange {
    color: var(--primary) !important;
}

.accent-teal {
    color: var(--accent-teal) !important;
}

/* BUTTONS & ACTIONS */
.btn {
    display: inline-block !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Outfit', sans-serif !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
}

.btn-primary {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 10px 30px var(--primary-glow) !important;
}

.btn-primary:hover {
    background: var(--primary-light) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px var(--primary-glow) !important;
}

.btn-large {
    padding: 18px 45px !important;
    font-size: 18px !important;
}

.hero-main-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

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

.cta-subtitle strong {
    color: var(--accent-teal);
}

/* NAVBAR */
.glass-nav {
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: none;
    /* REMOVED Divider */
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.logo img {
    height: 52px;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-links a.btn {
    margin-top: 0;
    margin-left: 30px;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.hamburger-btn .material-icons-outlined {
    font-size: 32px;
}

/* MOBILE MENU OVERLAY (FIX) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 2000;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.close-btn .material-icons-outlined {
    font-size: 32px;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-white);
    transition: color 0.3s;
}

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

.menu-links a.btn {
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}

/* PREMIUM HERO SECTION */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/salon_hero.png') center/cover no-repeat;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.95) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px !important;
    width: 90% !important;
    margin: 0 auto !important;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-premium h1 {
    font-size: clamp(48px, 8vw, 92px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-premium p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* MEGA PLAY BUTTON */
.hero-center-actions {
    margin: 40px 0 60px;
}

.mega-play-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mega-play-container:hover {
    transform: scale(1.05);
}

.mega-play-btn {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
}

.mega-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: mega-pulse 2s infinite linear;
}

.mega-play-btn .material-icons-outlined {
    font-size: 48px;
    color: var(--primary);
    margin-left: 5px;
}

.mega-play-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-white);
    opacity: 0.8;
}

@keyframes mega-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

/* ROLES SECTION */
.roles-section {
    padding: 120px 0;
    background: #080808;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.role-card {
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.role-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.role-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(38, 166, 154, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 30px;
}

.role-icon-box .material-icons-outlined {
    font-size: 32px;
}

.role-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.role-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.role-card p strong {
    color: var(--text-white);
}

.role-features {
    list-style: none;
    padding: 0;
}

.role-features li {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.role-features li::before {
    content: 'check_circle';
    font-family: 'Material Icons Outlined';
    font-size: 16px;
    color: var(--accent-teal);
}

/* GLOBAL HUB (POLISH) */
.stat-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    margin: 80px 0 !important;
}

.stat-card {
    text-align: center !important;
    padding: 60px 20px !important;
    background: rgba(15, 19, 19, 0.4) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 32px !important;
    transition: all 0.4s ease !important;
}

.stat-icon {
    font-size: 48px !important;
    /* Bigger icons */
    color: var(--primary) !important;
    margin-bottom: 30px !important;
    opacity: 1;
}

.stat-value {
    font-size: 64px !important;
    /* Smaller number font */
    font-weight: 800 !important;
    color: var(--text-white) !important;
    line-height: 1 !important;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
}

/* Horizontal scrolling countries */
.country-scroll-container {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.country-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.country-name {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    text-transform: uppercase;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* LANGUAGE CLOUD */
.language-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.lang-chip {
    padding: 8px 18px;
    background: rgba(38, 166, 154, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.lang-chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* STORY JOURNEY */
.story-journey {
    padding: 120px 0;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.sticky-visual {
    position: sticky;
    top: 150px;
    height: 600px;
    display: flex;
    justify-content: center;
}

.mockup-phone {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #0f1313;
    overflow: hidden;
    position: relative;
}

.phone-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s;
}

.active-screen {
    opacity: 1 !important;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.narrative-content {
    padding-bottom: 200px;
}

.story-chapter {
    margin-bottom: 300px;
    padding: 40px;
    border: 1px solid transparent;
}

.chapter-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(38, 166, 154, 0.12);
    color: var(--primary);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-chapter h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.story-chapter p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 600px;
}

.story-chapter p strong {
    color: var(--text-white);
    font-weight: 700;
}

.active-chapter {
    border-color: var(--glass-border) !important;
    background: rgba(38, 166, 154, 0.05) !important;
    border-radius: 24px;
}

.sol-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(38, 166, 154, 0.1);
    border: 1px solid var(--accent-teal);
    color: var(--accent-teal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SETUP SECTION */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-dark);
    border-top: none;
}

.how-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 60px !important;
}

.how-card {
    background: var(--bg-card) !important;
    padding: 60px 40px !important;
    border-radius: 32px !important;
    border: 1px solid var(--glass-border) !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.step-badge {
    font-family: 'Outfit' !important;
    font-size: 120px !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.03) !important;
    position: absolute !important;
    top: -20px !important;
    right: 20px !important;
    line-height: 1 !important;
}

/* INDUSTRY GRID (REFINED) */
.industry-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.studio-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.studio-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(38, 166, 154, 0.05);
}

.studio-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.studio-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

/* VIDEO MODAL (NEW) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--glass-border);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: var(--primary);
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* CTA (POLISHED) */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #050505 0%, #0A1E1E 100%);
    text-align: center;
    border-top: none;
    /* REMOVED Divider */
}

.cta h2 {
    font-size: 56px;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.cta-actions {
    margin-bottom: 30px;
}

.trial-promo {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

/* REVEAL SYSTEM */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* APP SHOWCASE - PREMIUM SPLIT-SCREEN LAYOUT */
.app-showcase-section {
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.app-swiper {
    padding: 50px 0 100px !important;
    max-width: 1200px !important;
    margin: 0 auto;
}

.app-swiper .swiper-slide {
    pointer-events: none;
}

.app-swiper .swiper-slide-active {
    pointer-events: auto;
}

.slide-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* LEFT COLUMN - TEXT INFO */
.slide-info {
    text-align: left;
}

.slide-number {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.slide-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 520px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    background: rgba(38, 166, 154, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.feature-item .material-icons-outlined {
    font-size: 18px;
    color: var(--primary);
}

.slide-info .btn {
    opacity: 0;
    transform: translateY(30px);
}

/* RIGHT COLUMN - MEDIA */
.slide-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
}

.device-container {
    position: relative;
    z-index: 2;
}

.device-frame {
    width: 280px;
    aspect-ratio: 9/19;
    background: #000;
    border-radius: 44px;
    position: relative;
    padding: 10px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 2px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    border: 4px solid #121212;
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative Background element */
.deco-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

/* ANIMATION TRIGGERS */
.swiper-slide-active .slide-number {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.swiper-slide-active .slide-title {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

.swiper-slide-active .slide-description {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.swiper-slide-active .slide-features {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

.swiper-slide-active .slide-info .btn {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

.swiper-slide-active .slide-media {
    animation: slideMediaIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideMediaIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* VERTICAL PAGINATION (Right Side) */
.app-swiper .swiper-pagination {
    left: auto !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: auto !important;
}

.app-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid var(--text-muted);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.app-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    border-color: var(--primary);
    height: 30px;
    border-radius: 10px;
}

/* CUSTOM NAV ARROWS (SOBER DESIGN) */
.app-swiper .swiper-button-next,
.app-swiper .swiper-button-prev {
    top: auto !important;
    bottom: 40px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    color: var(--text-white) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.app-swiper .swiper-button-prev {
    left: auto !important;
    right: 140px !important;
}

.app-swiper .swiper-button-next {
    left: auto !important;
    right: 80px !important;
}

.app-swiper .swiper-button-next::after,
.app-swiper .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 400;
}

.app-swiper .swiper-button-next:hover,
.app-swiper .swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* FOOTER */
.footer {
    padding: 60px 0;
    border-top: none;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* MOBILE FIXES & RESPONSIVENESS */
@media (max-width: 992px) {
    .container {
        width: 92%;
    }

    /* Nav Visibility */
    .nav-links {
        display: none !important;
    }

    .hamburger-btn {
        display: block !important;
    }

    .hero-grid,
    .journey-grid,
    .stat-grid,
    .how-grid,
    .roles-grid,
    .slide-inner {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

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

    .slide-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide-description {
        margin: 0 auto 30px;
    }

    .slide-features {
        justify-content: center;
    }

    .deco-circle {
        width: 300px;
        height: 300px;
    }

    .device-frame {
        width: 220px;
    }

    .hero-actions {
        justify-content: center !important;
    }

    .hero-actions {
        justify-content: center !important;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .hero-text p {
        margin: 0 auto 30px;
        font-size: 16px;
    }

    .pricing-highlight {
        margin: 0 auto 40px;
        display: inline-block;
        text-align: center;
    }

    .tea-badge {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100%;
        margin-top: 40px !important;
    }

    .video-link {
        justify-content: center !important;
        width: 100% !important;
    }

    .journey-grid {
        display: block !important;
    }

    .sticky-visual {
        position: sticky !important;
        top: 70px !important;
        height: 350px !important;
        background: var(--bg-dark);
        z-index: 100;
        margin-bottom: 20px;
    }

    .mockup-phone {
        width: 180px;
        height: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .stat-value {
        font-size: 48px !important;
    }

    .btn-large {
        width: 100% !important;
        margin-bottom: 15px;
    }

    .hero-actions {
        flex-direction: column !important;
    }

    .mobile-menu-overlay {
        padding: 1.5rem;
    }

    .menu-links a {
        font-size: 24px;
    }
}