/* ===================================
   CSS Variables & Reset
   =================================== */

:root {
    /* Brand Colors */
    --primary-blue: #1A237E;
    --primary-cyan: #00D4FF;
    --white: #FFFFFF;
    --dark: #263238;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text-gray: #666666;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

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

/* Hide scrollbar but allow scrolling */
::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background-color: #1A237E; /* fills safe-area insets top/bottom on iOS */
}

body {
    width: 100%;
    max-width: 100vw;
}

/* Contain horizontal overflow at content level, not on html/body
   (overflow-x on body breaks viewport scrolling per CSS spec) */
main {
    max-width: 100vw;
    overflow-x: clip;
}

/* iOS safe area support - apply to specific elements, not body */
@supports (padding: max(0px)) {
    .navbar-new,
    .navbar {
        padding-top: env(safe-area-inset-top);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .footer,
    .footer-new {
        padding-bottom: max(var(--spacing-sm), env(safe-area-inset-bottom));
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .hero-new-container,
    .container {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
    }
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--dark);
    background-color: #1A237E; /* dark blue fills top/bottom safe area insets on iOS */
    overscroll-behavior: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    letter-spacing: -0.011em;
}

main {
    max-width: 100%;
}

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

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

ul {
    list-style: none;
}

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

/* ===================================
   Utility Classes
   =================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    padding: 0 var(--spacing-sm);
}

.section-intro {
    font-size: 1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 var(--spacing-sm);
}

.section-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-image img:hover {
    transform: scale(1.02);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade-in from left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade-in from right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale fade-in */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.fade-in-stagger > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.fade-in-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.fade-in-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.fade-in-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Animation delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===================================
   Navigation Bar - Apple Style
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(251, 251, 253, 0.92);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo-img {
    height: 32px;
    width: auto;
    opacity: 0.92;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
}

/* Desktop Navigation */
.nav-menu-desktop {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-desktop .nav-link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.72);
    padding: 0 20px;
    height: 52px;
    display: flex;
    align-items: center;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.nav-menu-desktop .nav-link:hover {
    color: rgba(0, 0, 0, 0.88);
}

.nav-menu-desktop .nav-link.active {
    color: var(--primary-blue);
    font-weight: 500;
}

/* CTA - Clean pill button */
.nav-link-cta {
    background: var(--primary-blue) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 9px 18px !important;
    border-radius: 980px !important;
    height: auto !important;
    margin-left: 12px;
    transition: all 0.2s ease;
}

.nav-link-cta:hover {
    background: #0d1547 !important;
}

.nav-link-cta:active {
    transform: scale(0.97);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    z-index: 1002;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: opacity 0.3s ease;
}

.nav-toggle:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 18px;
    height: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 18px;
    height: 1px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    transition: all 0.25s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
}

.hamburger-inner::before {
    top: -6px;
}

.hamburger-inner::after {
    bottom: -6px;
}

/* Hamburger Animation */
.nav-toggle.active .hamburger-inner {
    background: transparent;
}

.nav-toggle.active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
    background: rgba(0, 0, 0, 0.8);
}

.nav-toggle.active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
    background: rgba(0, 0, 0, 0.8);
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 35, 126, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Panel */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    box-shadow: -8px 0 40px rgba(26, 35, 126, 0.15);
    transform: translateX(100%);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.nav-mobile.active {
    display: flex;
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(26, 35, 126, 0.08);
}

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

.nav-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-close svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.nav-close:hover {
    background: #0d1547;
    transform: rotate(90deg);
}

.nav-mobile-menu {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    flex: 1;
}

.nav-mobile-menu li {
    margin-bottom: 0.5rem;
}

.nav-mobile-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--dark);
    background: transparent;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nav-mobile-menu .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 0 4px 4px 0;
    transition: height 0.2s ease;
}

.nav-mobile-menu .nav-link:hover,
.nav-mobile-menu .nav-link.active {
    background: rgba(26, 35, 126, 0.06);
    color: var(--primary-blue);
}

.nav-mobile-menu .nav-link:hover::before,
.nav-mobile-menu .nav-link.active::before {
    height: 60%;
}

.nav-mobile-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(26, 35, 126, 0.08);
    background: rgba(26, 35, 126, 0.02);
}

