/* ============================================
   CSS Reset & Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Mode Colors - White, Red, Orange, Purple */
    --bg-primary: #FFFFFF;
    --bg-surface: #FFFFFF;
    --bg-muted: #F9FAFB;
    --bg-red-tint: #FEF2F2;
    --bg-orange-tint: #FFF7ED;
    --bg-purple-tint: #FAF5FF;
    --primary-brand: #9333EA;
    --secondary-support: #F97316;
    --accent-highlight: #E63946;
    --text-primary: #1F2933;
    --text-secondary: #4B5563;
    --border-divider: #E5E7EB;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Colors */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode):not(.dark-mode) {
        --bg-primary: #0F172A;
        --bg-surface: #1E1B24;
        --bg-muted: #1A1625;
        --bg-red-tint: #1F1416;
        --bg-orange-tint: #1F1810;
        --bg-purple-tint: #1A1525;
        --primary-brand: #A855F7;
        --secondary-support: #FB923C;
        --accent-highlight: #F87171;
        --text-primary: #F9FAFB;
        --text-secondary: #CBD5E1;
        --border-divider: #334155;
    }
    
    body:not(.light-mode):not(.dark-mode) .navbar {
        background-color: rgba(15, 23, 42, 0.95);
    }
    
    body:not(.light-mode):not(.dark-mode) .hero-overlay {
        background: rgba(15, 23, 42, 0.85);
    }
}

/* Light Mode - Manual Override */
body.light-mode {
    --bg-primary: #FFFFFF;
    --bg-surface: #FFFFFF;
    --bg-muted: #F9FAFB;
    --bg-red-tint: #FEF2F2;
    --bg-orange-tint: #FFF7ED;
    --bg-purple-tint: #FAF5FF;
    --primary-brand: #9333EA;
    --secondary-support: #F97316;
    --accent-highlight: #E63946;
    --text-primary: #1F2933;
    --text-secondary: #4B5563;
    --border-divider: #E5E7EB;
}

body.light-mode .navbar {
    background-color: rgba(255, 255, 255, 0.95);
}

body.light-mode .hero-overlay {
    background: rgba(255, 255, 255, 0.85);
}

/* Dark Mode - Manual Override */
body.dark-mode {
    --bg-primary: #0F172A;
    --bg-surface: #1E1B24;
    --bg-muted: #1A1625;
    --bg-red-tint: #1F1416;
    --bg-orange-tint: #1F1810;
    --bg-purple-tint: #1A1525;
    --primary-brand: #A855F7;
    --secondary-support: #FB923C;
    --accent-highlight: #F87171;
    --text-primary: #F9FAFB;
    --text-secondary: #CBD5E1;
    --border-divider: #334155;
}

body.dark-mode .navbar {
    background-color: rgba(15, 23, 42, 0.95);
}

body.dark-mode .hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   Container & Layout
   ============================================ */

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

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

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-lg);
        max-width: 100%;
    }
}

@media (min-width: 1440px) {
    .container {
        padding: 0 var(--spacing-xl);
        max-width: 100%;
    }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    transition: var(--transition);
}

.brand-text:hover {
    transform: translateY(-1px);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.brand-name-accent {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-brand);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-brand);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
    color: var(--primary-brand);
    outline: none;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after,
.nav-menu a.active::after {
    width: 80%;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--border-divider);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    color: var(--text-secondary);
    position: relative;
}

.theme-toggle:hover,
.theme-toggle:focus {
    border-color: var(--primary-brand);
    background-color: rgba(58, 124, 165, 0.1);
    color: var(--primary-brand);
    outline: none;
    transform: rotate(15deg);
}

.theme-icon-light,
.theme-icon-dark {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: var(--transition);
}

.theme-icon-dark {
    opacity: 0;
    transform: rotate(90deg);
}

body.dark-mode .theme-icon-light {
    opacity: 0;
    transform: rotate(-90deg);
}

