/* ===== CSS Variables - Light Theme ===== */
:root {
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-light: #3B82F6;
    --cta: #F97316;
    --cta-hover: #EA580C;
    --cta-light: #FB923C;
    --success: #16A34A;
    --background: #FFFFFF;
    --background-alt: #F8FAFC;
    --surface: #F1F5F9;
    --surface-hover: #E2E8F0;
    --border: #E2E8F0;
    --border-light: #CBD5E1;
    --text: #0F172A;
    --text-muted: #64748B;
    --text-secondary: #94A3B8;
    --error: #EF4444;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--cta) 100%);
    --gradient-cta: linear-gradient(135deg, var(--cta) 0%, #FB923C 100%);
    --gradient-blue: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    --gradient-text: linear-gradient(135deg, #3B82F6 0%, #F97316 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow-blue: 0 0 60px rgba(37, 99, 235, 0.15);
    --shadow-glow-orange: 0 0 60px rgba(249, 115, 22, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, var(--cta-hover) 0%, var(--cta) 100%);
}

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

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

.btn-secondary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-icon {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher Dropdown */
.lang-switcher {
    position: relative;
}

.lang-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.lang-switcher-toggle:hover {
    border-color: var(--primary);
    background: var(--surface);
}

.lang-switcher-toggle .flag {
    font-size: 18px;
    line-height: 1;
}

.lang-switcher-toggle .arrow {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.lang-switcher.open .lang-switcher-toggle .arrow {
    transform: rotate(180deg);
}

.lang-switcher-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-switcher.open .lang-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.lang-btn:hover {
    color: var(--text);
    background: var(--surface);
}

.lang-btn.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

.lang-btn .flag {
    font-size: 20px;
    line-height: 1;
}

.lang-btn .lang-name {
    flex: 1;
}

.lang-btn .check {
    color: var(--primary);
    opacity: 0;
}

.lang-btn.active .check {
    opacity: 1;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-lang-switcher .lang-btn {
    padding: 10px 16px;
    font-size: 14px;
    background: var(--surface);
    border-radius: var(--radius-md);
    width: auto;
}

.mobile-lang-switcher .lang-btn.active {
    background: var(--gradient-cta);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.mobile-lang-switcher .lang-btn .flag {
    font-size: 18px;
}

.mobile-lang-switcher .lang-btn .lang-name,
.mobile-lang-switcher .lang-btn .check {
    display: none;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 24px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-nav-links a {
    font-size: 16px;
    color: var(--text-muted);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

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

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(37, 99, 235, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* ===== Video Container ===== */
.video-mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border-light);
    background: var(--surface);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-15px) rotateX(-2deg) rotateY(2deg); }
}

.video-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.video-dots {
    display: flex;
    gap: 7px;
}

.video-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.video-dots span:first-child { background: #ff5f57; }
.video-dots span:nth-child(2) { background: #febc2e; }
.video-dots span:last-child { background: #28c840; }

.video-url {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--background);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
}

.video-content {
    position: relative;
    aspect-ratio: 16/9;
    background: #0f172a;
    overflow: hidden;
}

.video-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0f172a;
}

.video-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Overlay with Play Button */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.2) 100%);
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.6);
}

.video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.5);
    transition: var(--transition);
}

.play-button svg {
    width: 32px;
    height: 32px;
    fill: white;
    margin-left: 4px;
}

/* Video Fallback Image */
.video-poster {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--background-alt) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Mobile video between text and CTA */
.hero-mobile-video {
    display: none;
    margin: 24px 0;
}

.hero-mobile-video .video-wrapper {
    max-width: 100%;
    animation: none;
}

.hero-mobile-text {
    display: none;
}