.nav-mobile-footer p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.nav-mobile-email {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-mobile-email:hover {
    color: var(--primary-cyan);
}

/* Body scroll lock when menu is open */
body.nav-open {
    overflow: hidden;
}

/* Desktop styles */
@media (min-width: 1100px) {
    .nav-toggle {
        display: none;
    }

    .nav-mobile,
    .nav-overlay {
        display: none;
    }

    .nav-menu-desktop {
        display: flex;
    }
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 52px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(0, 212, 255, 0.75) 100%),
        rgba(26, 35, 126, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 var(--spacing-sm);
    max-width: 900px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-title .big-g {
    font-size: 1.5em;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: center;
    width: 100%;
    max-width: 280px;
    min-height: 48px;
    touch-action: manipulation;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: #00BFE8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-secondary:active {
    background-color: var(--light-gray);
}

.btn-full {
    width: 100%;
    max-width: 100%;
}

/* ===================================
   Problem Section
   =================================== */

.problem-section {
    background-color: var(--light-gray);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.problem-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex: 1 1 100%;
    max-width: 100%;
}

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

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-cyan);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   Solution Section
   =================================== */

.solution-section {
    background-color: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.solution-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2A3F9E 100%);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.solution-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-cyan);
}

.solution-icon svg {
    width: 100%;
    height: 100%;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.solution-card p {
    line-height: 1.7;
    opacity: 0.95;
}

/* ===================================
   How It Works Section
   =================================== */

.how-section {
    background-color: var(--light-gray);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.step {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00BFE8 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: var(--spacing-sm) auto var(--spacing-sm);
    color: var(--primary-blue);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: var(--text-gray);
    line-height: 1.7;
}

.step-arrow {
    width: 40px;
    height: 40px;
    color: var(--primary-cyan);
    transform: rotate(90deg);
}

.step-arrow svg {
    width: 100%;
    height: 100%;
}

/* ===================================
   Value Propositions Section
   =================================== */

.value-section {
    background-color: var(--white);
    touch-action: pan-x pan-y;
}

.value-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.tab-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--light-gray);
    color: var(--dark);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    text-align: left;
}

.tab-btn:hover {
    background-color: var(--medium-gray);
}

.tab-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.tab-content {
    background-color: var(--light-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.value-list li svg {
    width: 24px;
    height: 24px;
    color: var(--primary-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-list li span {
    font-size: 1.125rem;
    color: var(--dark);
    line-height: 1.6;
}

/* ===================================
   Technology Section
   =================================== */

.tech-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.tech-section .section-title {
    color: var(--white);
}

.tech-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.tech-column {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.tech-column h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: var(--primary-cyan);
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.tech-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.tech-list li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-cyan);
    flex-shrink: 0;
    margin-top: 4px;
}

.tech-list li span {
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* ===================================
   Market Section
   =================================== */

.market-section {
    background-color: var(--light-gray);
}

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

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2A3F9E 100%);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
}

.stat-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.market-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.market-column h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.market-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.market-list li {
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.market-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 700;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.use-case-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-cyan);
}

.use-case-card h4 {
    font-size: 1.125rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.use-case-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-block {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--light-gray);
    border-radius: var(--radius-md);
}

.info-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-content h4 {
    font-size: 1.125rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.info-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-cyan);
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

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

.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 1.0625rem;
    opacity: 0.95;
    line-height: 1.6;
}

.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-cyan);
}

.footer-contact p {
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--primary-cyan);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-links span {
    opacity: 0.5;
}

.copyright {
    font-size: 1rem;
    opacity: 0.85;
}

/* ===================================
   Mobile Optimizations (max-width: 767px)
   =================================== */