body.dark-mode .theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg);
}

.nav-mobile-controls {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
}

.theme-toggle-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .nav-mobile-controls {
        display: flex;
    }
    
    .theme-toggle-desktop {
        display: none;
    }
    
    .theme-toggle-mobile {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-xl) var(--spacing-lg);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: var(--spacing-lg);
        overflow-y: auto;
    }
    
    .nav-right.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        font-size: 0.85rem;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: var(--spacing-sm);
        width: 100%;
    }
    
    .brand-name,
    .brand-name-accent {
        font-size: 1.25rem;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
    }
    
    .theme-icon-light,
    .theme-icon-dark {
        width: 18px;
        height: 18px;
    }
}

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

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(249, 115, 22, 0.1) 50%, rgba(230, 57, 70, 0.1) 100%),
                url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1920&q=80') center/cover no-repeat;
    text-align: center;
    padding-top: 80px;
    padding-bottom: var(--spacing-lg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

body.dark-mode .hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    word-wrap: break-word;
}

.hero-keyword-green {
    color: var(--secondary-support);
}

.hero-keyword-uae {
    background: linear-gradient(180deg, #FF0000 0%, #FF0000 33%, #00843D 33%, #00843D 66%, #000000 66%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.3em;
    letter-spacing: 2px;
    display: inline-block;
    line-height: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    color: var(--primary-brand);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

body.dark-mode .hero-badge {
    background-color: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background-color: var(--bg-surface);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
    padding: 0 var(--spacing-sm);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-brand);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-divider);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-divider);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-support);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

/* Mobile styles for hero elements */
@media (max-width: 768px) {
    .hero-stats {
        gap: var(--spacing-xs);
        padding: var(--spacing-sm);
        margin: var(--spacing-md) 0;
        flex-wrap: nowrap;
    }
    
    .hero-stat-item {
        padding: 0 var(--spacing-xs);
        flex: 1;
        min-width: 0;
    }
    
    .hero-stat-number {
        font-size: 1.25rem;
        margin-bottom: 0.125rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .hero-stat-divider {
        height: 30px;
        flex-shrink: 0;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-xs);
        margin: var(--spacing-md) 0;
        width: 100%;
    }
    
    .hero-feature {
        width: 100%;
        padding: 0.5rem var(--spacing-sm);
        gap: 0.5rem;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .hero-feature svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-cta {
        flex-wrap: nowrap;
        gap: var(--spacing-xs);
        margin-top: var(--spacing-md);
    }
    
    .hero-cta .btn {
        flex: 1;
        padding: 0.75rem var(--spacing-sm);
        font-size: 0.85rem;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-brand);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-brand);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    outline: none;
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--primary-brand);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    outline: none;
}

/* ============================================
   Background Decorative Elements (Static)
   ============================================ */

.section-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Purple sections (About, Operating Model, Growth) */
.about .section-bg-shapes .shape-circle,
.operating-model .section-bg-shapes .shape-circle,
.growth-snapshot .section-bg-shapes .shape-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--primary-brand);
}

.about .section-bg-shapes .shape-circle-1 {
    width: 250px;
    height: 250px;
    top: 5%;
    right: 3%;
}

.about .section-bg-shapes .shape-circle-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 5%;
}

.operating-model .section-bg-shapes .shape-circle-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 8%;
}

.growth-snapshot .section-bg-shapes .shape-circle-1 {
    width: 220px;
    height: 220px;
    top: 20%;
    left: 10%;
}

/* Red sections (Why Choose, Platforms) */
.why-choose .section-bg-shapes .shape-circle,
.platforms .section-bg-shapes .shape-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--secondary-support);
}

.why-choose .section-bg-shapes .shape-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 8%;
    left: 4%;
}

.platforms .section-bg-shapes .shape-circle-2 {
    width: 180px;
    height: 180px;
    top: 12%;
    right: 6%;
}

