/* ================================
   Arcturus Pro - Modern Website
   Advanced CSS with Cutting-Edge Effects
   ================================ */

/* ===== CSS Variables ===== */
:root {
    /* Brand Colors */
    --primary-gradient: linear-gradient(135deg, #2B63EB 0%, #9900CC 100%);
    --primary-blue: #407BFF;
    --primary-purple: #904AFF;
    --accent-green: #10B981;
    --accent-orange: #F59E0B;
    --accent-warning: #EF4444;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #F3F4F6;
    --gray: #9CA3AF;
    --dark-gray: #4B5563;
    --darker: #1F2937;
    --darkest: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(240, 80%, 60%, 0.3) 0px, transparent 50%),
                      radial-gradient(at 80% 0%, hsla(280, 80%, 50%, 0.3) 0px, transparent 50%),
                      radial-gradient(at 0% 50%, hsla(220, 80%, 60%, 0.3) 0px, transparent 50%);
    
    /* Spacing */
    --section-padding: 108px; /* Reduced by 10% from 120px */
    --container-width: 1200px; /* Slightly reduced for better breathing room */
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(64, 123, 255, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 100%; /* Normal base font size */
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--darkest);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    /* Prevent overflow from long words/URLs */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Global overflow prevention for text elements */
p, li, td, th, div, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

/* Specific rules for links to prevent overflow */
a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Prevent code blocks from overflowing */
code, pre {
    max-width: 100%;
    overflow-x: auto;
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* ===== Custom Cursor (Removed) ===== */
/* Using default browser cursor for better user experience */

/* ===== Scroll Progress Indicator ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: darken;
}

/* Fallback text logo styles (if image doesn't load) */
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--darkest);
    letter-spacing: -0.5px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--darker);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--primary-blue);
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(64, 123, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    max-width: 220px;
    max-height: 48px;
}

.nav-cta .nav-cta-text {
    display: block;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
    max-height: 36px;
    overflow: hidden;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 123, 255, 0.6);
    background: linear-gradient(135deg, #5086ff 0%, #a05aff 100%);
}

/* Responsive adjustments for nav-cta */
@media (min-width: 769px) and (max-width: 1200px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-cta {
        padding: 9px 20px;
        font-size: 12px;
        min-width: 160px;
        max-width: 190px;
        max-height: 46px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--darkest);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ===== Buttons ===== */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span, .btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(64, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 123, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    line-height: 1.4;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary span {
    display: inline-block;
    line-height: 1.4;
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

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

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== Glass Card Effect ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
}

/* ===== 3D Hover Effect ===== */
.hover-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.hover-3d:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    opacity: 0.15;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 99, 235, 0.95) 0%, rgba(153, 0, 204, 0.95) 100%);
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 20s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 25s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 52px; /* Reduced from 64px */
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-reveal {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 0.8s ease forwards;
}

.text-reveal:nth-child(1) { animation-delay: 0.1s; }
.text-reveal:nth-child(2) { animation-delay: 0.3s; }
.text-reveal:nth-child(3) { animation-delay: 0.5s; }

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

