/* StreetTalk Design System - Based on Figma Design */
:root {
    /* Brand Colors */
    --primary: #2b4a7d;
    --primary-light: #3b5a8a;
    --primary-dark: #1e3a5f;
    --secondary: #d67254;
    --secondary-light: #e89a82;
    --accent: #3b82f6;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --blue: #3061AD;
    --gradient-blue: linear-gradient(258.84deg, #25BDE2 1.06%, #3061AD 118.08%);

    --orange: #FF4400;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-3xl: 0 35px 60px -12px rgb(0 0 0 / 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.blue-gradient-background{
    background: var(--gradient-blue);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
    gap: var(--space-6);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    font-size: var(--font-size-xl);
}

.logo-accent {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.2s ease;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Sidebar */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
}

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

.mobile-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-sidebar.active .mobile-sidebar-content {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-close {
    background: none;
    border: none;
    font-size: var(--font-size-3xl);
    color: var(--gray-700);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.mobile-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: var(--space-4) 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-links a {
    padding: var(--space-4) var(--space-6);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-links a:hover {
    background: var(--gray-50);
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.mobile-nav-actions .btn-primary,
.mobile-nav-actions .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #e63d00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-base);
}

.btn-icon {
    font-size: var(--font-size-sm);
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(2px);
}

.font-bold {
    font-weight: 900;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-load {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-load-delay-1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.animate-on-load-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: var(--font-size-base);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.highlight-orange {
    background-color: #FF4400;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-top: var(--space-2);
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-32);
    line-height: 1.7;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.hero-btn {
    font-style: italic;
    font-weight: 900;
    font-size: var(--font-size-xl);
    transition: all 0.3s ease;
    text-align: center;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 68, 0, 0.3);
}

.warning-box {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background-color: white;
    border: 1px solid white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--blue);
    margin-bottom: var(--space-6);
    font-weight: 800;
    transition: all 0.3s ease;
}

.warning-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(48, 97, 173, 0.2);
}

.warning-icon {
    color: #FF4400;
    font-size: var(--font-size-base);
}

.warning-box-small {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 800;
    color: var(--blue);
    text-align: center;
    width: 50%;
    justify-content: center;
    margin-left: 8px;
}

.warning-box-small .warning-icon {
    font-size: var(--font-size-xs);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
}

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

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: var(--space-1);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-model {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.hero-model:hover {
    transform: scale(1.05);
}

.hero-logo {
    position: absolute;
    top: 150px;
    right: -90px;
    max-width: 70%;
    height: auto;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.info-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-3xl);
    color: var(--gray-800);
    max-width: 300px;
    width: 100%;
    z-index: 2;
    transform: rotate(5deg);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.info-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.check-icon {
    color: #FF4400;
    font-weight: bold;
    font-size: var(--font-size-base);
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-3xl);
    color: var(--gray-800);
    transform: rotate(3deg);
    transition: all 0.4s ease;
    max-width: 400px;
    width: 100%;
}

.hero-card:hover {
    transform: rotate(0deg) translateY(-12px);
    box-shadow: var(--shadow-3xl);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}

.card-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--secondary);
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    flex: 1;
}

.card-name {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-1);
    font-size: var(--font-size-base);
}

.card-role {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-weight: 500;
}

.card-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--success);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

.card-content {
    space-y: var(--space-3);
}

.conversation-bubble {
    background: var(--gray-100);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    position: relative;
    border: 1px solid var(--gray-200);
}

.conversation-bubble.user {
    background: var(--primary);
    color: var(--white);
    margin-left: var(--space-8);
    border-color: var(--primary);
}

.conversation-bubble p {
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.section-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--blue);
    margin-bottom: var(--space-4);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title-alt {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--blue);
    margin-bottom: var(--space-4);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title-alt-2 {
    font-size: var(--font-size-5xl);
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--blue);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Obstacles Section */
.obstacles {
    padding: var(--space-24) 0;
    background: var(--white);
}

.title-underline {
    width: 200px;
    height: 8px;
    background: #FF4400;
    margin: var(--space-6) auto 0;
    border-radius: var(--radius-full);
}

.obstacles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.obstacle-card {
    background: var(--white);
    border: 2px solid #FF4400;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.obstacle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 68, 0, 0.15);
}

.obstacle-header {
    background: var(--orange);
    padding: var(--space-4);
    text-align: center;
}