/* Orange sections (Services, Values) */
.services .section-bg-shapes .shape-circle,
.values .section-bg-shapes .shape-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--secondary-support);
}

.services .section-bg-shapes .shape-circle-1 {
    width: 220px;
    height: 220px;
    top: 10%;
    right: 5%;
}

.values .section-bg-shapes .shape-circle-3 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 8%;
}

/* Purple sections blob shapes */
.about .section-bg-shapes .shape-blob,
.operating-model .section-bg-shapes .shape-blob,
.growth-snapshot .section-bg-shapes .shape-blob {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    opacity: 0.05;
    background: var(--primary-brand);
}

.about .section-bg-shapes .shape-blob-1 {
    width: 300px;
    height: 300px;
    top: 30%;
    left: -8%;
}

.operating-model .section-bg-shapes .shape-blob-2 {
    width: 280px;
    height: 280px;
    bottom: 5%;
    right: -5%;
}

/* Red sections blob shapes */
.why-choose .section-bg-shapes .shape-blob,
.platforms .section-bg-shapes .shape-blob {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.05;
    background: var(--secondary-support);
}

.why-choose .section-bg-shapes .shape-blob-2 {
    width: 320px;
    height: 320px;
    top: 20%;
    right: -6%;
}

/* Orange sections blob shapes */
.services .section-bg-shapes .shape-blob,
.values .section-bg-shapes .shape-blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.05;
    background: var(--secondary-support);
}

.services .section-bg-shapes .shape-blob-1 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    left: -7%;
}

.values .section-bg-shapes .shape-blob-2 {
    width: 300px;
    height: 300px;
    top: 15%;
    left: -5%;
}

/* Expertise section (Purple) */
.expertise .section-bg-shapes .shape-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--primary-brand);
}

.expertise .section-bg-shapes .shape-circle-3 {
    width: 180px;
    height: 180px;
    top: 25%;
    right: 10%;
}

/* Additional Shape Types - Squares */
.shape-square {
    position: absolute;
    opacity: 0.05;
    background: var(--primary-brand);
    transform: rotate(45deg);
}

.about .section-bg-shapes .shape-square-1,
.operating-model .section-bg-shapes .shape-square-1,
.growth-snapshot .section-bg-shapes .shape-square-1,
.expertise .section-bg-shapes .shape-square-1 {
    width: 120px;
    height: 120px;
    background: var(--primary-brand);
}

.why-choose .section-bg-shapes .shape-square-1,
.platforms .section-bg-shapes .shape-square-1 {
    width: 120px;
    height: 120px;
    background: var(--secondary-support);
}

.services .section-bg-shapes .shape-square-2,
.values .section-bg-shapes .shape-square-2 {
    width: 120px;
    height: 120px;
    background: var(--secondary-support);
}

.about .section-bg-shapes .shape-square-1 {
    top: 15%;
    left: 2%;
}

.expertise .section-bg-shapes .shape-square-1 {
    bottom: 20%;
    left: 5%;
}

.operating-model .section-bg-shapes .shape-square-1 {
    top: 5%;
    left: 3%;
}

.growth-snapshot .section-bg-shapes .shape-square-3 {
    bottom: 10%;
    right: 5%;
}

.why-choose .section-bg-shapes .shape-square-1 {
    top: 10%;
    left: 2%;
}

.platforms .section-bg-shapes .shape-square-1 {
    bottom: 5%;
    left: 3%;
}

.services .section-bg-shapes .shape-square-2 {
    bottom: 5%;
    right: 3%;
}

.values .section-bg-shapes .shape-square-2 {
    top: 5%;
    right: 2%;
}

/* Triangles */
.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.05;
}

.about .section-bg-shapes .shape-triangle-1,
.operating-model .section-bg-shapes .shape-triangle-1,
.growth-snapshot .section-bg-shapes .shape-triangle-1,
.expertise .section-bg-shapes .shape-triangle-1 {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--primary-brand);
    background: transparent;
}