.hero-subtitle {
    font-size: 18px; /* Reduced from 20px */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 540px;
}

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

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

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-symbol {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

/* Instagram Reel Style Video Widget */
.video-reel-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    background: var(--darkest);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-reel-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.video-reel-container:hover .video-overlay {
    opacity: 1;
    pointer-events: all;
}

.video-control {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-control:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.video-control i {
    font-size: 24px;
    color: var(--primary-blue);
}

.video-sound-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.video-sound-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.video-sound-toggle i {
    font-size: 18px;
    color: var(--primary-blue);
}

.reel-frame {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 28px;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

/* Video loading state */
.reel-video:not([src]) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Mobile optimisations for video */
@media (max-width: 768px) {
    .video-reel-container {
        max-width: 300px;
        aspect-ratio: 9 / 16;
    }
    
    .video-control {
        width: 60px;
        height: 60px;
    }
    
    .video-control i {
        font-size: 20px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    animation: bounce 2s infinite;
    z-index: 2;
}

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

/* ===== Fade In Up Animation ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* ===== Section Styles ===== */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(64, 123, 255, 0.1) 0%, rgba(144, 74, 255, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 40px; /* Reduced from 48px */
    font-weight: 800;
    color: var(--darkest);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px; /* Reduced from 20px */
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Benefits Section ===== */
.benefits {
    background: var(--off-white);
}

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

.benefit-card {
    padding: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.benefit-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.benefit-icon {
    position: absolute;
    top: 220px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--darkest);
    margin: 60px 30px 16px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0 30px 20px;
}

.benefit-features {
    list-style: none;
    padding: 0 30px 30px;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.benefit-features i {
    color: var(--accent-green);
    font-size: 12px;
}

/* ===== Horizontal Scroll Section ===== */
.horizontal-scroll-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--section-padding) 0;
    overflow-x: hidden;
}

.horizontal-scroll-section .section-header {
    color: var(--white);
}

.horizontal-scroll-section .section-title,
.horizontal-scroll-section .section-subtitle,
.horizontal-scroll-section .section-tag {
    color: var(--white);
}

.horizontal-scroll-wrapper {
    margin-top: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    padding-bottom: 20px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.horizontal-content {
    display: flex;
    gap: 30px;
    padding: 0 24px;
    width: max-content;
}

.feature-card-large {
    min-width: 500px;
    max-width: 500px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
}

.feature-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.feature-card-large:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
    position: relative;
}

.feature-number {
    position: absolute;
    top: -40px;
    right: 30px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(64, 123, 255, 0.1);
    line-height: 1;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--darkest);
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(64, 123, 255, 0.1) 0%, rgba(144, 74, 255, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== Value Proposition ===== */
.value-proposition {
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.value-card {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(64, 123, 255, 0.3);
}

.value-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--darkest);
    margin-bottom: 16px;
}

.value-description {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.value-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 14px;
    color: var(--darker);
    text-align: left;
}

.value-feature-item i {
    color: var(--primary-blue);
    font-size: 18px;
}

/* ===== LinkedIn Posts Section ===== */
.linkedin-posts {
    background: var(--off-white);
    padding: var(--section-padding) 0;
}

.section-header-with-cta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.section-header-with-cta .section-header {
    flex: 1;
}

.linkedin-follow-btn {
    flex-shrink: 0;
    margin-top: 10px;
}

.linkedin-carousel-wrapper {
    position: relative;
    margin: 60px 0;
}

.linkedin-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 20px 60px;
}

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

.linkedin-post {
    min-width: 400px;
    max-width: 400px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.linkedin-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--darkest);
    margin-bottom: 2px;
}

.post-meta {
    font-size: 13px;
    color: var(--gray);
}

.linkedin-icon {
    color: #0A66C2;
    font-size: 24px;
    transition: var(--transition-smooth);
}

.linkedin-icon:hover {
    color: #004182;
    transform: scale(1.1);
}

.post-content {
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--darker);
}

.post-content p {
    margin-bottom: 12px;
    font-size: 15px;
}

.post-image {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.linkedin-post:hover .post-image img {
    transform: scale(1.05);
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-stats i {
    color: var(--primary-blue);
}

.view-post-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.view-post-btn:hover {
    color: var(--primary-purple);
    gap: 8px;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.carousel-nav:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-nav i {
    font-size: 18px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(64, 123, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--gradient-primary);
    width: 30px;
    border-radius: 5px;
}

/* LinkedIn CTA - Removed (now in header) */

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-header-with-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .linkedin-follow-btn {
        margin-top: 20px;
    }
    
    .linkedin-post {
        min-width: 320px;
        max-width: 320px;
    }
    
    .linkedin-carousel {
        padding: 20px 10px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: -10px;
    }
    
    .next-btn {
        right: -10px;
    }
}

/* ===== Platform Preview - Bento Grid ===== */
.platform-preview {
    background: linear-gradient(135deg, rgba(43, 99, 235, 0.95) 0%, rgba(153, 0, 204, 0.95) 100%);
    position: relative;
}

.platform-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(64, 123, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(144, 74, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.platform-preview .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
}

.platform-preview .section-title {
    color: #FFFFFF;
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bento-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background-color: #ffffff;
    transition: transform 0.6s ease;
}

.bento-item:hover .bento-image {
    transform: scale(1.1);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.bento-item:hover .bento-content {
    transform: translateY(0);
    opacity: 1;
}

.bento-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--white);
}

.testimonial-card {
    position: relative;
    padding: 60px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

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

.testimonial-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--darkest);
    margin-bottom: 40px;
    font-weight: 500;
}

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

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
}

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

.author-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--darkest);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 2px;
}