@media (max-width: 767px) {
    /* Improved hero for mobile */
    .hero {
        min-height: 100svh; /* Use small viewport height for mobile browsers */
        height: auto;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.5;
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-xs);
    }

    .hero-content {
        padding: 0 var(--spacing-sm);
    }

    /* Better touch targets */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-buttons {
        gap: 0.75rem;
        width: 100%;
        padding: 0 var(--spacing-sm);
    }

    /* Section spacing */
    .section {
        padding: var(--spacing-lg) 0;
    }

    .section-title {
        font-size: 1.5rem;
        padding: 0 var(--spacing-xs);
    }

    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-md);
    }

    /* Problem cards mobile */
    .problem-card {
        padding: var(--spacing-sm);
    }

    .problem-card h3 {
        font-size: 1.0625rem;
    }

    .problem-card p {
        font-size: 0.875rem;
    }

    /* Solution cards mobile */
    .solution-card {
        padding: var(--spacing-sm);
    }

    .solution-card h3 {
        font-size: 1rem;
    }

    .solution-card p {
        font-size: 0.875rem;
    }

    /* Steps mobile */
    .steps-container {
        gap: var(--spacing-sm);
    }

    .step {
        padding: var(--spacing-sm);
    }

    .step h3 {
        font-size: 1.0625rem;
    }

    .step p {
        font-size: 0.875rem;
    }

    .step-arrow {
        width: 24px;
        height: 24px;
        margin: var(--spacing-xs) 0;
    }

    /* Value tabs mobile */
    .tab-buttons {
        gap: 0.5rem;
        padding: 0 var(--spacing-xs);
    }

    .tab-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        min-height: 44px;
    }

    .value-list li {
        padding: 0.625rem 0;
        font-size: 0.9375rem;
    }

    .value-list svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    /* Tech section mobile */
    .tech-column {
        padding: var(--spacing-sm);
    }

    .tech-column h3 {
        font-size: 1.125rem;
    }

    .tech-list li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }

    .tech-list svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    /* Contact form mobile */
    .contact-form {
        padding: var(--spacing-sm);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents iOS zoom */
        min-height: 48px;
        padding: 0.75rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    /* Contact info mobile */
    .contact-info {
        padding: var(--spacing-sm);
    }

    .info-block {
        padding: 0.75rem 0;
    }

    .info-block h4 {
        font-size: 0.9375rem;
    }

    .info-block p {
        font-size: 0.875rem;
    }

    /* Footer mobile */
    .footer {
        padding: var(--spacing-md) 0 var(--spacing-sm);
    }

    .footer-logo {
        height: 48px;
    }

    .footer-tagline {
        font-size: 0.9375rem;
    }

    .footer-contact h4 {
        font-size: 1rem;
    }

    .footer-contact p {
        font-size: 0.875rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .copyright {
        font-size: 0.8125rem;
    }

}

/* Extra small devices */
@media (max-width: 374px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

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

    .tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ===================================
   Responsive Design - Tablet
   =================================== */

@media (min-width: 768px) {
    :root {
        --font-size-base: 18px;
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }

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

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
    }

    .problem-card {
        flex: 1 1 calc(50% - var(--spacing-md));
        max-width: calc(50% - var(--spacing-md) / 2);
    }

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

    .steps-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .step {
        max-width: 280px;
    }

    .step-arrow {
        transform: rotate(0deg);
        margin-top: 60px;
    }

    .tab-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-btn {
        flex: 0 0 auto;
        text-align: center;
    }

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

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===================================
   Responsive Design - Desktop
   =================================== */

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .problem-card {
        flex: 0 1 calc(33.333% - var(--spacing-md));
        max-width: calc(33.333% - var(--spacing-md) / 2);
    }

    .solution-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .use-cases-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .market-content {
        grid-template-columns: 300px 1fr;
    }
}

/* ===================================
   Skip Link (Accessibility)
   =================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* ===================================
   Back to Top Button
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.back-to-top:focus-visible {
    outline: 3px solid var(--primary-cyan);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

/* ===================================
   Business Impact Section
   =================================== */

.impact-section {
    background-color: var(--light-gray);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.impact-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.impact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    color: var(--primary-cyan);
}

.impact-icon svg {
    width: 100%;
    height: 100%;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.impact-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .impact-number {
        font-size: 3rem;
    }
}

/* ===================================
   Focus Visible Improvements
   =================================== */

*:focus {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--primary-cyan);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.3);
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

/* ===================================
   Reduced Motion Preferences
   =================================== */

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

    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .fade-in-scale {
        opacity: 1;
        transform: none;
    }

    .hero-video {
        animation: none;
    }
}

/* ===================================
   High Contrast Preferences
   =================================== */

@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .btn-primary {
        border: 2px solid var(--white);
    }

    .problem-card,
    .solution-card,
    .step,
    .impact-card {
        border: 2px solid var(--dark);
    }

    .nav-link:hover,
    .nav-link:focus {
        text-decoration: underline;
    }
}

/* ===================================
   Form Loading State
   =================================== */

.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

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

.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--spacing-md);
}

.form-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--spacing-md);
}

/* ===================================
   Ericsson-Style Sections
   =================================== */