/* Mobile: Show mobile video, hide desktop visual */
@media (max-width: 1023px) {
    .hero-subtitle {
        display: none;
    }
    
    .hero-mobile-text {
        display: none;
        font-size: 17px;
        color: var(--text-muted);
        line-height: 1.7;
        max-width: 500px;
        margin: 0 auto 0;
        text-align: center;
    }
    
    .hero-mobile-video {
        display: block;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

.video-poster-content {
    text-align: center;
}

.video-poster-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.video-poster-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.video-poster h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* Floating Decorative Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.floating-element-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: 50%;
    top: -40px;
    left: -60px;
    animation: float-gentle 10s ease-in-out infinite;
    filter: blur(1px);
}

.floating-element-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(251, 146, 60, 0.1) 100%);
    border-radius: 50%;
    bottom: 30px;
    right: 140px;
    animation: float-gentle 8s ease-in-out infinite reverse;
}

.floating-element-3 {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    top: 45%;
    left: -40px;
    animation: float-gentle 9s ease-in-out infinite;
    animation-delay: -3s;
}

/* Hero section decorative elements */
.hero-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

/* Large gradient orb - top right */
.hero-decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulse-slow 8s ease-in-out infinite;
}

/* Orange accent orb - bottom left */
.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    animation: pulse-slow 10s ease-in-out infinite reverse;
}

/* Small floating circles */
.hero-decoration-3 {
    width: 16px;
    height: 16px;
    background: var(--primary);
    opacity: 0.3;
    top: 20%;
    left: 10%;
    animation: float-up 12s ease-in-out infinite;
}

.hero-decoration-4 {
    width: 12px;
    height: 12px;
    background: var(--cta);
    opacity: 0.4;
    top: 60%;
    left: 5%;
    animation: float-up 10s ease-in-out infinite;
    animation-delay: -4s;
}

.hero-decoration-5 {
    width: 20px;
    height: 20px;
    background: var(--primary);
    opacity: 0.25;
    top: 30%;
    right: 8%;
    animation: float-up 14s ease-in-out infinite;
    animation-delay: -2s;
}

.hero-decoration-6 {
    width: 10px;
    height: 10px;
    background: var(--cta);
    opacity: 0.35;
    top: 70%;
    right: 12%;
    animation: float-up 11s ease-in-out infinite;
    animation-delay: -6s;
}

/* Geometric shapes */
.hero-decoration-7 {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    top: 15%;
    right: 20%;
    animation: rotate-slow 20s linear infinite;
}

.hero-decoration-8 {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(249, 115, 22, 0.12);
    border-radius: 50%;
    bottom: 25%;
    left: 15%;
    animation: rotate-slow 15s linear infinite reverse;
}

/* Dotted pattern */
.hero-decoration-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    border-radius: 0;
    opacity: 0.8;
    top: 40%;
    right: 5%;
    animation: float-gentle 12s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(12px, -18px) rotate(3deg); }
    50% { transform: translate(-8px, -30px) rotate(-3deg); }
    75% { transform: translate(-18px, -12px) rotate(2deg); }
}

@keyframes float-up {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-40px) scale(1.2); 
        opacity: 0.5;
    }
}

@keyframes pulse-slow {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8;
    }
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Phone Mockup ===== */
.phone-mockup {
    position: absolute;
    right: -60px;
    bottom: -40px;
    width: 180px;
    background: #1a1a2e;
    border-radius: 32px;
    padding: 8px;
    box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
    animation: float-phone 6s ease-in-out infinite;
    animation-delay: -2s;
    z-index: 10;
}

@keyframes float-phone {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}

.phone-notch {
    width: 80px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: var(--background);
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    position: relative;
}

.phone-mockup-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-screen #phone-demo-video {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.phone-screen.video-playing #phone-demo-video {
    display: block;
}

.phone-screen.video-playing .phone-mockup-content {
    opacity: 0;
    pointer-events: none;
}

.phone-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.3);
    transition: background 0.3s ease;
    z-index: 10;
}

.phone-play-overlay:hover {
    background: rgba(15, 23, 42, 0.4);
}

.phone-play-button {
    width: 50px;
    height: 50px;
    background: #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-play-button svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.phone-play-overlay:hover .phone-play-button {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.phone-screen.video-playing .phone-play-overlay {
    display: none;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 10px;
    color: var(--text-muted);
}

.phone-status-icons {
    display: flex;
    gap: 4px;
    font-size: 8px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
}

.phone-logo {
    width: 60px;
    height: 16px;
    background: var(--gradient);
    border-radius: 4px;
}