.company {
    font-weight: 600;
    color: var(--primary-blue);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--darker);
}

.trust-badge i {
    font-size: 20px;
    color: var(--primary-blue);
}

/* ===== PM Maturity Assessment CTA ===== */
.assessment-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--off-white);
}

.assessment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 0;
}

.assessment-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.assessment-icon-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    animation: float 3s ease-in-out infinite;
}

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

.assessment-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.assessment-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.assessment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.assessment-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.assessment-feature .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.assessment-feature .feature-text {
    display: flex;
    flex-direction: column;
}

.assessment-feature .feature-text strong {
    font-size: 18px;
    font-weight: 700;
}

.assessment-feature .feature-text span {
    font-size: 14px;
    opacity: 0.9;
}

.assessment-domains-preview {
    margin-bottom: 40px;
}

.domains-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.domains-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.domain-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.domain-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.assessment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 20px;
}

/* ===== CTA Banner ===== */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* ===== Pilot Programme Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px 40px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 1;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 20px;
    color: var(--dark-gray);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--darkest);
}

.modal-header p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.pilot-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pilot-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.pilot-form label {
    font-weight: 600;
    font-size: 14px;
    color: var(--darkest);
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--white);
}

.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(64, 123, 255, 0.1);
}

.pilot-form textarea {
    resize: vertical;
    min-height: 100px;
}

.pilot-form .checkbox-group {
    margin-top: 8px;
}

.pilot-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: var(--darker);
}

.pilot-form .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.pilot-form .btn-large {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.pilot-form .form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -8px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 64px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--darkest);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-success .btn {
    display: inline-flex;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 40px 24px 24px;
        width: 95%;
    }

    .pilot-form .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--darkest);
    color: var(--white);
    padding: 80px 0 0; /* Removed bottom padding to eliminate white space */
    margin-bottom: 0;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0; /* Added bottom padding here for proper spacing */
    text-align: center;
    font-size: 14px;
    color: var(--gray);
}

.footer-bottom p {
    margin: 6px 0;
}

/* Footer Location */
.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-location i {
    color: var(--primary-blue);
}

/* Footer Icons */
.footer-column a i {
    font-size: 14px;
    width: 16px;
    margin-right: 8px;
    opacity: 0.7;
}

.footer-column a:hover i {
    opacity: 1;
}

/* Featured Link (Assessment) */
.footer-featured {
    font-weight: 600;
    color: #60a5fa !important;
}

.footer-featured:hover {
    color: var(--primary-blue) !important;
}

/* Coming Soon Badge */
.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 6px;
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    color: white;
}

/* Trust Bar */
.footer-trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(64, 123, 255, 0.1);
    border: 1px solid rgba(64, 123, 255, 0.3);
    border-radius: 6px;
    font-size: 13px;
    color: #60a5fa;
    font-weight: 500;
}