.why-choose .section-bg-shapes .shape-triangle-1,
.platforms .section-bg-shapes .shape-triangle-1 {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--secondary-support);
}

.services .section-bg-shapes .shape-triangle-2,
.values .section-bg-shapes .shape-triangle-2 {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--secondary-support);
}

.about .section-bg-shapes .shape-triangle-1 {
    bottom: 5%;
    right: 2%;
    transform: rotate(15deg);
}

.expertise .section-bg-shapes .shape-triangle-2 {
    top: 5%;
    left: 2%;
    transform: rotate(-20deg);
}

.operating-model .section-bg-shapes .shape-triangle-1 {
    bottom: 8%;
    left: 2%;
    transform: rotate(30deg);
}

.growth-snapshot .section-bg-shapes .shape-triangle-3 {
    top: 10%;
    right: 2%;
    transform: rotate(-15deg);
}

.why-choose .section-bg-shapes .shape-triangle-1 {
    bottom: 3%;
    right: 2%;
    transform: rotate(25deg);
}

.platforms .section-bg-shapes .shape-triangle-1 {
    top: 3%;
    right: 2%;
    transform: rotate(-30deg);
}

.services .section-bg-shapes .shape-triangle-2 {
    top: 3%;
    left: 2%;
    transform: rotate(20deg);
}

.values .section-bg-shapes .shape-triangle-2 {
    bottom: 3%;
    left: 2%;
    transform: rotate(-25deg);
}

/* Diamonds */
.shape-diamond {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.05;
    transform: rotate(45deg);
}

.services .section-bg-shapes .shape-diamond-1,
.expertise .section-bg-shapes .shape-diamond-1 {
    background: var(--primary-brand);
}

.operating-model .section-bg-shapes .shape-diamond-2 {
    background: var(--primary-brand);
}

.services .section-bg-shapes .shape-diamond-1 {
    top: 20%;
    left: 1%;
}

.expertise .section-bg-shapes .shape-diamond-1 {
    bottom: 10%;
    right: 3%;
}

.operating-model .section-bg-shapes .shape-diamond-2 {
    top: 8%;
    right: 2%;
}

/* Hexagons */
.shape-hexagon {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.05;
    background: var(--primary-brand);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.services .section-bg-shapes .shape-hexagon-1,
.expertise .section-bg-shapes .shape-hexagon-1 {
    background: var(--primary-brand);
}

.operating-model .section-bg-shapes .shape-hexagon-2 {
    background: var(--primary-brand);
}

.services .section-bg-shapes .shape-hexagon-1 {
    bottom: 15%;
    right: 1%;
}

.expertise .section-bg-shapes .shape-hexagon-1 {
    top: 10%;
    left: 1%;
}

.operating-model .section-bg-shapes .shape-hexagon-2 {
    bottom: 3%;
    left: 1%;
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--spacing-md) 0;
    position: relative;
}

@media (min-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.section-header h2 .text-accent {
    color: var(--primary-brand);
}

.section-header h2 .text-secondary {
    color: var(--secondary-support);
}

.section-header h2 .text-highlight {
    color: var(--accent-highlight);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-brand);
    margin: var(--spacing-sm) auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-xs);
    line-height: 1.6;
}

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

.about .section-header {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    margin-bottom: var(--spacing-sm);
}

.about .section-divider {
    margin-left: 0;
    margin-right: auto;
}

.about-text-section {
    width: 100%;
}