.phone-icons {
    display: flex;
    gap: 8px;
}

.phone-icon {
    width: 20px;
    height: 20px;
    background: var(--surface);
    border-radius: 50%;
}

.phone-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 12px;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.phone-search span {
    font-size: 11px;
    color: var(--text-secondary);
}

.phone-search svg {
    color: var(--text-secondary);
}

.phone-banner {
    margin: 8px 12px;
    padding: 12px;
    background: var(--gradient-cta);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-banner-title {
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.phone-banner-subtitle {
    font-size: 9px;
    color: rgba(255,255,255,0.8);
}

.phone-banner-badge {
    font-size: 20px;
}

.phone-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 12px;
}

.phone-product {
    background: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.phone-product-img {
    height: 60px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
}

.phone-product-tag {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--primary);
    color: white;
    font-size: 7px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.phone-product-tag.sale {
    background: var(--cta);
}

.phone-product-info {
    padding: 8px;
}

.phone-product-name {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 6px;
}

.phone-product-price {
    font-size: 10px;
    font-weight: 700;
    color: var(--cta);
}

.phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 8px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.phone-nav-item {
    color: var(--text-secondary);
    position: relative;
}

.phone-nav-item.active {
    color: var(--primary);
}

.phone-nav-item.cart .cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    width: 14px;
    height: 14px;
    background: var(--cta);
    color: white;
    font-size: 8px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Badge */
.stats-badge {
    position: absolute;
    left: -40px;
    top: 40px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    animation: float-element 7s ease-in-out infinite;
    z-index: 5;
}

.stats-badge-value {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-badge-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Stats Badge */
.stats-badge {
    position: absolute;
    left: -30px;
    top: 60px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    animation: float-element 7s ease-in-out infinite;
}

.stats-badge-value {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-badge-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
    padding: 120px 0;
}

.section-alt {
    background: var(--background-alt);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* ===== Steps ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.step {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 28px;
    background: var(--gradient);
    color: white;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    color: var(--primary-light);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

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

.feature-large {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    color: white;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 14px;
}

/* ===== Advantages ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.advantage {
    text-align: center;
    padding: 40px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.advantage:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    border-color: var(--primary);
}

.advantage-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.advantage h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

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

/* ===== For Who ===== */
.for-who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.for-who-text .section-badge {
    display: inline-block;
}

.for-who-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -0.02em;
}

.for-who-text > p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 17px;
    line-height: 1.7;
}

.for-who-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.for-who-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.for-who-list svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 3px;
}

.for-who-list span {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.for-who-list strong {
    color: var(--text);
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.business-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.business-card:hover {
    border-color: var(--cta);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), var(--shadow-glow-orange);
}

.business-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.business-card span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

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

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
    border-color: var(--primary);
    grid-row: span 2;
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-cta);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}

.testimonial-rating {
    color: var(--cta);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

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

.testimonial-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

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

.testimonial-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.testimonial-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--surface);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--surface-hover);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--cta);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== Contact ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-badge {
    display: inline-block;
}

.contact-info h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--cta);
    transform: translateX(8px);
    box-shadow: var(--shadow-md), var(--shadow-glow-orange);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.contact-method-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #00a8e8 100%);
    color: white;
}

.contact-method-icon.phone {
    background: var(--gradient-cta);
    color: white;
}

.contact-method strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

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

/* ===== Form ===== */
.contact-form-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error);
}

.error-message {
    display: block;
    font-size: 13px;
    color: var(--error);
    margin-top: 8px;
    min-height: 20px;
}

.form-note {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 20px;
}

/* ===== Footer ===== */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 80px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer .logo {
    color: var(--text);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 20px 0 28px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-cta);
    border-color: var(--cta);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-column a:hover {
    color: var(--cta);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-legal a:hover {
    color: var(--cta);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 56px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    transform: scale(0.9);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-content.modal-form {
    max-width: 480px;
    padding: 48px;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--surface-hover);
    color: var(--text);
    border-color: var(--border-light);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    color: white;
    font-size: 36px;
    border-radius: 50%;
    margin: 0 auto 28px;
}

.modal-icon-contact {
    background: var(--gradient);
    font-size: 28px;
}

.modal-icon-contact svg {
    stroke: white;
}

.modal-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 0;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 16px;
}