.obstacle-header h3 {
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.obstacle-image {
    padding: var(--space-6);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--orange);
}

.obstacle-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    max-width: 300px;
}

/* Solutions Section */
.solutions {
    padding: var(--space-24) 0;
    color: var(--white);
}

.solutions .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.solutions .section-title {
    color: var(--white);
    font-size: var(--font-size-5xl);
    font-weight: 900;
}

.solutions .title-underline {
    background: var(--white);
    width: 200px;
    height: 8px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.solution-card {
    background: var(--orange);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 68, 0, 0.3);
}

.solution-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    padding: var(--space-4);
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.solution-card p {
    font-size: var(--font-size-base);
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.solutions-cta {
    text-align: center;
    margin-top: var(--space-12);
}

.btn-solution-main {
    display: inline-block;
    background: var(--white);
    color: var(--orange);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-solution-main:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Facts Section */
.facts {
    padding: var(--space-24) 0;
    background: var(--orange);
    color: var(--white);
}

.facts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.facts-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.facts-images {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.facts-image-back {
    width: 75%;
    height: auto;
    transform: rotate(-5deg);
    position: relative;
    z-index: 1;
}

.facts-image-front {
    width: 75%;
    height: auto;
    transform: rotate(5deg);
    position: absolute;
    top: 100px;
    left: 200px;
    z-index: 2;
}

.facts-text {
    padding-right: var(--space-8);
    text-align: left;
}

.facts .section-header {
    text-align: left;
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    position: relative;
}

.facts .section-header-content {
    flex: 1;
}

.vertical-line {
    width: 8px;
    height: 100%;
    min-height: 140px;
    background: var(--white);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.facts .section-badge {
    background: var(--white);
    color: var(--orange);
}

.facts .section-title {
    color: var(--white);
    text-align: left;
}

.facts .title-underline {
    display: none;
}

.facts-text-box-wrapper {
    position: relative;
    margin-top: var(--space-8);
    max-width: 500px;
}

.facts-text-box-white {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    width: 100%;
    height: 100%;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.facts-text-box {
    position: relative;
    background: #2C7FBE;
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    transform: rotate(-2deg);
    z-index: 2;
    box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.3);
    right: 5px;
}

.facts-text-box p {
    color: var(--white);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* Section 5 - Fluency Section */
.fluency-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.fluency-gradient-card {
    background: var(--gradient-blue);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-3xl);
    padding: var(--space-8);
}

.fluency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
    align-items: start;
}

.fluency-orange-block-wrapper {
    position: relative;
    top: -50px;
    left: -60px;
}

.fluency-white-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-3xl);
    width: 100%;
    height: 100%;
    transform: rotate(-2deg);
    z-index: 1;
    box-shadow: var(--shadow-lg);
    top: 10px;
    left: 10px;
}

.fluency-orange-block {
    background: var(--orange);
    border-radius: var(--radius-3xl);
    padding: var(--space-10) var(--space-12);
    position: relative;
    box-shadow: var(--shadow-3xl);
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fluency-orange-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 68, 0, 0.3);
}

.alert-icon-top-left {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    width: 200px;
    height: 200px;
    z-index: 2;
    top: -70px;
    left: -70px;
}

.alert-icon-bottom-right {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    width: 120px;
    height: 120px;
    z-index: 2;
    transform: rotate(-30deg);
}

.fluency-orange-block h2 {
    color: var(--white);
    font-size: var(--font-size-5xl);
    font-weight: 900;
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.fluency-blue-block {
    padding: var(--space-5);
    transition: all 0.3s ease;
}

.fluency-blue-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.2);
}

.fluency-blue-block p {
    color: white;
    font-size: var(--font-size-xl);
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.fluency-blue-block p strong {
    font-weight: 800;
    color: white;
}

.fluency-cta {
    text-align: center;
    margin-top: var(--space-8);
}

.btn-fluency {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: var(--space-4) var(--space-12);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-lg);
}

.btn-fluency:hover {
    background: #e63d00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 68, 0, 0.4);
}

/* Section 6 - StreetTalk Features */
.streettalk-features {
    padding: var(--space-24) 0;
    color: var(--white);
}

.streettalk-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-16);
    flex-wrap: wrap;
}

.streettalk-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.vertical-divider {
    width: 8px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    margin-right: 80px;
    margin-left: 50px;
}

.streettalk-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