.trust-badge i {
    font-size: 12px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    /* Tablet Optimization - Full Enhancement */
    
    /* Hero Section */
    .hero {
        min-height: 90vh;
        padding: 100px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 0;
    }
    
    .hero-left {
        max-width: 100%;
        padding: 0 2rem;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
        margin: 0 auto 25px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
        margin: 0 auto 35px;
        max-width: 600px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-cta .btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-number,
    .stat-symbol {
        font-size: 40px;
    }
    
    .hero-right {
        display: flex;
        justify-content: center;
        padding: 0 2rem;
    }
    
    .video-reel-container {
        max-width: 350px;
    }
    
    /* Container & Sections */
    .container {
        padding: 0 2rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Benefits & Value Grids */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .benefit-card,
    .value-card {
        padding: 30px;
    }
    
    .benefit-icon,
    .value-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .benefit-card h3,
    .value-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .benefit-card p,
    .value-card p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .bento-item {
        padding: 30px;
    }
    
    /* Feature Cards */
    .feature-cards {
        gap: 20px;
    }
    
    .feature-card-large {
        min-width: 320px;
    }
    
    /* Assessment Section */
    .assessment-title {
        font-size: 36px;
    }
    
    .assessment-subtitle {
        font-size: 18px;
    }
    
    .assessment-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 80px 2rem;
    }
    
    .cta-content {
        padding: 50px 40px;
    }
    
    .cta-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 17px;
        line-height: 1.6;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* Portrait Tablet - Additional Refinement */
@media (max-width: 900px) and (min-width: 769px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .benefits-grid,
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .assessment-features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: var(--shadow-2xl);
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        width: 100%;
        min-width: 200px;
        max-width: 240px;
        max-height: 50px;
        padding: 12px 24px;
    }
    
    .nav-cta .nav-cta-text {
        font-size: 14px;
        max-height: 38px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    /* Improved mobile readability */
    body {
        font-size: 17px;  /* Increased from 16px */
    }
    
    p {
        font-size: 17px;
        line-height: 1.6;
    }
    
    li {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Proportional headers */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.125rem; }
    h6 { font-size: 1rem; }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 40px 0;
        gap: 30px;
    }
    
    .hero-left {
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .stat-number,
    .stat-symbol {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .video-reel-container {
        max-width: 280px;
    }
    
    .hero-right {
        display: flex;
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-tag {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .feature-card-large {
        min-width: 280px;  /* Reduced for small phones */
    }

    .benefits-grid,
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card,
    .value-card {
        padding: 24px;
    }
    
    .benefit-icon,
    .value-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .benefit-card h3,
    .value-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .benefit-card p,
    .value-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 16px;
    }

    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
        padding: 20px;
    }

    .assessment-title {
        font-size: 32px;
    }

    .assessment-subtitle {
        font-size: 16px;
    }

    .assessment-features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .assessment-feature {
        justify-content: center;
    }

    .domains-tags {
        gap: 8px;
    }

    .domain-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .cta-section {
        padding: 60px 1.5rem;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Feature Sections Optimization */
    .feature-scroll-container {
        padding: 0 1.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .feature-cards {
        gap: 16px;
        padding-bottom: 20px;
    }
    
    /* Testimonial Section */
    .testimonial-section {
        padding: 60px 1.5rem;
    }
    
    .testimonial-card {
        padding: 24px;
        margin: 0 1rem;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Trust Badges */
    .trust-badges {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        padding: 0 1.5rem;
    }
    
    .trust-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Better button touch targets */
    .btn,
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 375px) {
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-left {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .benefit-card,
    .value-card {
        padding: 20px;
    }
    
    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ===== Accessibility - Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particle,
    .floating-card,
    .scroll-indicator {
        animation: none;
    }
}

/* ===== Utility Classes ===== */
.hidden {
    display: none;
}

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

/* Ensure all elements are visible by default */
.benefit-card,
.feature-card-large,
.value-card,
.bento-item,
.testimonial-card {
    opacity: 1 !important;
}

/* ===== Compact Cookie Consent Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    padding: 16px 24px;
    max-width: 600px;
    width: calc(100% - 40px);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text i {
    color: #F59E0B;
    font-size: 18px;
    flex-shrink: 0;
}

.cookie-text a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: var(--primary-blue);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 123, 255, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        padding: 14px 18px;
        width: calc(100% - 20px);
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-text p {
        font-size: 13px;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        gap: 8px;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-location {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Small Phone Optimization (375px and below) ===== */
@media (max-width: 375px) {
    .feature-card-large {
        min-width: 260px;
    }
    
    .video-reel-container {
        max-width: 240px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* ===== Extra Small Phone Optimization (320px and below) ===== */
@media (max-width: 320px) {
    .feature-card-large {
        min-width: 100%;  /* Full width on very small screens */
    }
    
    .video-reel-container {
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .nav-menu {
        width: 85%;  /* Wider menu on tiny screens */
        padding: 80px 20px;
    }
}

/* ===== Keyboard Navigation Focus Indicators (WCAG 2.1 Level AA Compliance) ===== */

/* Remove default outlines for consistency */
*:focus {
    outline: none;
}

/* Add custom focus indicators to all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-menu a:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Special focus for primary buttons */
.btn-primary:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(64, 123, 255, 0.4);
}

/* Focus for form inputs */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 0;
    border-color: var(--primary-blue);
}

/* Focus for navigation links */
.navbar a:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
}

/* Focus for modal close button */
.modal-close:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Focus for carousel navigation */
.carousel-nav:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Focus for social links */
.social-link:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Focus for cookie consent buttons */
.cookie-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Ensure focus is always visible for any missed elements */
:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}