/* Light heading style */
.section-title-light {
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.section-intro-light {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .section-title-light {
        font-size: 2.5rem;
    }

    .section-intro-light {
        font-size: 1.0625rem;
    }
}

/* Benefits Grid Section */
.benefits-section {
    background: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
}

.benefits-section .container {
    max-width: 1200px;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.benefit-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.benefit-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-image {
    transform: scale(1.02);
}

.benefit-card h3 {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 1023px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 639px) {
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Two-Column Feature Section */
.feature-section {
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
    background: var(--white);
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

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

.feature-text h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.feature-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: var(--spacing-md);
}

.feature-text p:last-child {
    margin-bottom: 0;
}

.feature-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 0;
}

@media (min-width: 768px) {
    .feature-content {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--spacing-xl);
        align-items: start;
    }

    .feature-text {
        padding-right: var(--spacing-md);
    }

    .feature-text h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .feature-content {
        grid-template-columns: 1.3fr 1fr;
    }

    .feature-text h2 {
        font-size: 2.5rem;
    }

    .feature-text {
        padding-right: var(--spacing-lg);
    }
}

/* Full-Width Banner Section */
.banner-section {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

.banner-content {
    background: var(--primary-blue);
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    order: 1;
}

.banner-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.35;
}

.banner-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.banner-content .btn {
    width: fit-content;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.banner-content .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.banner-content .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.banner-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    order: 2;
}

@media (min-width: 768px) {
    .banner-section {
        grid-template-columns: 1fr 1fr;
    }

    .banner-content {
        padding: var(--spacing-xl);
        order: 1;
    }

    .banner-content h2 {
        font-size: 1.75rem;
    }

    .banner-image {
        height: auto;
        min-height: 400px;
        order: 2;
    }
}

@media (min-width: 1024px) {
    .banner-content {
        padding: var(--spacing-2xl);
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .navbar,
    .nav-toggle,
    .hero-video,
    .btn {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        margin-top: 0;
        page-break-after: always;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* ===================================
   New Navbar - DogusTech Style
   =================================== */

.navbar-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-new.scrolled {
    background: rgba(26, 35, 126, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-new-container {
    max-width: min(1400px, 100vw);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-new-logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.nav-logo-img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo-img:hover {
    opacity: 0.85;
}

.nav-new-menu {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-new-link {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.nav-new-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00D4FF;
    transition: width 0.3s ease;
}

.nav-new-link:hover {
    color: #fff;
}

.nav-new-link:hover::after {
    width: 100%;
}

.nav-new-link.active {
    color: #fff;
}


.nav-new-link.active::after {
    width: 100%;
}

/* Mobile toggle for new navbar */
.nav-new-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 1002;
    cursor: pointer;
    background: transparent;
    border: none;
}

/* Hamburger toggle active state (menu open) */
.nav-new-toggle.active {
    z-index: 1005;
}

/* Mobile and Tablet: Show hamburger, hide desktop menu */
@media (max-width: 1099px) {
    .nav-new-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-new-menu {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Tablet-specific adjustments (768px - 1099px) */
@media (min-width: 768px) and (max-width: 1099px) {
    .nav-new-container {
        padding: 0 30px;
    }
}

/* Desktop: Show menu, hide hamburger */
@media (min-width: 1100px) {
    .nav-new-toggle {
        display: none !important;
        visibility: hidden !important;
    }

    .nav-new-menu {
        display: flex !important;
        visibility: visible !important;
    }
}

/* ===================================
   New Hero Section - DogusTech Style
   =================================== */

.hero-new {
    background: #0a0a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 0;
    background: url('newstart.jpg') center center / cover no-repeat;
}

.hero-media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-media.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(26, 35, 126, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-new-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40vh 40px 80px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-new-content {
    text-align: left;
    max-width: 800px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}

.hero-label-bar {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #00D4FF;
    margin-right: 16px;
}

.hero-new-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-new-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 48px;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-new-description {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 0 32px;
}

.hero-new-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    background: #00D4FF;
    transition: all 0.3s ease;
}

.hero-new-cta:hover {
    background: #00b8d9;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.hero-new-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Network graphic */
.hero-new-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-graphic {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    position: relative;
}

.network-svg {
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.network-svg .connections line {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { stroke-opacity: 0.2; }
    50% { stroke-opacity: 0.5; }
}

/* Responsive for new hero */
@media (min-width: 768px) {
    .hero-new-container {
        padding: 0 40px 100px 40px;
    }

    .hero-new-title {
        font-size: 3.5rem;
    }
}

/* Tablet-specific hero adjustments (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-new-container {
        padding: 100px 32px 80px 32px;
        align-items: center;
        min-height: 100vh;
    }

    .hero-new-content {
        max-width: 90%;
    }

    .hero-new-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-new-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .hero-new-title {
        font-size: 4rem;
    }
}

@media (min-width: 1200px) {
    .hero-new-container {
        padding: 0 60px 100px 60px;
    }

    .hero-new-title {
        font-size: 5rem;
    }
}

@media (max-width: 767px) {
    .nav-new-container {
        padding: 0 20px;
        height: 70px;
    }

    .hero-new-container {
        padding: 120px 24px 60px;
        align-items: center;
    }

    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .hero-label-bar {
        width: 18px;
    }

    .hero-new-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }

    .hero-new-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-new-cta {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }
}

/* ===================================
   Stats Highlight Section
   =================================== */

.stats-highlight-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #e5e5e5;
}

.stats-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.stat-highlight-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-highlight-label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-blue);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .stat-highlight-number {
        font-size: 4rem;
    }

    .stat-highlight-label {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .stats-highlight-section {
        padding: 100px 0;
    }

    .stat-highlight-number {
        font-size: 4.5rem;
    }
}

@media (max-width: 767px) {
    .stats-highlight-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===================================
   Industries Section - ABB Style
   =================================== */

.industries-section {
    background: #fff;
    padding: 80px 0 60px;
    overflow: hidden;
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 40px;
}

.industries-text {
    max-width: 800px;
}

.industries-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.industries-subtitle {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
}

.industries-nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    padding-bottom: 8px;
}

.industries-arrow {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 0;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.industries-arrow:hover {
    color: #000;
}

.industries-carousel {
    width: calc(100% + 32px);
    max-width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
}

.industries-carousel::-webkit-scrollbar {
    display: none;
}

.industries-track {
    display: flex;
    gap: 0;
}

.industry-slide {
    flex: 1 0 25%;
    min-width: 320px;
    height: 400px;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.industry-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    transition: opacity 0.3s ease;
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.industry-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Tap indicator - hidden on desktop */
.tap-indicator {
    display: none;
}

/* Mobile tap indicator */
@media (max-width: 1024px) {
    .tap-indicator {
        display: inline-block;
        font-size: 0.75rem;
        color: var(--primary-cyan);
        margin-top: 8px;
        padding: 4px 10px;
        border: 1px solid var(--primary-cyan);
        border-radius: 12px;
        animation: tapPulse 2s ease-in-out infinite;
    }

    .industry-slide.hover-active .tap-indicator {
        display: none;
    }

    @keyframes tapPulse {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }
}

.industry-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-blue);
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-hover .industry-title {
    margin-bottom: 12px;
}

.industry-hover-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #fff;
}

.industry-link-arrow {
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.2s ease;
}

.industry-slide:hover img,
.industry-slide.hover-active img {
    opacity: 0;
}

.industry-slide:hover .industry-content,
.industry-slide.hover-active .industry-content {
    opacity: 0;
}

.industry-slide:hover .industry-hover,
.industry-slide.hover-active .industry-hover {
    opacity: 1;
}

.industry-slide:hover .industry-link-arrow,
.industry-slide.hover-active .industry-link-arrow {
    transform: translateX(4px);
}

.industries-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 14px 28px;
    background: var(--primary-blue);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.industries-cta:hover {
    background: #0D1654;
    transform: translateY(-2px);
}

.industries-cta span {
    transition: transform 0.2s ease;
}

.industries-cta:hover span {
    transform: translateX(4px);
}

@media (min-width: 1024px) {
    .industries-title {
        font-size: 3rem;
    }

    .industry-slide {
        flex: 1 0 25%;
        min-width: 0;
        height: 480px;
    }
}

@media (max-width: 1024px) {
    .industry-slide {
        flex: 0 0 50%;
        min-width: 280px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 50px 0 40px;
    }

    .industries-header {
        flex-direction: column;
        gap: 16px;
    }

    .industries-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .industries-subtitle {
        font-size: 0.9rem;
    }

    .industries-nav {
        display: none;
    }

    .industries-carousel {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-left: 16px;
        scroll-padding-left: 16px;
    }

    .industries-track {
        padding-right: 16px;
        gap: 12px;
    }

    .industry-slide {
        flex: 0 0 85%;
        min-width: 0;
        height: 320px;
        scroll-snap-align: start;
        border-radius: 8px;
    }

    .industry-slide img {
        border-radius: 8px;
    }

    .industry-hover {
        border-radius: 8px;
    }

    .industry-content {
        padding: 16px;
    }

    .industry-title {
        font-size: 1.1rem;
    }

    .industry-desc {
        font-size: 0.8rem;
    }

    .industry-hover {
        padding: 16px;
    }

    .industry-hover-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .industries-cta {
        margin-top: 24px;
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .industries-section {
        padding: 40px 0 30px;
    }

    .industries-title {
        font-size: 1.25rem;
    }

    .industry-slide {
        flex: 0 0 90%;
        height: 280px;
    }

    .industry-title {
        font-size: 1rem;
    }

    .industry-hover-text {
        font-size: 0.8rem;
    }
}

/* ===================================
   MWC Banner Section
   =================================== */

.mwc-banner-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
    padding: 0;
    overflow: hidden;
}

.mwc-banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.mwc-banner-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mwc-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary-cyan);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.mwc-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.mwc-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.mwc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-cyan);
    color: #000;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    width: fit-content;
}

.mwc-cta:hover {
    background: #fff;
    transform: translateY(-2px);
}

.mwc-cta span {
    transition: transform 0.2s ease;
}

.mwc-cta:hover span {
    transform: translateX(4px);
}

.mwc-banner-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.mwc-banner-image img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .mwc-banner-container {
        grid-template-columns: 1fr;
    }

    .mwc-banner-content {
        padding: 50px 40px;
        text-align: center;
        align-items: center;
    }

    .mwc-title {
        font-size: 2rem;
    }

    .mwc-banner-image {
        padding: 20px 40px 50px;
    }
}

@media (max-width: 768px) {
    .mwc-banner-content {
        padding: 40px 24px;
    }

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

    .mwc-description {
        font-size: 0.9rem;
    }

    .mwc-cta {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .mwc-banner-image {
        padding: 16px 24px 40px;
    }

    .mwc-banner-image img {
        max-height: 200px;
    }
}

/* ===================================
   About Us Section
   =================================== */

.about-section {
    position: relative;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 80px 0;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231A237E' stroke-width='1'%3E%3Cpath d='M0 300 Q150 200 300 300 T600 300'/%3E%3Cpath d='M0 350 Q150 250 300 350 T600 350'/%3E%3Cpath d='M0 400 Q150 300 300 400 T600 400'/%3E%3Cpath d='M0 250 Q150 150 300 250 T600 250'/%3E%3Cpath d='M0 200 Q150 100 300 200 T600 200'/%3E%3Ccircle cx='100' cy='300' r='80' /%3E%3Ccircle cx='100' cy='300' r='120' /%3E%3Ccircle cx='100' cy='300' r='160' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 600px 600px;
    background-position: left center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    max-width: 500px;
}

.about-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-images {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.about-img {
    width: calc(50% - 8px);
    max-width: 280px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

    .about-text p {
        font-size: 1.0625rem;
    }

    .about-images {
        justify-content: flex-end;
    }

    .about-img {
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 120px 0;
    }

    .about-content {
        gap: 80px;
    }

    .about-img {
        max-width: 360px;
    }
}

/* ===================================
   Contact + Footer Overlap Section
   =================================== */

.contact-footer-overlap {
    position: relative;
}

.contact-overlap-white {
    background: #fff;
    padding: 80px 0 200px;
}

.contact-overlap-text {
    max-width: 450px;
}

.contact-overlap-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-overlap-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.75;
}

.contact-overlap-dark {
    background: #1a2744;
    padding: 80px 0 60px;
}

.contact-overlap-dark .footer-new-grid {
    padding: 0;
    max-width: 50%;
}

/* Floating Form Card */
.contact-floating-form {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    pointer-events: none;
}

.contact-floating-form .container {
    display: flex;
    justify-content: flex-end;
}

.contact-form-card {
    background: #f5f8fc;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 580px;
    pointer-events: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-new-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-new label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group-new input,
.form-group-new textarea {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: var(--primary-blue);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 16px 48px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.contact-submit-btn:hover {
    background: #0d1547;
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 12px;
    text-align: center;
    line-height: 1.5;
}

.form-privacy-note a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: #1a2744;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom-bar .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (min-width: 640px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .footer-bottom-bar .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .contact-overlap-white {
        padding: 100px 0 300px;
    }

    .contact-overlap-text h2 {
        font-size: 3rem;
    }

    .contact-overlap-dark {
        padding: 100px 0 80px;
    }

    .contact-form-card {
        padding: 48px;
    }
}

/* Mobile: Stack layout */
@media (max-width: 1023px) {
    .contact-floating-form {
        position: relative;
        top: 0;
        padding: 0 20px 40px;
        background: #fff;
    }

    .contact-floating-form .container {
        justify-content: center;
    }

    .contact-form-card {
        max-width: 100%;
    }

    .contact-overlap-white {
        padding: 60px 0 40px;
    }

    .contact-overlap-dark .footer-new-grid {
        max-width: 100%;
    }
}

/* ===================================
   New Footer - DogusTech Style
   =================================== */

.footer-new {
    background: #1a2744;
    color: #fff;
}

.footer-new .container {
    max-width: 1200px;
}

.footer-new-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
}

.footer-new-column h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-new-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-new-column ul li {
    margin-bottom: 12px;
}

.footer-new-column ul li a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-new-column ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.footer-social span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-new-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-new-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-new-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-new-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.footer-new-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-new-legal a:hover {
    color: #fff;
}

@media (min-width: 768px) {
    .footer-new-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 80px 0;
    }

    .footer-new-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-new-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

/* ===================================
   EXTRACTED INLINE STYLES
   =================================== */

/* Solution Section */
.solution-section {
    background: #fff;
    padding: 80px 0;
}

.solution-section .section-title {
    color: #242424;
}

.solution-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Banner Sections */
.banner-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
}

.banner-content {
    background: #1A237E;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #00D4FF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.banner-title {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.banner-title-lg {
    margin-bottom: 1.5rem;
}

.banner-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.banner-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

.banner-video-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

.btn-banner {
    width: fit-content;
    border-radius: 0;
}


/* Why Choose TEASOL Section - Clean Minimal */
.why-teasol-section {
    background: #ffffff;
    padding: var(--spacing-2xl) 0;
}

.why-teasol-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.why-teasol-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1rem;
}

.why-teasol-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    line-height: 1.15;
}

.why-teasol-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.why-teasol-description:last-of-type {
    margin-bottom: 0;
}

.why-teasol-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-teasol-logo {
    width: 100%;
    max-width: 320px;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .why-teasol-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .why-teasol-title {
        font-size: 2.25rem;
    }

    .why-teasol-logo {
        max-width: 240px;
    }

    .why-teasol-logo-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .why-teasol-section {
        padding: var(--spacing-xl) 0;
    }

    .why-teasol-title {
        font-size: 1.75rem;
    }

    .why-teasol-description {
        font-size: 1rem;
    }

    .why-teasol-logo {
        max-width: 180px;
    }
}

/* Benefits Grid */
.benefits-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .benefits-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .banner-content {
        padding: 40px 24px;
    }
    
    .banner-image {
        min-height: 300px;
        order: -1;
    }

    .banner-video-wrapper,
    .banner-video {
        min-height: 300px;
        order: -1;
    }

    .feature-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        padding: 32px 20px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-description {
        font-size: 0.9375rem;
    }
    
    .banner-image {
        min-height: 250px;
    }

    .banner-video-wrapper,
    .banner-video {
        min-height: 250px;
    }

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

/* ===================================
   Cookie Consent Banner & Modal
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--primary-blue);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #2A3F9E;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--medium-gray);
}

.cookie-btn-reject:hover {
    background: var(--light-gray);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.cookie-btn-settings:hover {
    background: rgba(26, 35, 126, 0.05);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.cookie-modal-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-gray);
    transition: color 0.2s ease;
}

.cookie-modal-close:hover {
    color: var(--dark);
}

.cookie-modal-close svg {
    width: 20px;
    height: 20px;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-modal-body > p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-category {
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-gray);
}

.cookie-category-info h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.cookie-category-info p {
    font-size: 0.8125rem;
    color: var(--text-gray);
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-blue);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle.disabled .cookie-toggle-slider {
    background-color: var(--primary-blue);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--medium-gray);
    background: var(--light-gray);
}

/* Mobile styles for cookie consent */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
}