.fluency-blue-block p strong {
    font-weight: 900;
    color: white;
}

.streettalk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.streettalk-card {
    background: var(--orange);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.streettalk-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 68, 0, 0.3);
}

.streettalk-card-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
}

.streettalk-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.streettalk-card-text {
    flex: 1;
}

.streettalk-card-text h3 {
    color: var(--white);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.streettalk-card-text p {
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

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

.btn-streettalk {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: var(--space-4) var(--space-10);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-lg);
}

.btn-streettalk:hover {
    background: #e63d00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 68, 0, 0.4);
}

/* Section 7 - Testimonials */
.testimonials-section {
    padding: var(--space-32) 0;
    background: var(--white);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.testimonials-section .section-badge {
    display: inline-block;
    color: white;
    font-weight: 700;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.testimonials-section .section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--blue);
    margin: 0;
    line-height: 1.2;
}

.testimonials-section .title-underline-text {
    position: relative;
    display: inline-block;
}

.testimonials-section .title-underline-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
}

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

.testimonials-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    display: flex;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    gap: var(--space-8);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-name {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
}

.testimonial-name .name {
    color: var(--orange);
    font-weight: 700;
}

.testimonial-name .role {
    color: var(--blue);
    font-weight: 400;
}

.testimonial-quote {
    color: var(--blue);
    font-size: var(--font-size-base);
    line-height: 1.7;
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    font-size: var(--font-size-3xl);
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Section 8 - Features/Benefits */
.section-8 {
    padding: var(--space-32) 0;
    background: var(--gradient-blue);
    position: relative;
}

.section-8 .section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-8-top-text {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: white;
    margin-bottom: var(--space-6);
    font-style: italic;
}

.section-8 .section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 var(--space-6) 0;
    line-height: 1.2;
}

.section-8 .section-title-alt {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 var(--space-6) 0;
    line-height: 1.2;
}

.section-8 .title-underline-text {
    position: relative;
    display: inline-block;
    font-weight: 900;
}

.section-8 .title-underline-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
}

.section-8-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--white);
    margin-top: 50px;
}

.section-8-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.section-8-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.section-8-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.section-8-card-image {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-6);
}

.section-8-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.section-8-card:hover .section-8-card-image img {
    transform: scale(1.1);
}

.section-8-card-text {
    color: var(--gray-700);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.section-8-card-text strong {
    font-weight: 700;
    color: var(--gray-900);
}

.section-8-cta {
    text-align: center;
}

.btn-section-8 {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: var(--space-4) var(--space-10);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-lg);
}

.btn-section-8:hover {
    background: #e63d00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Section 9 - Final CTA */
.section-9 {
    padding: var(--space-32) 0;
    background: var(--white);
    position: relative;
}

.section-9-card {
    background: linear-gradient(135deg, #FF4500 0%, #FF5722 100%);
    border-radius: var(--radius-3xl);
    padding: var(--space-16) var(--space-12) var(--space-20) var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-9-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(180deg, #3061AD 0%, #3061AD 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
}

.section-9-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-9-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--space-8);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-9-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white);
    margin-bottom: var(--space-12);
    line-height: 1.7;
    font-weight: 400;
}

.section-9-cta {
    margin-top: var(--space-8);
    position: relative;
    z-index: 2;
}

.btn-section-9 {
    display: inline-block;
    background: var(--white);
    color: #FF4500;
    padding: var(--space-5) var(--space-12);
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: clamp(1rem, 2vw, 1.35rem);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-section-9::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-section-9:hover::before {
    left: 100%;
}

.btn-section-9:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-section-9:active {
    transform: translateY(-1px) scale(0.98);
}

/* Section 10 - FAQ */
.section-10 {
    padding: var(--space-32) 0;
    background: var(--blue);
    position: relative;
}

.section-10 .section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-10 .section-badge {
    color: var(--white);
    font-weight: 700;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    display: inline-block;
}

.section-10 .section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 var(--space-4) 0;
    line-height: 1.2;
}

.section-10 .section-title-alt {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 var(--space-4) 0;
    line-height: 1.2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: var(--space-6) var(--space-8);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--gray-800);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 68, 0, 0.05);
}

.faq-question.active {
    background: rgba(255, 68, 0, 0.1);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-xl);
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-4);
}

.faq-question.active .faq-icon {
    transform: rotate(0deg);
    background: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-8);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 var(--space-8) var(--space-6) var(--space-8);
}