.about {
    background-color: var(--bg-purple-tint);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

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

.about .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

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

@media (min-width: 968px) {
    .about-content {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .about-text-section {
        flex: 1.5;
        display: flex;
        flex-direction: column;
    }
    
    .about-image {
        flex: 1;
        max-width: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-text .lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-brand);
    margin-bottom: var(--spacing-xs);
}

.about-text p {
    margin-bottom: var(--spacing-xs);
}

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

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 240px;
}

/* ============================================
   Why Choose Section
   ============================================ */

.why-choose {
    background-color: var(--bg-orange-tint);
    position: relative;
    overflow: hidden;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    position: relative;
}

@media (min-width: 768px) {
    .trust-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (min-width: 1024px) {
    .trust-features {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: var(--spacing-md);
    }
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-surface);
    border-left: 4px solid var(--secondary-support);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
}

.trust-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-support);
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: bottom;
}

.trust-feature:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-surface);
}

.trust-feature:hover::before {
    transform: scaleY(1);
}

.trust-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: rgba(249, 115, 22, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-support);
    transition: var(--transition);
    flex-shrink: 0;
}

body.dark-mode .trust-feature-icon {
    background-color: rgba(251, 146, 60, 0.2);
}

.trust-feature:hover .trust-feature-icon {
    background-color: rgba(249, 115, 22, 0.25);
    transform: scale(1.1);
}

body.dark-mode .trust-feature:hover .trust-feature-icon {
    background-color: rgba(251, 146, 60, 0.3);
}

.trust-feature-icon svg {
    width: 24px;
    height: 24px;
}

.trust-feature-content {
    flex: 1;
}

.trust-feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-highlight);
    line-height: 1.3;
}

.trust-feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .trust-feature {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--accent-highlight);
    }
    
    .trust-feature:hover {
        transform: translateY(-2px);
    }
    
    .trust-feature-icon {
        margin: 0 auto;
    }
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background-color: var(--bg-orange-tint);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-sm) 0;
}

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

.services .container {
    position: relative;
    z-index: 1;
}

.services-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: var(--spacing-xs) 0;
}

/* Root Node */
.chart-root {
    position: relative;
    z-index: 2;
    margin-bottom: var(--spacing-sm);
}

.root-node {
    background: transparent;
    color: var(--text-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.root-node .section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-brand);
    margin: 0.25rem auto 0;
    border-radius: 2px;
}

.root-node:hover {
    transform: none;
}

.root-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
    flex-shrink: 0;
}

.root-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-support);
}

.root-node h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

/* Vertical Connector from Root */
.chart-connector {
    position: relative;
    width: 3px;
    height: 40px;
    margin: 0 auto;
    z-index: 1;
}

.vertical-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-support), var(--primary-brand));
    border-radius: 2px;
}

/* Branches Container */
.chart-branches {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    width: 100%;
    position: relative;
    margin-top: var(--spacing-sm);
}

@media (min-width: 768px) {
    .chart-branches {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (min-width: 1024px) {
    .chart-branches {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md);
    }
}

/* Service Branch */
.service-branch {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.branch-connector {
    position: relative;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: var(--spacing-xs);
}

.horizontal-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-support));
    border-radius: 2px;
}

.vertical-line-small {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-support), var(--primary-brand));
    border-radius: 2px;
}

@media (max-width: 767px) {
    .services-chart {
        padding: 0;
    }
    
    .root-node {
        padding: var(--spacing-xs) var(--spacing-sm);
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .root-node h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .root-icon {
        width: 24px;
        height: 24px;
    }
    
    .root-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .chart-connector {
        height: 30px;
    }
    
    .branch-connector {
        height: 25px;
    }
    
    .chart-root {
        margin-bottom: var(--spacing-xs);
    }
    
    .horizontal-line {
        width: 3px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vertical-line-small {
        display: none;
    }
    
    .service-node {
        padding: var(--spacing-md);
    }
}

/* Service Node */
.service-node {
    background-color: var(--bg-surface);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-divider);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-support), var(--primary-brand));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: center;
}

.service-node:hover::before {
    transform: scaleX(1);
}

.service-node:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-support);
}