/* Contact Modal Form */
.contact-modal-form {
    text-align: left;
}

.contact-modal-form .form-group {
    margin-bottom: 20px;
}

.contact-modal-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-modal-form input,
.contact-modal-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-modal-form input.error,
.contact-modal-form textarea.error {
    border-color: var(--error);
}

.contact-modal-form .error-message {
    display: block;
    font-size: 13px;
    color: var(--error);
    margin-top: 6px;
    min-height: 18px;
}

.contact-modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-modal-form button[type="submit"] {
    margin-top: 8px;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-success {
    padding: 20px 0;
}

.form-success .modal-icon {
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 12px;
}

.form-success p {
    margin-bottom: 0;
}

/* ===== Animations ===== */
/* Fast and smooth scroll animations */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Cards and grid items - subtle fade up */
.step, .feature-card, .advantage, .faq-item, .testimonial-card, .business-card {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.step.animated, .feature-card.animated, .advantage.animated, 
.faq-item.animated, .testimonial-card.animated, .business-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Section headers - quick fade */
.section-header {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.section-header.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Number counter animation */
.stat-value,
.testimonial-stat-value,
.stats-badge-value {
    transition: transform 0.3s ease;
}

.stat-value.counting,
.testimonial-stat-value.counting,
.stats-badge-value.counting {
    transform: scale(1.05);
}

/* Hover lift effect for cards */
.step:hover, .feature-card:hover, .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 36px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mobile-badge,
    .stats-badge {
        display: none;
    }
    
    .phone-mockup {
        right: -30px;
        bottom: -20px;
        width: 150px;
    }
    
    .phone-screen {
        min-height: 260px;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card.featured {
        grid-row: span 1;
    }
    
    .for-who-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    /* Mobile lang switcher - show before burger */
    .lang-switcher {
        order: 1;
        margin-left: auto;
        margin-right: 12px;
    }
    
    .lang-switcher .lang-code {
        display: none;
    }
    
    .lang-switcher-toggle {
        padding: 8px 10px;
    }
    
    .mobile-menu-btn {
        order: 2;
    }
    
    .hero-subtitle {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 110px 0 70px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-mobile-video {
        display: block !important;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .hero-mobile-text {
        display: none !important;
    }
    
    .hero-subtitle {
        display: none !important;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .business-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 32px;
    }
    
    .floating-element,
    .phone-mockup {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .business-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ===== Page Styles for About, Blog, Legal ===== */

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero-small {
    padding: 160px 0 60px;
}

.page-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Container Narrow */
.container-narrow {
    max-width: 800px;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.about-stat:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-blue);
}

.about-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--cta);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--cta);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--primary);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
}

.team-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.team-role {
    color: var(--cta);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 16px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Page */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.featured-post-image {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-post-placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--cta);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-post-content {
    padding: 48px 48px 48px 0;
}

.post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.post-category {
    color: var(--primary-light);
    font-weight: 600;
}

.post-date {
    color: var(--text-muted);
}

.featured-post-content h2 {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 16px;
}

.featured-post-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-placeholder {
    color: var(--text-muted);
    opacity: 0.4;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-link {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-card-link:hover {
    color: var(--cta);
}

/* Newsletter */
.newsletter-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--background);
    color: var(--text);
    font-size: 1rem;
    min-width: 280px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Legal Pages */
.legal-content {
    padding-top: 40px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-section li strong {
    color: var(--text);
}

/* Responsive for new pages */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        min-height: 250px;
    }
    
    .featured-post-content {
        padding: 32px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===== Chat FAB Button ===== */
.chat-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: var(--gradient-cta);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.chat-fab svg {
    color: white;
    stroke: white;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.5);
}

.chat-fab:active {
    transform: scale(0.95);
}

/* Chat FAB pulse animation */
.chat-fab::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--cta);
    animation: chat-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes chat-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .chat-fab {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .chat-fab svg {
        width: 24px;
        height: 24px;
    }
}