.faq-answer p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
    font-size: var(--font-size-base);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-32) 0;
    background: var(--white);
}


/* Testimonials Section */
.testimonials {
    padding: var(--space-32) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--gray-50);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.testimonial-content {
    margin-bottom: var(--space-6);
}

.testimonial-quote {
    font-size: var(--font-size-4xl);
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: var(--space-4);
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: var(--font-size-lg);
    color: var(--blue);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
    opacity: 1 !important;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-1);
    font-size: var(--font-size-base);
}

.author-role {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}


/* Footer */
.footer {
    background: white;
    color: black;
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-8);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: black;
    line-height: 1.6;
    font-size: var(--font-size-base);
}

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

.footer-column h4 {
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: black;
    font-size: var(--font-size-base);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-2);
}

.footer-column a {
    color: black;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: var(--font-size-sm);
}

.footer-column a:hover {
    color: black;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-700);
    color: black;
    font-size: var(--font-size-sm);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
        margin-top: var(--space-8);
    }

    .hero-title {
        font-size: var(--font-size-5xl);
    }

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

    .hero-visual {
        flex-direction: column;
        gap: var(--space-4);
    }

    .hero-model {
        max-width: 300px;
    }

    .hero-logo {
        max-width: 100px;
        top: 20px;
        right: -20px;
    }

    .info-card {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 300px;
        margin-top: var(--space-4);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .solution-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Section 7 - Testimonials Tablet */
    .testimonials-section .section-title {
        font-size: var(--font-size-3xl);
    }

    .testimonials-carousel-wrapper {
        max-width: 800px;
    }

    /* Section 8 - Features Tablet */
    .section-8-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }

    .section-8 .section-title {
        font-size: var(--font-size-3xl);
    }

    .section-8-card-image {
        height: 240px;
    }

    .facts-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }

    .facts-text {
        padding-right: 0;
    }

    .facts-text-box {
        margin: var(--space-6) auto 0;
    }

    .fluency-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .fluency-orange-block h2 {
        font-size: var(--font-size-3xl);
    }

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

    .streettalk-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .vertical-divider {
        display: none;
    }

    /* Section 9 - Final CTA Tablet */
    .section-9-card {
        padding: var(--space-12) var(--space-10);
    }

    .section-9-title {
        font-size: var(--font-size-3xl);
    }

    .section-9-subtitle {
        font-size: var(--font-size-lg);
    }

    /* Section 10 - FAQ Tablet */
    .section-10 .section-title {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 768px) {
    .nav-content {
        position: relative;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: left;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: 0px !important;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
        text-align: center;
    }

    .hero-description {
        font-size: var(--font-size-lg);
        text-align: center;
        margin-bottom: 50px !important
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0px !important
    }

    /* Make hero image container stack vertically on mobile */
    .hero-image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }

    /* Ensure visual order: model -> logo -> info card */
    .hero-model {
        order: 1;
        max-width: 250px; /* keep existing responsive constraint */
    }

    .hero-logo {
        order: 2;
        position: static;
        top: auto;
        right: auto;
        transform: none;
        margin-top: var(--space-3);
        max-width: 80px; /* smaller on mobile */
        z-index: 1;
        display: none;
    }

    .info-card {
        order: 3;
        position: relative;
        bottom: auto;
        right: auto;
        transform: none;
        margin-top: var(--space-4);
        max-width: 320px;
        width: 100%;
        box-shadow: var(--shadow-lg);
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .solution-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Section 2 - Obstacles Mobile */
    .obstacles-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    /* Section 4 - Facts Mobile */
    .facts {
        padding: var(--space-16) 0;
    }

    .facts-content {
        gap: var(--space-8);
        padding: 0 var(--space-4);
    }

    .facts .section-header {
        margin-bottom: var(--space-6);
    }

    .facts .vertical-line {
        width: 3px;
        height: 60px;
        margin-right: var(--space-3);
    }

    .facts .section-badge {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-2);
    }

    .facts .section-title {
        font-size: var(--font-size-2xl);
        line-height: 1.3;
    }

    .facts-images {
        max-width: 280px;
        margin: var(--space-6) auto 0;
        height: auto;
    }

    .facts-image-back {
        max-width: 180px;
        position: relative;
        top: 0;
        left: 0;
        transform: rotate(-5deg);
    }

    .facts-image-front {
        max-width: 180px;
        position: absolute;
        top: 60px;
        left: 80px;
        transform: rotate(5deg);
    }

    .facts-text-box-wrapper {
        margin-top: var(--space-6);
    }

    .facts-text-box {
        max-width: 100%;
        padding: var(--space-6) var(--space-4);
        margin: 0 auto;
    }

    .facts-text-box p {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }

    .facts-text-box-white {
        transform: rotate(-2deg);
    }

    /* Section 5 - Fluency Mobile */
    .fluency-section {
        padding: var(--space-16) 0;
    }

    .fluency-gradient-card {
        padding: var(--space-6) var(--space-4);
        margin: 0 var(--space-4);
    }

    .fluency-content {
        gap: var(--space-6);
    }

    .fluency-orange-block-wrapper {
        margin-bottom: var(--space-4);
        top: 0;
        left: 0;
    }

    .fluency-white-card {
        transform: rotate(-2deg);
    }

    .fluency-orange-block {
        padding: var(--space-6) var(--space-5);
        transform: rotate(-1deg);
    }

    .fluency-orange-block h2 {
        font-size: var(--font-size-xl);
        line-height: 1.3;
        padding: 0;
    }

    .alert-icon-top-left,
    .alert-icon-bottom-right {
        width: 100px;
        height: 100px;
    }

    .alert-icon-top-left {
        top: var(--space-2);
        left: var(--space-2);
    }

    .alert-icon-bottom-right {
        bottom: var(--space-2);
        right: var(--space-2);
    }

    .fluency-blue-block {
        padding: var(--space-5) var(--space-4);
    }

    .fluency-blue-block p {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }

    .fluency-cta {
        margin-top: var(--space-6);
        padding: 0 var(--space-4);
    }

    .btn-fluency {
        padding: var(--space-3) var(--space-8);
        font-size: var(--font-size-base);
    }

    /* Section 6 - StreetTalk Features Mobile */
    .streettalk-features {
        padding: var(--space-16) 0;
    }

    .streettalk-header {
        padding: 0 var(--space-4);
        margin-bottom: var(--space-8);
        gap: var(--space-3);
        align-items: center;
    }

    .streettalk-logo-img {
        height: 35px;
        width: auto;
    }

    .streettalk-subtitle {
        font-size: var(--font-size-base);
        line-height: 1.5;
        text-align: left;
    }

    .streettalk-grid {
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }

    .streettalk-card {
        padding: var(--space-5);
    }

    .streettalk-card-content {
        flex-direction: row;
        text-align: left;
        gap: var(--space-4);
        align-items: flex-start;
    }

    .streettalk-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        margin: 0;
    }

    .streettalk-card-text {
        text-align: left;
        flex: 1;
    }

    .streettalk-card-text h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-2);
    }

    .streettalk-card-text p {
        font-size: var(--font-size-sm);
        line-height: 1.5;
    }

    .streettalk-cta {
        margin-top: var(--space-8);
        padding: 0 var(--space-4);
    }

    .btn-streettalk {
        padding: var(--space-3) var(--space-8);
        font-size: var(--font-size-base);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }


    /* Section 7 - Testimonials Responsive */
    .testimonials-section .section-title {
        font-size: var(--font-size-3xl);
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-6);
    }

    .testimonial-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    /* Section 8 - Features Responsive */
    .section-8 .section-title {
        font-size: var(--font-size-3xl);
    }

    .section-8-top-text {
        font-size: var(--font-size-lg);
    }

    .section-8-subtitle {
        font-size: var(--font-size-base);
    }

    .section-8-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .section-8-card-image {
        height: 220px;
    }

    /* Section 9 - Final CTA Responsive */
    .section-9-card {
        padding: var(--space-12) var(--space-6) var(--space-16) var(--space-6);
    }

    .section-9-card::after {
        height: 100px;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }

    .section-9-title {
        margin-bottom: var(--space-6);
    }

    .section-9-subtitle {
        margin-bottom: var(--space-8);
    }

    .btn-section-9 {
        padding: var(--space-4) var(--space-8);
    }

    /* Section 10 - FAQ Responsive */
    .section-10 .section-title {
        font-size: var(--font-size-3xl);
    }

    .faq-question {
        font-size: var(--font-size-sm);
        padding: var(--space-4) var(--space-6);
    }

    .faq-answer p {
        font-size: var(--font-size-sm);
    }
}