.service-node .service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(147, 51, 234, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-support);
    transition: var(--transition);
    flex-shrink: 0;
    border: 2px solid rgba(249, 115, 22, 0.2);
}

body.dark-mode .service-node .service-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(168, 85, 247, 0.2));
    border-color: rgba(251, 146, 60, 0.3);
}

.service-node:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(147, 51, 234, 0.25));
    border-color: var(--secondary-support);
}

body.dark-mode .service-node:hover .service-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(168, 85, 247, 0.3));
}

.service-node .service-icon svg {
    width: 32px;
    height: 32px;
}

.service-node h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-support);
    text-align: center;
}

@media (min-width: 1024px) {
    .service-node h3 {
        font-size: 1.3rem;
    }
}

.service-node .service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

@media (min-width: 1024px) {
    .service-node .service-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   Our Expertise Section
   ============================================ */

.expertise {
    background-color: var(--bg-purple-tint);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-sm) 0;
}

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

.expertise .container {
    position: relative;
    z-index: 1;
}

.expertise .section-header {
    margin-bottom: var(--spacing-xs);
}

.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .expertise-grid {
        flex-direction: row;
        gap: var(--spacing-sm);
        overflow-x: visible;
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        gap: var(--spacing-md);
    }
}

.expertise-card {
    background-color: var(--bg-surface);
    padding: var(--spacing-sm);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid var(--border-divider);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
}

.expertise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-support));
    transform: scaleX(0);
    transition: var(--transition);
}

.expertise-card:hover::after {
    transform: scaleX(1);
}

@media (min-width: 768px) {
    .expertise-card {
        padding: var(--spacing-md);
    }
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-brand);
}

.expertise-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--spacing-xs);
    background-color: rgba(147, 51, 234, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brand);
    transition: var(--transition);
}

body.dark-mode .expertise-icon {
    background-color: rgba(168, 85, 247, 0.2);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.05);
    background-color: rgba(147, 51, 234, 0.25);
}

body.dark-mode .expertise-card:hover .expertise-icon {
    background-color: rgba(168, 85, 247, 0.3);
}

.expertise-icon svg {
    width: 20px;
    height: 20px;
}

.expertise-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-brand);
}

@media (min-width: 768px) {
    .expertise-card h3 {
        font-size: 1.1rem;
    }
}

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

.expertise-list li {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.85rem;
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary-brand);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.5;
}

.expertise-list li:first-child {
    padding-top: 0;
}

.expertise-list li:last-child {
    padding-bottom: 0;
}

/* ============================================
   Operating Model Section
   ============================================ */

.operating-model {
    background-color: var(--bg-purple-tint);
    padding: var(--spacing-sm) 0;
}

.timeline-wrapper {
    margin-top: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-sm) 0;
    -webkit-overflow-scrolling: touch;
}

.timeline-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 1200px;
    position: relative;
    padding: var(--spacing-sm) 0;
}

@media (min-width: 1400px) {
    .timeline-container {
        min-width: auto;
        max-width: 100%;
    }
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-xs);
}

.timeline-step:nth-child(1) .timeline-node {
    background-color: var(--accent-highlight);
}

.timeline-step:nth-child(3) .timeline-node {
    background-color: var(--secondary-support);
}

.timeline-step:nth-child(5) .timeline-node {
    background-color: var(--primary-brand);
}

.timeline-step:nth-child(7) .timeline-node {
    background-color: var(--accent-highlight);
}

.timeline-step:nth-child(9) .timeline-node {
    background-color: var(--secondary-support);
}

.timeline-step:nth-child(11) .timeline-node {
    background-color: var(--primary-brand);
}

.timeline-step:hover .timeline-node {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.timeline-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.timeline-icon svg {
    width: 28px;
    height: 28px;
}

.timeline-content {
    text-align: center;
    width: 180px;
    height: 100px;
    padding: var(--spacing-xs);
    background-color: var(--bg-surface);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-divider);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-brand);
}

.timeline-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    line-height: 1.2;
}

.timeline-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.timeline-connector {
    flex: 0 0 50px;
    height: 3px;
    margin-top: 30px;
    background: linear-gradient(90deg, var(--accent-highlight), var(--secondary-support), var(--primary-brand));
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.timeline-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-brand);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

@media (max-width: 1399px) {
    .timeline-container {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .timeline-node {
        width: 55px;
        height: 55px;
    }
    
    .timeline-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .timeline-content {
        width: 160px;
        height: 90px;
    }
    
    .timeline-content h3 {
        font-size: 0.85rem;
    }
    
    .timeline-content p {
        font-size: 0.7rem;
    }
    
    .timeline-connector {
        flex: 0 0 40px;
        margin-top: 27px;
    }
}

@media (max-width: 767px) {
    .timeline-wrapper {
        padding: var(--spacing-xs) 0;
    }
    
    .timeline-container {
        min-width: 900px;
        padding: var(--spacing-xs) 0;
    }
    
    .timeline-node {
        width: 50px;
        height: 50px;
    }
    
    .timeline-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .timeline-content {
        width: 140px;
        height: 80px;
    }
    
    .timeline-content h3 {
        font-size: 0.8rem;
    }
    
    .timeline-content p {
        font-size: 0.65rem;
    }
    
    .timeline-connector {
        flex: 0 0 30px;
        height: 2px;
        margin-top: 25px;
    }
}

/* ============================================
   Platforms Section
   ============================================ */

.platforms {
    background-color: var(--bg-red-tint);
    position: relative;
    overflow: hidden;
}

.platforms .container {
    position: relative;
    z-index: 1;
}

.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-sm);
    align-items: center;
}

@media (min-width: 768px) {
    .platforms-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .platforms-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xl);
    }
}

.device-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.device-widget:hover {
    transform: translateY(-4px);
}

.device-frame {
    width: 180px;
    height: 390px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 
                0 0 0 3px rgba(255, 255, 255, 0.05),
                inset 0 1px 2px rgba(255, 255, 255, 0.1),
                inset 0 -1px 2px rgba(0, 0, 0, 0.8);
    position: relative;
    transition: var(--transition);
}

.device-widget:hover .device-frame {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 
                0 0 0 3px var(--primary-brand),
                inset 0 1px 2px rgba(255, 255, 255, 0.1),
                inset 0 -1px 2px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: #000;
    border-radius: 3px;
    z-index: 2;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.device-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #000;
    border-radius: 2px;
    z-index: 2;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

body.dark-mode .device-screen {
    background: linear-gradient(135deg, #1E1B24 0%, #2A2530 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-sm);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(249, 115, 22, 0.08) 50%, rgba(230, 57, 70, 0.08) 100%);
    transition: var(--transition);
}

body.dark-mode .screen-content {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(249, 115, 22, 0.15) 50%, rgba(230, 57, 70, 0.15) 100%);
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.device-widget:nth-child(1) .platform-name {
    color: #FF9900;
}

.device-widget:nth-child(2) .platform-name {
    color: #000000;
}

body.dark-mode .device-widget:nth-child(2) .platform-name {
    color: #FFFFFF;
}

.device-widget:nth-child(3) .platform-name {
    color: #1877F2;
}

.device-widget:nth-child(4) .platform-name {
    color: #FF6900;
}

.device-widget:nth-child(5) .platform-name {
    color: #96BF48;
}

.device-description {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.7rem;
    line-height: 1.4;
    text-align: center;
    padding: 0 var(--spacing-xs);
    transition: var(--transition);
}

body.dark-mode .device-description {
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .platforms-grid {
        gap: var(--spacing-md);
    }
    
    .device-frame {
        width: 150px;
        height: 320px;
        padding: 6px;
        border-radius: 28px;
    }
    
    .device-frame::before {
        width: 60px;
        height: 4px;
        top: 10px;
    }
    
    .device-frame::after {
        width: 100px;
        height: 3px;
        bottom: 6px;
    }
    
    .device-screen {
        border-radius: 20px;
    }
    
    .screen-content {
        padding: var(--spacing-sm) var(--spacing-xs);
    }
    
    .platform-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: var(--spacing-xs);
    }
    
    .device-description {
        font-size: 0.65rem;
        padding: 0;
    }
}

/* ============================================
   Values Section
   ============================================ */

.values {
    background-color: var(--bg-orange-tint);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-sm) 0;
}

.values .container {
    position: relative;
    z-index: 1;
}

.values-checklist {
    margin-top: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .values-checklist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .values-checklist {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--bg-surface);
    border-radius: 10px;
    border: 2px solid var(--border-divider);
    transition: var(--transition);
    position: relative;
}

.checklist-item:hover {
    transform: translateX(2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary-support);
}

.checklist-item.checked {
    background-color: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
}

.checklist-item.checked:hover {
    border-color: var(--secondary-support);
    background-color: rgba(249, 115, 22, 0.08);
}

.checkmark-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-support);
    border-radius: 50%;
    color: #ffffff;
    flex-shrink: 0;
}

.checklist-item.checked .checkmark-icon {
    background-color: var(--secondary-support);
}

.checkmark-icon svg {
    width: 16px;
    height: 16px;
}

.checklist-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 500;
}

.checklist-item.checked .checklist-text {
    color: var(--text-primary);
    text-decoration: none;
}

@media (max-width: 767px) {
    .values-checklist {
        gap: var(--spacing-xs);
    }
    
    .checklist-item {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .checkmark-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    .checkmark-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .checklist-text {
        font-size: 0.85rem;
    }
}

/* ============================================
   Growth Snapshot Section
   ============================================ */

.growth-snapshot {
    background-color: var(--bg-purple-tint);
    position: relative;
    overflow: hidden;
}

.growth-snapshot .container {
    position: relative;
    z-index: 1;
}

.growth-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.growth-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    align-items: center;
}

@media (min-width: 768px) {
    .growth-items {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-md);
        flex-wrap: wrap;
    }
    
    .growth-item {
        flex: 0 1 calc(30% - var(--spacing-xl));
        max-width: 400px;
    }
}

.growth-item {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-muted) 100%);
    border-radius: 20px;
    border: 2px solid var(--border-divider);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.growth-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-support), var(--accent-highlight));
    transform: scaleX(0);
    transition: var(--transition);
}

.growth-item:hover::before {
    transform: scaleX(1);
}

.growth-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-brand);
}

.growth-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background-color: rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brand);
}

.growth-icon svg {
    width: 28px;
    height: 28px;
}

.growth-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-brand);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.growth-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.growth-bar {
    width: 100%;
    height: 8px;
    background-color: var(--bg-muted);
    border-radius: 10px;
    overflow: hidden;
    margin-top: var(--spacing-sm);
}

.growth-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-support));
    border-radius: 10px;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0%; }
    to { width: var(--width, 100%); }
}

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

.footer {
    background-color: var(--bg-surface);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-divider);
}

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

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

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

.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-brand);
    letter-spacing: 0.5px;
}

.footer-section h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-support);
}

.legal-name {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--primary-brand);
    outline: none;
}

.address {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-top: var(--spacing-sm);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-muted);
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid var(--border-divider);
}

.social-icons a:hover,
.social-icons a:focus {
    background-color: var(--primary-brand);
    border-color: var(--primary-brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    outline: none;
}

.social-icons svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-icons a:hover svg,
.social-icons a:focus svg {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-divider);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Accessibility & Focus States
   ============================================ */

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-brand);
    color: #ffffff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   Image Optimization
   ============================================ */

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

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

@media print {
    .navbar,
    .hero-cta,
    .social-icons,
    .theme-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
