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

:root {
    /* Light theme (default) */
    --bg-primary: #fafbfc;
    --bg-secondary: #ffffff;
    --bg-accent: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-tertiary: #9ca3af;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-hover: #4f46e5;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Dark theme */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-accent: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --accent-primary: #818cf8;
    --accent-secondary: #a78bfa;
    --accent-hover: #6366f1;
    --border: #334155;
    --border-light: #1e293b;
    --gradient-1: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    --gradient-2: linear-gradient(135deg, #f472b6 0%, #fb7185 100%);
    --gradient-3: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 
                 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Smooth theme transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Prevent text overflow */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    letter-spacing: 0.01em;
    line-height: 1.25;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Ensure images and media scale properly */
img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(250, 251, 252, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
    background-color: rgba(15, 23, 42, 0.8);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

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

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 28px;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--bg-accent);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.theme-toggle:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .theme-toggle {
        width: 36px;
        height: 36px;
        margin-left: 0.5rem;
    }
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Resources dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: inherit;
    transition: color 0.3s ease;
}

.nav-dropdown-trigger:hover {
    color: var(--text-primary);
}

.nav-dropdown-trigger::after {
    content: '▾';
    font-size: 0.75rem;
    opacity: 0.8;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    min-width: 180px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
    color: var(--text-primary);
    background: var(--bg-accent);
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-links .cta-button {
    background: var(--gradient-1);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav-links .cta-button::after {
    display: none;
}

.nav-links .cta-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    opacity: 0.95;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0 3rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    overflow: visible;
}

.hero-content {
    max-width: 100%;
    overflow: visible;
    padding-right: 0.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    padding-right: 0.5rem;
    overflow: visible;
    word-wrap: break-word;
}

.title-line-1 {
    white-space: nowrap;
    display: inline-block;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-right: 0.1em;
    overflow: visible;
}

.hero-subtitle {
    font-size: clamp(0.75rem, 1.8vw, 1rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 2rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

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

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.05);
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

/* Hero Visual Animation - Complex Neural Network */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.ai-network-animation {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    overflow: visible;
}

/* Neural Network Layers */
.neural-layer {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.layer-input {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.layer-hidden-1 {
    left: 25%;
    top: 50%;
    transform: translateY(-50%);
}

.layer-hidden-2 {
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.layer-output {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    gap: 2rem;
}

/* Neurons */
.neuron {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-accent);
    border: 2px solid var(--border-light);
    position: relative;
    animation: neuronActivate 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.neuron.active {
    background: var(--gradient-1);
    border-color: var(--accent-primary);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
    animation: neuronPulse 1.5s ease-in-out infinite;
    animation-delay: var(--delay);
}

.neuron::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: neuronRipple 2s ease-out infinite;
    animation-delay: var(--delay);
}

/* Agent Nodes */
.agent-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.agent-core {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-1);
    position: relative;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    animation: agentGlow 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-icon {
    width: 32px;
    height: 32px;
    color: white;
    z-index: 1;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.agent-pulse {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: agentPulse 2s ease-in-out infinite;
}

.agent-label {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
}

.agent-discovery .agent-core {
    animation-delay: 0s;
}

.agent-analysis .agent-core {
    animation-delay: 0.3s;
}

.agent-testing .agent-core {
    animation-delay: 0.6s;
}

/* Neural Network Connections */
.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.25;
    pointer-events: none;
}

.neural-connection {
    stroke: var(--accent-primary);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 4, 4;
    animation: neuralFlow 4s linear infinite;
    opacity: 0.4;
}

.neural-connection:nth-child(odd) {
    animation-delay: 0s;
}

.neural-connection:nth-child(even) {
    animation-delay: 2s;
}

/* Data Particles */
.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.8);
    animation: particleFlow 3s linear infinite;
    animation-delay: var(--delay);
    transform-origin: center;
}

.particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: particleTrail 0.5s ease-out infinite;
}

.particle-1 {
    left: 8.33%;
    top: 20%;
    animation-name: particlePath1;
}

.particle-2 {
    left: 8.33%;
    top: 28%;
    animation-name: particlePath2;
}

.particle-3 {
    left: 8.33%;
    top: 36%;
    animation-name: particlePath3;
}

.particle-4 {
    left: 8.33%;
    top: 24%;
    animation-name: particlePath1;
}

.particle-5 {
    left: 8.33%;
    top: 32%;
    animation-name: particlePath2;
}

/* Security Scan Lines */
.security-scans {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    animation: scanMove 4s linear infinite;
    animation-delay: var(--delay);
}

.scan-horizontal {
    width: 100%;
    height: 2px;
    top: 20%;
    left: -100%;
}

.scan-vertical {
    width: 2px;
    height: 100%;
    left: 30%;
    top: -100%;
}

.scan-diagonal {
    width: 2px;
    height: 141%;
    left: 60%;
    top: -20%;
    transform: rotate(45deg);
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

/* Activity Indicators */
.activity-indicators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.activity-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: activityPulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.8);
}

/* Animations */
@keyframes neuronActivate {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes neuronPulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
        transform: scale(1.15);
    }
}

@keyframes neuronRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes agentGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(99, 102, 241, 0.7);
    }
}

@keyframes agentPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes neuralFlow {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 16;
        opacity: 0.2;
    }
}

@keyframes particlePath1 {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(400px, 50px) scale(1);
    }
    100% {
        transform: translate(400px, 50px) scale(0.5);
        opacity: 0;
    }
}

@keyframes particlePath2 {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(400px, 120px) scale(1);
    }
    100% {
        transform: translate(400px, 120px) scale(0.5);
        opacity: 0;
    }
}

@keyframes particlePath3 {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(400px, 190px) scale(1);
    }
    100% {
        transform: translate(400px, 190px) scale(0.5);
        opacity: 0;
    }
}

@keyframes particleTrail {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes scanMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(200%) translateY(200%);
    }
}

@keyframes activityPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Responsive styles for neural network animation */
@media (max-width: 768px) {
    .ai-network-animation {
        max-width: 100%;
        height: 400px;
        transform: scale(0.85);
    }
    
    .neural-layer {
        gap: 1rem;
    }
    
    .layer-output {
        gap: 1.5rem;
    }
    
    .neuron {
        width: 12px;
        height: 12px;
    }
    
    .neuron::before {
        width: 18px;
        height: 18px;
    }
    
    .agent-core {
        width: 55px;
        height: 55px;
    }
    
    .agent-pulse {
        width: 55px;
        height: 55px;
    }
    
    .agent-icon {
        width: 24px;
        height: 24px;
    }
    
    .agent-label {
        font-size: 0.65rem;
    }
    
    .particle {
        width: 6px;
        height: 6px;
    }
    
    .activity-dot {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .ai-network-animation {
        height: 350px;
        transform: scale(0.75);
    }
    
    .neural-connections {
        opacity: 0.15;
    }
    
    .neural-connection {
        stroke-width: 1;
    }
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
}

.why-section .section-header.why-section-header {
    margin-bottom: 2.5rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Why Section — Carousel */
.why-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.why-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1.5rem;
    margin: 0 -0.5rem;
    scrollbar-width: thin;
}

.why-carousel::-webkit-scrollbar {
    height: 6px;
}

.why-carousel::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 3px;
}

.why-carousel::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 3px;
}

.why-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.why-item {
    flex: 0 0 300px;
    width: 300px;
    min-height: 280px;
    max-height: 280px;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--bg-accent);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.why-item > * {
    position: relative;
    z-index: 1;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
}

.why-item:hover::before {
    opacity: 1;
}

.why-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
}

.why-carousel-btn:hover {
    border-color: var(--accent-primary);
    background: var(--bg-accent);
    color: var(--accent-primary);
}

.why-carousel-prev {
    left: 0.5rem;
}

.why-carousel-next {
    right: 0.5rem;
}

.why-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

.why-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.why-item p {
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.95rem;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    margin: 0;
}

/* Add-ons Page Hero */
.addons-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.addons-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.15;
}

.addons-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.45;
}

/* Hero Story Content */
.hero-story {
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-section {
    text-align: left;
}

.story-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.story-invitation {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    text-align: center;
    margin-top: 2rem;
}

.invitation-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.invitation-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: left;
}

.invitation-text:last-of-type {
    margin-bottom: 2rem;
}

.invitation-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

/* Add-ons Section */
.addons-section {
    padding: 6rem 0 8rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

.addons-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.addons-cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.addons-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Lifecycle Diagram */
.lifecycle-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
}

.lifecycle-diagram {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin: 4rem 0;
    padding: 2rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.lifecycle-diagram::-webkit-scrollbar {
    height: 6px;
}

.lifecycle-diagram::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 3px;
}

.lifecycle-diagram::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 3px;
}

.lifecycle-diagram::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.lifecycle-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 152px;
    width: 152px;
    min-width: 152px;
    padding: 1.25rem 1rem;
    background: var(--bg-accent);
    border-radius: 14px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lifecycle-stage:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.stage-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.stage-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.25;
}

.stage-components {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    margin-top: 0.25rem;
}

.component-badge {
    padding: 0.4rem 0.6rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: all 0.3s ease;
}

.component-badge.primary {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    font-weight: 700;
}

.lifecycle-stage:hover .component-badge {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.lifecycle-connector {
    font-size: 1.25rem;
    color: var(--accent-primary);
    font-weight: 700;
    flex-shrink: 0;
    align-self: center;
    padding: 0 0.5rem;
}

.lifecycle-description {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.lifecycle-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.addon-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.addon-card.available:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.addon-card.coming-soon {
    opacity: 0.85;
    cursor: default;
}

.addon-card.coming-soon:hover {
    transform: none;
}

.addon-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.addon-status-badge.available-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.addon-status-badge.coming-soon-badge {
    background: rgba(156, 163, 175, 0.1);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.addon-link.disabled {
    color: var(--text-tertiary);
    cursor: default;
    pointer-events: none;
}

.addon-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 0 1px var(--border-light);
}

.addon-icon img {
    max-width: 60px;
    max-height: 60px;
    display: block;
}

.addon-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.addon-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.addon-link {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.addon-card:hover .addon-link {
    margin-left: 4px;
}

/* Addons carousel (Platform Components on intelligence-suite) */
.addons-section .addons-section-header {
    margin-bottom: 2.5rem;
}

.addons-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.addons-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1.5rem;
    margin: 0 -0.5rem;
    scrollbar-width: thin;
}

.addons-carousel::-webkit-scrollbar {
    height: 6px;
}

.addons-carousel::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 3px;
}

.addons-carousel::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 3px;
}

.addons-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.addons-carousel .addon-card {
    flex: 0 0 300px;
    width: 300px;
    min-height: 320px;
    max-height: 320px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.addons-carousel .addon-card p {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.addons-carousel .addon-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.addons-carousel .addon-icon img {
    max-width: 48px;
    max-height: 48px;
}

.addons-carousel .addon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.addons-carousel .addon-link {
    margin-top: auto;
}

.addons-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
}

.addons-carousel-btn:hover {
    border-color: var(--accent-primary);
    background: var(--bg-accent);
    color: var(--accent-primary);
}

.addons-carousel-prev {
    left: 0.5rem;
}

.addons-carousel-next {
    right: 0.5rem;
}

/* Continuous Pentesting Section */
.continuous-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

.continuous-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.continuous-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.continuous-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.continuous-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.continuous-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.continuous-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.continuous-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.continuous-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.continuous-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

.continuous-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.25rem;
}


.continuous-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Order Section */
.order-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
}

.order-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.order-option {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.order-option:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.order-option.enterprise {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.order-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.order-badge.enterprise-badge {
    background: var(--gradient-1);
    color: white;
}

.order-option h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.order-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.order-timeline {
    font-size: 1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0;
}

.order-timeline-inline {
    font-size: 0.95rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin: -0.5rem 0 1.25rem 0;
    padding-left: 0.25rem;
}

.order-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.order-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

.order-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    width: 100%;
}

/* Order Modal */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.order-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-accent);
    color: var(--text-primary);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    padding-right: 3rem;
    line-height: 1.2;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-form label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-accent);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.order-form select {
    cursor: pointer;
}

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

.order-message {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 0.5rem;
    display: none;
}

.order-message.success {
    display: block;
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.order-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Benchmarks Section */
.benchmarks-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    max-width: 1100px;
    margin: 2.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.table-row {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.table-row:nth-child(even) {
    background: var(--bg-accent);
}

.table-row.header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-bottom: 2px solid var(--border);
}

.table-col {
    padding: 0.85rem 1.15rem;
    font-size: 0.9rem;
    line-height: 1.45;
    display: flex;
    align-items: center;
}

.table-col.manual-col::before,
.table-col.ai-col::before {
    display: none;
}

.table-row.header .table-col {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.metric-col {
    font-weight: 700;
    color: var(--text-primary);
}

.manual-col {
    color: var(--text-secondary);
}

.ai-col {
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-summary {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
}

.comparison-summary p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.benchmark-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.benchmark-item {
    display: flex;
    gap: 1.5rem;
}

.benchmark-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.benchmark-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.benchmark-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.process-diagram {
    margin: 4rem 0;
}

.diagram-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.diagram-step.reverse {
    direction: rtl;
}

.diagram-step.reverse > * {
    direction: ltr;
}

.step-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.visual-box {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.visual-box:hover {
    transform: scale(1.05);
}

.visual-box.discovery {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--accent-primary);
}

.visual-box.analysis {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--accent-primary);
}

.visual-box.testing {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--accent-primary);
}

.visual-box.reporting {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--accent-primary);
}

.box-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.box-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.connection-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    border-radius: 999px;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.ai-architecture {
    margin-top: 6rem;
    padding: 4rem;
    background: var(--bg-accent);
    border-radius: 24px;
    border: 1px solid var(--border-light);
}

.ai-architecture h3 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 2rem;
}

.architecture-layer {
    background: var(--bg-secondary);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
}

.layer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.12);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
}

.architecture-layer h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.architecture-layer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.layer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layer-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 1.2rem;
    position: relative;
}

.layer-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.agent-mesh {
    margin-top: 3rem;
    overflow: visible;
}

.mesh-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mesh-section-title::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 1.5em;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.mesh-grid {
    --pz-tab: 12px;
    --pz-w: 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 0;
    overflow: visible;
    perspective: 1200px;
}

.mesh-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mesh-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    color: var(--accent-primary);
}

.mesh-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Jigsaw puzzle tiles: tabs (bumps) and blanks (indents) interlock between neighbors.
   Grid 4×2. Row 0: cards 1–4; Row 1: cards 5–8. Trace outline clockwise: top → right → bottom → left. */

/* (0,0): straight top, tab right, tab bottom, straight left */
.mesh-card:nth-child(1) {
    clip-path: polygon(
        0 0, 100% 0,
        100% calc(50% - var(--pz-w)), calc(100% + var(--pz-tab)) 50%, 100% calc(50% + var(--pz-w)), 100% 100%,
        calc(50% + var(--pz-w)) 100%, 50% calc(100% + var(--pz-tab)), calc(50% - var(--pz-w)) 100%, 0 100%,
        0 0
    );
}

/* (1,0) (2,0): blank left, tab right, tab bottom */
.mesh-card:nth-child(2),
.mesh-card:nth-child(3) {
    clip-path: polygon(
        0 0, 100% 0,
        100% calc(50% - var(--pz-w)), calc(100% + var(--pz-tab)) 50%, 100% calc(50% + var(--pz-w)), 100% 100%,
        calc(50% + var(--pz-w)) 100%, 50% calc(100% + var(--pz-tab)), calc(50% - var(--pz-w)) 100%, 0 100%,
        0 calc(50% + var(--pz-w)), var(--pz-tab) 50%, 0 calc(50% - var(--pz-w)), 0 0
    );
}

/* (3,0): blank left, straight right, tab bottom */
.mesh-card:nth-child(4) {
    clip-path: polygon(
        0 0, 100% 0, 100% 100%,
        calc(50% + var(--pz-w)) 100%, 50% calc(100% + var(--pz-tab)), calc(50% - var(--pz-w)) 100%, 0 100%,
        0 calc(50% + var(--pz-w)), var(--pz-tab) 50%, 0 calc(50% - var(--pz-w)), 0 0
    );
}

/* (0,1): blank top, tab right, straight bottom */
.mesh-card:nth-child(5) {
    clip-path: polygon(
        0 0, calc(50% - var(--pz-w)) 0, 50% var(--pz-tab), calc(50% + var(--pz-w)) 0, 100% 0,
        100% calc(50% - var(--pz-w)), calc(100% + var(--pz-tab)) 50%, 100% calc(50% + var(--pz-w)), 100% 100%,
        0 100%, 0 0
    );
}

/* (1,1) (2,1): blank top, blank left, tab right */
.mesh-card:nth-child(6),
.mesh-card:nth-child(7) {
    clip-path: polygon(
        0 0, calc(50% - var(--pz-w)) 0, 50% var(--pz-tab), calc(50% + var(--pz-w)) 0, 100% 0,
        100% calc(50% - var(--pz-w)), calc(100% + var(--pz-tab)) 50%, 100% calc(50% + var(--pz-w)), 100% 100%,
        0 100%, 0 calc(50% + var(--pz-w)), var(--pz-tab) 50%, 0 calc(50% - var(--pz-w)), 0 0
    );
}

/* (3,1): blank top, blank left, straight right */
.mesh-card:nth-child(8) {
    clip-path: polygon(
        0 0, calc(50% - var(--pz-w)) 0, 50% var(--pz-tab), calc(50% + var(--pz-w)) 0, 100% 0, 100% 100%,
        0 100%, 0 calc(50% + var(--pz-w)), var(--pz-tab) 50%, 0 calc(50% - var(--pz-w)), 0 0
    );
}

.mesh-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(99, 102, 241, 0.15);
    transform: translateY(-14px) scale(1.04);
    z-index: 10;
}

.mesh-grid:has(.mesh-card:hover) .mesh-card:not(:hover) {
    transform: scale(0.96);
    opacity: 0.88;
}

@media (prefers-reduced-motion: reduce) {
    .mesh-card {
        transition-duration: 0.15s;
    }
    .mesh-card:hover {
        transform: translateY(-6px) scale(1.02);
    }
    .mesh-grid:has(.mesh-card:hover) .mesh-card:not(:hover) {
        transform: none;
        opacity: 1;
    }
}

.mesh-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    width: 100%;
}

.mesh-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    width: 100%;
    margin: 0;
}

.pipeline-flow {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.flow-step {
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.flow-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.flow-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

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

/* Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background: var(--bg-accent);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-accent);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.review-content {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.reviewer-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.reviewer-name:hover {
    color: var(--accent-primary);
}

.reviewer-title {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.4;
}

/* Inline Testimonial (embedded in content) */
.inline-testimonial {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 55%), var(--bg-secondary);
    box-shadow: var(--shadow-xs);
}

.inline-testimonial-quote {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.inline-testimonial-quote::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -0.4rem;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--accent-primary);
    opacity: 0.3;
}

.inline-testimonial-author {
    margin-top: 0.25rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.inline-testimonial .review-text {
    font-size: 1rem;
    line-height: 1.6;
}

.post-cta-testimonial {
    padding: 2.5rem 0 4rem;
    background: var(--bg-secondary);
}

.post-cta-testimonial .inline-testimonial {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Supporting Content Section */
.supporting-content-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.content-block p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.feature-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.result-item {
    padding: 1.4rem 1.25rem;
    background: var(--bg-accent);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.result-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.result-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-primary);
}

.contact-form {
    background: var(--bg-accent);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

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

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Locations Section */
.locations-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.location-address {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-country {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.locations-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.locations-map .leaflet-container {
    height: 100%;
    width: 100%;
    border-radius: 12px;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: var(--bg-accent);
    border-top: 1px solid var(--border-light);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.social-link:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.footer-column-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column-links li {
    margin: 0;
}

.footer-column-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-column-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

/* Footer Trust & Recognition */
.footer-trust {
    margin-top: 1rem;
}

.footer-trust-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 0.6rem;
}

.footer-trust-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-trust-logo {
    height: 64px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: opacity(0.8);
    transition: opacity 0.2s ease;
}

.footer-trust-logo:hover {
    filter: opacity(0.85);
}

[data-theme="dark"] .footer-trust-logo {
    filter: opacity(0.9);
}

[data-theme="dark"] .footer-trust-logo:hover {
    filter: opacity(1);
}

/* About page credentials with logos */
.about-credentials {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.about-credentials-heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
}

.about-credentials-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
    align-items: start;
}

.about-cred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-cred-logo {
    height: 56px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 0.75rem;
    filter: opacity(0.9);
    transition: filter 0.25s ease;
}

.about-cred-item:hover .about-cred-logo {
    filter: opacity(1);
}

[data-theme="dark"] .about-cred-logo {
    filter: opacity(0.9);
}

[data-theme="dark"] .about-cred-item:hover .about-cred-logo {
    filter: opacity(1);
}

.about-cred-fallback {
    display: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.about-cred-fallback.show {
    display: block;
}

.about-cred-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        gap: 3rem;
    }

    .hero-visual {
        min-height: 450px;
    }

    .ai-network-animation {
        max-width: 450px;
        height: 450px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

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

    .why-item {
        flex: 0 0 280px;
        width: 280px;
        min-height: 260px;
        max-height: 260px;
    }

    .why-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.35rem;
        left: 0.25rem;
        right: auto;
    }

    .why-carousel-next {
        left: auto;
        right: 0.25rem;
    }

    .addons-carousel .addon-card {
        flex: 0 0 280px;
        width: 280px;
        min-height: 300px;
        max-height: 300px;
    }

    .addons-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.35rem;
        left: 0.25rem;
        right: auto;
    }

    .addons-carousel-next {
        left: auto;
        right: 0.25rem;
    }

    .comparison-table {
        margin: 2rem auto;
        border-radius: 12px;
    }

    .table-row {
        grid-template-columns: minmax(120px, 1fr) repeat(2, minmax(0, 1fr));
    }

    .ai-architecture {
        padding: 3rem 2.5rem;
    }

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

    .mesh-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .mesh-card {
        clip-path: none;
        border-radius: 14px;
    }

    .pipeline-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .lifecycle-diagram {
        padding: 2rem 1.25rem;
    }

    .lifecycle-stage {
        flex: 0 0 140px;
        width: 140px;
        min-width: 140px;
        padding: 1.125rem 0.875rem;
    }

    .stage-label {
        font-size: 0.9rem;
    }

    .component-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
    }

    .lifecycle-connector {
        font-size: 1.125rem;
        padding: 0 0.35rem;
    }

    .order-options {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--border-light);
        gap: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem 0;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        margin-left: 1rem;
        margin-bottom: 0.5rem;
        min-width: auto;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--border-light);
        border-radius: 0;
        padding: 0.25rem 0 0.5rem 0.5rem;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-links .cta-button {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .ai-network-animation {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 2rem;
        line-height: 1.45;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        margin-bottom: 3rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 300px;
    }

    .ai-network-animation {
        max-width: 300px;
        height: 300px;
    }

    .node-core {
        width: 50px;
        height: 50px;
    }

    .node-pulse {
        width: 50px;
        height: 50px;
    }

    .node-center .node-core {
        width: 60px;
        height: 60px;
    }

    .node-center .node-pulse {
        width: 60px;
        height: 60px;
    }

    .node-label {
        font-size: 0.65rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .why-item {
        flex: 0 0 280px;
        width: 280px;
        min-height: 260px;
        max-height: 260px;
        padding: 1.25rem;
    }

    .why-item h3 {
        font-size: 1.1rem;
    }

    .why-item p {
        font-size: 0.9rem;
    }

    .why-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
        left: 0.5rem;
        right: auto;
    }

    .why-carousel-next {
        left: auto;
        right: 0.5rem;
    }

    .addons-carousel .addon-card {
        flex: 0 0 280px;
        width: 280px;
        min-height: 300px;
        max-height: 300px;
        padding: 1.25rem;
    }

    .addons-carousel .addon-card h3 {
        font-size: 1.1rem;
    }

    .addons-carousel .addon-card p {
        font-size: 0.9rem;
    }

    .addons-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
        left: 0.5rem;
        right: auto;
    }

    .addons-carousel-next {
        left: auto;
        right: 0.5rem;
    }

    .comparison-table {
        margin: 1.75rem auto;
        border-radius: 12px;
        overflow-x: auto;
    }

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

    .table-row.header {
        display: none;
    }

    .table-col {
        padding: 0.75rem 1rem;
        border-top: 1px solid var(--border-light);
    }

    .table-col.metric-col {
        background: rgba(15, 23, 42, 0.03);
        font-size: 0.85rem;
    }

    .table-col.manual-col::before,
    .table-col.ai-col::before {
        content: attr(data-label);
        display: inline-block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 700;
        color: var(--text-secondary);
        margin-right: 0.5rem;
    }

    .ai-architecture {
        padding: 2rem 1.5rem;
    }

    .architecture-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .architecture-layer {
        padding: 1.25rem;
    }

    .mesh-grid,
    .pipeline-flow {
        grid-template-columns: 1fr;
    }

    .mesh-grid {
        gap: 0.75rem;
    }

    .mesh-card {
        clip-path: none;
        border-radius: 14px;
    }

    .mesh-card,
    .flow-step {
        padding: 1rem;
    }

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

    .lifecycle-diagram {
        flex-direction: column;
        flex-wrap: wrap;
        overflow: visible;
        padding: 2rem 1rem;
        gap: 0.75rem;
    }

    .lifecycle-connector {
        transform: rotate(90deg);
        font-size: 1.25rem;
        padding: 0.25rem 0;
    }

    .lifecycle-stage {
        flex: none;
        width: 100%;
        min-width: auto;
        max-width: 100%;
        padding: 1.25rem 1rem;
    }

    .stage-icon {
        font-size: 2.25rem;
    }

    .stage-label {
        font-size: 1rem;
    }

    .stage-components {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .component-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .lifecycle-description {
        padding: 0 1rem;
    }

    .lifecycle-description p {
        font-size: 1rem;
    }

    .benchmark-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diagram-step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diagram-step.reverse {
        direction: ltr;
    }

    .step-visual {
        justify-content: center;
        order: -1;
    }

    .agent-nodes {
        grid-template-columns: 1fr;
    }

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

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


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

    .continuous-card {
        padding: 2rem 1.5rem;
    }

    .continuous-icon {
        font-size: 2.5rem;
    }

    .continuous-card h3 {
        font-size: 1.5rem;
    }

    .continuous-features li {
        font-size: 1rem;
    }

    .continuous-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .why-section,
    .benchmarks-section,
    .how-it-works-section,
    .supporting-content-section,
    .reviews-section,
    .continuous-section,
    .order-section,
    .contact-section,
    .locations-section,
    .addons-section,
    .lifecycle-section {
        padding: 4rem 0;
    }

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

    .review-card {
        padding: 2rem;
    }
    
    .locations-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .locations-map {
        height: 400px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .addons-hero {
        padding: 10rem 0 4rem;
        text-align: left;
    }

    .addons-hero-title {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
    }

    .addons-hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 3rem;
    }

    .hero-story {
        margin-top: 3rem;
    }

    .story-content {
        gap: 3rem;
    }

    .story-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .story-text {
        font-size: 1rem;
    }

    .story-invitation {
        padding: 2.5rem 2rem;
    }

    .invitation-title {
        font-size: clamp(1.75rem, 4vw, 2rem);
    }

    .invitation-text {
        font-size: 1rem;
    }

    .invitation-cta {
        flex-direction: column;
        width: 100%;
    }

    .invitation-cta .btn {
        width: 100%;
    }

    .addon-card {
        padding: 2rem 1.5rem;
    }

    .addon-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    .addon-icon img {
        max-width: 52px;
        max-height: 52px;
    }

    .addon-card h3 {
        font-size: 1.25rem;
    }

    .addon-card p {
        font-size: 0.95rem;
    }

    .addon-status-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .order-section {
        padding: 4rem 0;
    }

    .order-header {
        margin-bottom: 3rem;
    }

    .order-option {
        padding: 2rem 1.5rem;
    }

    .order-option h3 {
        font-size: 1.5rem;
    }

    .order-description {
        font-size: 1rem;
    }

    .order-features li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    .comparison-card {
        padding: 2rem 1.5rem;
    }

    .comparison-header h3 {
        font-size: 1.25rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .benchmark-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benchmark-icon {
        font-size: 2.5rem;
    }

    .benchmark-content h3 {
        font-size: 1.25rem;
    }

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

    .diagram-step {
        gap: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

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

    .visual-box {
        width: 100px;
        height: 100px;
    }

    .box-icon {
        width: 50px;
        height: 50px;
    }

    .ai-agents-visual {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .ai-agents-visual h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .central-node {
        width: 140px;
        height: 140px;
    }

    .node-label {
        font-size: 1rem;
    }

    .agent-node {
        padding: 1.5rem;
    }

    .agent-icon {
        font-size: 2rem;
    }

    .agent-name {
        font-size: 1rem;
    }

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

    .content-block h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

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

    .result-number {
        font-size: 2.5rem;
    }

    .result-desc {
        font-size: 0.9rem;
    }

    .contact-info h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .addons-cta {
        padding: 3rem 1.5rem;
    }

    .addons-cta h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .addons-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .continuous-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .order-modal {
        padding: 1rem;
    }

    .order-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-option {
        padding: 1.5rem 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        max-height: 95vh;
        margin: 1rem;
        border-radius: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        padding-right: 2.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.95rem;
    }

    .order-form {
        gap: 1rem;
    }

    .order-form input,
    .order-form select,
    .order-form textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

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

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

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

    .footer-trust-logos {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .footer-trust-logo {
        height: 52px;
        max-width: 130px;
    }

    .footer-column-title {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

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

    .trust-cert-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-testimonials {
        grid-template-columns: 1fr;
    }

    .about-credentials-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .about-cred-logo {
        height: 44px;
        max-width: 110px;
    }

    .why-section,
    .benchmarks-section,
    .how-it-works-section,
    .supporting-content-section,
    .reviews-section,
    .continuous-section,
    .order-section,
    .contact-section,
    .locations-section,
    .addons-section,
    .lifecycle-section {
        padding: 3rem 0;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .reviewer-photo {
        width: 56px;
        height: 56px;
    }
    
    .locations-wrapper {
        gap: 2rem;
    }
    
    .locations-map {
        height: 350px;
    }
    
    .location-item {
        padding: 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .why-item {
        padding: 1.5rem;
    }

    .why-item h3 {
        font-size: 1.25rem;
    }

    .why-item p {
        font-size: 1rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    .benchmark-item {
        gap: 0.75rem;
    }

    .diagram-step {
        gap: 1rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .visual-box {
        width: 80px;
        height: 80px;
    }

    .box-icon {
        width: 40px;
        height: 40px;
    }

    .box-label {
        font-size: 0.75rem;
    }

    .connection-line {
        min-width: 40px;
    }

    .ai-agents-visual {
        padding: 1.5rem 1rem;
    }

    .central-node {
        width: 120px;
        height: 120px;
    }

    .node-label {
        font-size: 0.9rem;
    }

    .node-subtitle {
        font-size: 0.75rem;
    }

    .agent-node {
        padding: 1.25rem;
    }

    .agent-icon {
        font-size: 1.75rem;
    }

    .agent-name {
        font-size: 0.95rem;
    }

    .agent-desc {
        font-size: 0.75rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .feature-list li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    .results-grid {
        gap: 1rem;
    }

    .result-item {
        padding: 1.5rem;
    }

    .result-number {
        font-size: 2rem;
    }

    .result-desc {
        font-size: 0.85rem;
    }

    .lifecycle-stage {
        padding: 1.25rem 1rem;
    }

    .stage-components {
        gap: 0.4rem;
    }

    .component-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }

    .addons-hero {
        padding: 8rem 0 3rem;
    }

    .hero-story {
        margin-top: 2rem;
    }

    .story-content {
        gap: 2.5rem;
    }

    .story-section {
        text-align: left;
    }

    .story-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: 1.25rem;
    }

    .story-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .story-invitation {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }

    .invitation-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: 1.25rem;
    }

    .invitation-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .invitation-cta {
        margin-top: 1.5rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .addon-card {
        padding: 1.75rem 1.25rem;
    }

    .addon-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .addon-icon img {
        max-width: 48px;
        max-height: 48px;
    }

    .addon-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .addon-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .addons-cta {
        padding: 2rem 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .addons-hero-title {
        font-size: 2rem;
    }

    .hero-story {
        margin-top: 1.5rem;
    }

    .story-content {
        gap: 2rem;
    }

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

    .story-text {
        font-size: 0.9rem;
    }

    .story-invitation {
        padding: 1.5rem 1rem;
    }

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

    .invitation-text {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .modal-content {
        padding: 1.25rem;
        margin: 0.5rem;
        max-height: 98vh;
    }

    .modal-content h2 {
        font-size: 1.25rem;
        padding-right: 2rem;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1.25rem;
    }

    .order-option {
        padding: 1.25rem 0.75rem;
    }

    .addon-card {
        padding: 1.5rem 1rem;
    }

    .pathway-label,
    .stage-label,
    .component-badge,
    .branch-label {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Large screens - prevent content from being too wide */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-content {
        max-width: 1000px;
    }
}

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


.why-item,
.addon-card,
.comparison-card,
.benchmark-item,
.diagram-step,
.agent-node,
.result-item,
.order-option,
.continuous-card,
.benefit-item,
.lifecycle-stage {
    animation: fadeInUp 0.6s ease-out backwards;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }
.why-item:nth-child(5) { 
    animation-delay: 0.5s;
}

.addon-card:nth-child(1) { animation-delay: 0.1s; }
.addon-card:nth-child(2) { animation-delay: 0.2s; }
.addon-card:nth-child(3) { animation-delay: 0.3s; }
.addon-card:nth-child(4) { animation-delay: 0.4s; }
.addon-card:nth-child(5) { animation-delay: 0.5s; }

.comparison-card:nth-child(1) { animation-delay: 0.1s; }
.comparison-card:nth-child(2) { animation-delay: 0.2s; }

.benchmark-item:nth-child(1) { animation-delay: 0.1s; }
.benchmark-item:nth-child(2) { animation-delay: 0.2s; }
.benchmark-item:nth-child(3) { animation-delay: 0.3s; }
.benchmark-item:nth-child(4) { animation-delay: 0.4s; }

.diagram-step:nth-child(1) { animation-delay: 0.1s; }
.diagram-step:nth-child(2) { animation-delay: 0.2s; }
.diagram-step:nth-child(3) { animation-delay: 0.3s; }
.diagram-step:nth-child(4) { animation-delay: 0.4s; }

.agent-node:nth-child(1) { animation-delay: 0.1s; }
.agent-node:nth-child(2) { animation-delay: 0.15s; }
.agent-node:nth-child(3) { animation-delay: 0.2s; }
.agent-node:nth-child(4) { animation-delay: 0.25s; }
.agent-node:nth-child(5) { animation-delay: 0.3s; }
.agent-node:nth-child(6) { animation-delay: 0.35s; }

.result-item:nth-child(1) { animation-delay: 0.1s; }
.result-item:nth-child(2) { animation-delay: 0.2s; }
.result-item:nth-child(3) { animation-delay: 0.3s; }
.result-item:nth-child(4) { animation-delay: 0.4s; }

.order-option:nth-child(1) { animation-delay: 0.1s; }
.order-option:nth-child(2) { animation-delay: 0.2s; }

.continuous-card:nth-child(1) { animation-delay: 0.1s; }
.continuous-card:nth-child(2) { animation-delay: 0.2s; }

.lifecycle-stage:nth-child(1) { animation-delay: 0.1s; }
.lifecycle-stage:nth-child(3) { animation-delay: 0.15s; }
.lifecycle-stage:nth-child(5) { animation-delay: 0.2s; }
.lifecycle-stage:nth-child(7) { animation-delay: 0.25s; }
.lifecycle-stage:nth-child(9) { animation-delay: 0.3s; }

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.15s; }
.benefit-item:nth-child(3) { animation-delay: 0.2s; }
.benefit-item:nth-child(4) { animation-delay: 0.25s; }

/* Blog Section Styles */
.blog-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    scroll-margin-top: 80px;
}

[data-theme="dark"] .blog-hero {
    background: linear-gradient(135deg, #4c51bf 0%, #6b21a8 100%);
}

.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 999px;
}

.about-hero-accent {
    width: 48px;
    height: 4px;
    margin: 1.5rem auto 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    border-radius: 2px;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.4;
}

[data-theme="dark"] .blog-hero {
    background: linear-gradient(135deg, #4c51bf 0%, #6b21a8 100%);
}

.blog-content {
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

/* Trust Center Page */
.trust-section {
    margin-bottom: 2.5rem;
}

.trust-section:last-child {
    margin-bottom: 0;
}

.trust-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.trust-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.trust-certs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.trust-cert-logo {
    height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

[data-theme="dark"] .trust-cert-logo {
    filter: opacity(0.9);
}

.trust-cert-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.trust-media-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.trust-media-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.trust-media-list a {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
}

.trust-media-list a:hover {
    text-decoration: underline;
}

.trust-media-source {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-left: 0.5rem;
}

.trust-media-list p {
    margin: 0.5rem 0 0 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-alignment-list,
.trust-practices-list {
    padding-left: 1.5rem;
}

.trust-alignment-list li,
.trust-practices-list li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.trust-testimonial {
    padding: 1.25rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.trust-testimonial-quote {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
}

.trust-testimonial-meta {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.trust-footer-links {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

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

.trust-resources-list li {
    margin-bottom: 0.5rem;
}

.trust-resources-list a {
    color: var(--accent-primary);
    text-decoration: none;
}

.trust-resources-list a:hover {
    text-decoration: underline;
}

/* Free Security Posture Report Page */
.security-report-section {
    padding: 2rem 0 3rem;
}

/* Compact hero when form is primary */
.blog-hero-compact {
    padding: 6rem 0 1.5rem;
}

/* Report Preview - Flipbook Style */
.security-report-preview {
    padding: 2.5rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    scroll-margin-top: 80px;
}

.report-preview-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 0.5rem;
}

.report-preview-intro {
    text-align: center;
    color: var(--text-secondary);
    margin: 0 0 2rem;
    font-size: 1rem;
}

.report-flipbook {
    max-width: 720px;
    margin: 0 auto;
    contain: layout paint;
}

.flipbook-book {
    position: relative;
    min-height: 380px;
}

.flipbook-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    margin-left: -3px;
    background: linear-gradient(90deg, #475569 0%, #64748b 50%, #475569 100%);
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
    z-index: 0;
}

.flipbook-pages {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
}

.flipbook-page {
    position: absolute;
    width: 100%;
    max-width: 340px;
    left: 50%;
    margin-left: -170px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.flipbook-page[data-page="1"] {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

.flipbook-page[data-page="2"] {
    z-index: 1;
}

.report-flipbook.flipped .flipbook-page[data-page="1"] {
    opacity: 0;
    pointer-events: none;
}

.report-flipbook.flipped .flipbook-page[data-page="2"] {
    opacity: 1;
    pointer-events: auto;
}

.flipbook-page-inner {
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 4px 4px 20px rgba(0,0,0,0.12), 0 0 0 1px var(--border-light);
}

.flipbook-page-inner img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 320px;
    object-fit: cover;
    object-position: top;
}

.flipbook-page-label {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    background: var(--bg-accent);
}

.flipbook-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.flipbook-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.flipbook-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.flipbook-counter {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.security-report-card {
    max-width: 680px;
    margin: 0 auto 2rem;
    background: var(--bg-secondary);
    padding: 2.25rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.security-report-form .form-group {
    margin-bottom: 1.25rem;
}

.security-report-form .form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.security-report-form .required {
    color: var(--accent-primary);
}

.security-report-form .form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-secondary, #ef4444);
    margin-top: 0.35rem;
}

.security-report-form .phone-input-wrapper {
    display: flex;
    gap: 0.75rem;
}

.security-report-form .phone-input-wrapper select {
    min-width: 180px;
    max-width: 240px;
    flex-shrink: 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.security-report-form .phone-input-wrapper input {
    flex: 1;
    min-width: 0;
}

.security-report-form .form-group-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.security-report-form .form-group-checkbox input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.security-report-form .form-group-captcha {
    margin-bottom: 1.5rem;
}

.security-report-submit {
    width: 100%;
}

.submit-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.security-report-disclaimer {
    max-width: 680px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: var(--bg-accent);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.security-report-disclaimer h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.security-report-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-hero-compact {
        padding: 5.5rem 0 2rem;
    }
    .security-report-section {
        padding: 1.5rem 0 2rem;
    }
    .security-report-preview {
        padding: 2rem 0 1rem;
        margin-top: 1.5rem;
    }
    .report-preview-title {
        font-size: 1.5rem;
    }
    .report-preview-intro {
        margin-bottom: 1.5rem;
    }
    .flipbook-book {
        min-height: 300px;
    }
    .flipbook-page {
        max-width: calc(100vw - 2rem);
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .flipbook-page-inner img {
        max-height: 260px;
    }
    .flipbook-btn {
        width: 40px;
        height: 40px;
    }
    .security-report-card {
        padding: 1.5rem;
    }
    .security-report-form .form-row {
        grid-template-columns: 1fr;
    }
    .security-report-form .phone-input-wrapper select {
        min-width: 140px;
    }
    .security-report-submit {
        width: 100%;
    }
}

/* Privacy Policy & About Page Styles */
.privacy-policy-content,
.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-purpose {
    padding-bottom: 0.5rem;
    border-left: 4px solid var(--accent-primary);
    padding-left: 1.25rem;
    margin-left: 0;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 0 !important;
}

.about-h2 {
    position: relative;
    padding-left: 1rem;
}

.about-h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.1em;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.belief-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.belief-list .belief-item {
    margin-bottom: 0;
    position: relative;
    padding-left: 3rem;
    border-left: none;
}

.belief-num {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.12);
    border-radius: 50%;
}

.about-section-alt {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 2rem 1.5rem;
    border-radius: 12px;
}

.about-team-sub {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 2rem 0 1rem;
    padding: 0;
    text-align: center;
    letter-spacing: 0.01em;
}

.about-team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-team-row .about-team-card {
    width: 280px;
    max-width: 100%;
    flex: 0 1 280px;
}

.about-team-section .about-h2::before {
    display: none;
}

.about-team-section .about-h2 {
    padding-left: 0;
}

.about-team-card {
    padding: 0 0 1.25rem;
    background: var(--bg-accent);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.about-team-photo-wrap {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.about-team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-team-initials {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
}

.about-team-initials.show {
    display: flex;
}

.about-team-card > .about-team-name,
.about-team-card > .about-team-role {
    padding-left: 1rem;
    padding-right: 1rem;
}

a.about-team-card {
    color: inherit;
    text-decoration: none;
}

.about-team-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.about-team-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.about-funding-note {
    font-size: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.privacy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.privacy-section ul li::marker {
    color: var(--accent-primary);
}

.privacy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-primary);
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* About Page Specific Styles */
.about-section {
    margin-bottom: 3rem;
}

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

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.about-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.about-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.about-list li::marker {
    color: var(--accent-primary);
}

.about-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

.belief-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-accent);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.belief-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.belief-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.belief-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.01em;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* India AI Impact Summit 2026 Banner (home page) */
.india-ai-summit-banner {
    margin-top: 80px;
    padding: 0.875rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.06) 100%);
    border-bottom: 1px solid var(--border-light);
}

[data-theme="dark"] .india-ai-summit-banner {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-bottom-color: var(--border);
}

.india-ai-summit-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
}

.india-ai-summit-logo {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    flex-shrink: 0;
}

.india-ai-summit-content {
    min-width: 0;
}

.india-ai-summit-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.india-ai-summit-text strong {
    color: var(--accent-primary);
}

.india-ai-summit-dismiss {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.india-ai-summit-dismiss:hover {
    background: var(--bg-accent);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .india-ai-summit-banner-inner {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .india-ai-summit-logo {
        height: 32px;
    }
    .india-ai-summit-dismiss {
        position: absolute;
        top: 0;
        right: 0;
    }
}

.funding-announcement {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.8;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
    margin-bottom: 1.5rem !important;
}

.about-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.about-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    border: none;
    padding: 0;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.about-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page – Narrative (Story-Driven) */
.about-page {
    background: var(--bg-primary);
    padding-bottom: 0;
}

.about-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(99, 102, 241, 0.15);
    z-index: 9999;
    pointer-events: none;
}

.about-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.15s ease-out;
}

[data-theme="dark"] .about-progress {
    background: rgba(129, 140, 248, 0.2);
}

.about-act {
    position: relative;
    padding: 5rem 0;
    scroll-margin-top: 80px;
}

.about-act-inner {
    max-width: 780px;
    margin: 0 auto;
}

.about-act-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.about-act-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-act-body {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-act-body:last-child {
    margin-bottom: 0;
}

.about-pullquote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Act 1: Hero */
.about-act-hero {
    padding: 10rem 0 8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.about-act-hero .container {
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .about-act-hero {
    background: linear-gradient(135deg, #4c51bf 0%, #6b21a8 100%);
}

.about-hero-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255,255,255,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: about-mesh-shift 18s ease-in-out infinite;
}

@keyframes about-mesh-shift {
    0%, 100% { opacity: 1; transform: scale(1) translate(0, 0); }
    33% { opacity: 0.95; transform: scale(1.02) translate(1%, 1%); }
    66% { opacity: 1; transform: scale(0.98) translate(-1%, -0.5%); }
}

.about-act-hero .about-act-label {
    color: rgba(255,255,255,0.85);
}

.about-hero-line {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.about-hero-tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.about-hero-support {
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Act 2: Purpose */
.about-act-purpose {
    background: var(--bg-secondary);
}

.about-act-purpose .about-pullquote {
    margin-bottom: 1rem;
}

/* Act 3: Beliefs – Timeline */
.about-act-beliefs {
    background: var(--bg-primary);
}

.about-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--border-light);
    margin-left: 0.5rem;
}

.about-timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-primary);
}

.about-timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.about-timeline-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* Act 4: Problem (dark) */
.about-act-problem {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.about-act-dark-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
    pointer-events: none;
}

[data-theme="dark"] .about-act-dark-bg {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.06) 100%);
}

.about-act-problem .about-act-heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* Act 5: Turn – Callouts */
.about-act-turn {
    background: var(--bg-primary);
}

.about-callouts {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-callout {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent-primary);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-callout:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.about-callout-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.about-callout p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* Act 6: Democratizing */
.about-act-democratizing {
    background: var(--bg-secondary);
}

/* Act 7: Team */
.about-act-team {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.about-act-team .about-act-inner {
    max-width: 1000px;
}

.about-act-team .about-team-row {
    margin-top: 1.5rem;
}

/* Act 8: Vision */
.about-act-vision {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.about-vision-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-act-vision .about-funding-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Act 9: CTA */
.about-act-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.06) 100%);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.about-cta-question {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.about-cta-support {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.about-act-cta .about-cta-buttons {
    justify-content: center;
}

/* Scroll reveal */
.about-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.about-reveal-stagger > .about-reveal {
    transition-delay: var(--stagger, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .about-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .about-reveal-stagger > .about-reveal { transition-delay: 0s; }
    .about-hero-mesh { animation: none; }
    .about-callout:hover { transform: none; }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 5rem 0 2.5rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    scroll-margin-top: 80px;
}

.pricing-hero-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.15;
}

.pricing-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
}

.pricing-hero-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-section {
    padding: 3rem 0;
    background-color: var(--bg-primary);
}

.pricing-section-alt {
    background-color: var(--bg-secondary);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.pricing-card-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-amounts {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    text-align: center;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.pricing-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-features-compact {
    margin-top: 1rem;
}

.pricing-features-compact li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.75rem;
}

.pricing-timeline {
    font-size: 0.95rem;
    color: var(--accent-primary);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-info-block {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.pricing-section-alt .pricing-info-block {
    background: var(--bg-secondary);
}

.pricing-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.pricing-info-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-cta {
    margin-top: 1.5rem;
}

.pricing-faq-title {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.01em;
}

.blog-section {
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

.blog-articles-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-article-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    gap: 0;
    border: 1px solid var(--border-light);
}

.blog-article-card.article-image-left {
    flex-direction: row;
}

.blog-article-card.article-image-right {
    flex-direction: row-reverse;
}

.blog-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.article-thumbnail {
    flex: 0 0 300px;
    width: 300px;
    align-self: stretch;
    overflow: hidden;
    background: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-article-card:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-header {
    margin-bottom: 1rem;
}

.article-date {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.article-excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt .internal-link {
    color: var(--accent-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-excerpt .internal-link:hover {
    color: var(--accent-hover);
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    gap: 0.5rem;
}

.article-read-more:hover {
    color: var(--accent-hover);
    gap: 0.75rem;
}

/* Responsive Blog Styles */
@media (max-width: 968px) {
    .blog-articles-list {
        gap: 2rem;
    }

    .blog-article-card,
    .blog-article-card.article-image-left,
    .blog-article-card.article-image-right {
        flex-direction: column;
    }

    .article-thumbnail {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.35rem;
    }

    .article-date {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-subtitle {
        font-size: 1.1rem;
    }

    .privacy-policy-content,
    .about-content {
        padding: 2rem;
    }

    .privacy-section h2,
    .about-section h2 {
        font-size: 1.75rem;
    }

    .privacy-section h3,
    .belief-item h3 {
        font-size: 1.25rem;
    }

    .about-cta {
        padding: 2rem;
    }

    .about-cta h2 {
        font-size: 1.75rem;
    }

    .belief-list {
        grid-template-columns: 1fr;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-section-alt {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 1.5rem 1rem;
    }

    .about-purpose {
        padding-left: 1rem;
        margin-left: 0;
    }

    .about-hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .about-act {
        padding: 3.5rem 0;
    }

    .about-act-hero {
        padding: 8rem 0 5rem;
    }

    .about-hero-line {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }

    .about-pullquote {
        font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    }

    .about-timeline {
        padding-left: 1.5rem;
    }

    .about-timeline-dot {
        left: -1.5rem;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 3px var(--bg-primary);
    }

    .about-act-problem,
    .about-act-team,
    .about-act-vision {
        padding: 4rem 0;
    }

    .about-cta-question {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    }

    .blog-articles-list {
        gap: 1.5rem;
    }

    .article-thumbnail {
        height: 200px;
    }

    .article-content {
        padding: 1.25rem;
    }

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

    .article-date {
        font-size: 0.8rem;
    }

    .article-excerpt {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content,
    .about-content {
        padding: 1.5rem;
    }

    .privacy-section,
    .about-section {
        margin-bottom: 2rem;
    }

    .privacy-section h2,
    .about-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3,
    .belief-item h3 {
        font-size: 1.15rem;
    }

    .privacy-section p,
    .privacy-section li,
    .about-section p,
    .about-list li,
    .belief-item p {
        font-size: 1rem;
    }

    .about-cta {
        padding: 1.5rem;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .btn {
        width: 100%;
    }

    .about-team-row .about-team-card {
        flex: 0 1 100%;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-section-alt {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding: 1.25rem 0.75rem;
    }

    .about-purpose {
        padding-left: 0.75rem;
    }

    .about-team-photo-wrap {
        aspect-ratio: 1.1;
    }

    .about-team-initials {
        font-size: 2rem;
    }

    .about-act {
        padding: 2.5rem 0;
    }

    .about-act-hero {
        padding: 6rem 0 4rem;
    }

    .about-hero-line {
        font-size: 1.85rem;
    }

    .about-hero-support {
        font-size: 1rem;
    }

    .about-pullquote {
        font-size: 1.35rem;
    }

    .about-timeline {
        padding-left: 1.25rem;
        margin-left: 0.25rem;
    }

    .about-timeline-dot {
        left: -1.25rem;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 2px var(--bg-primary);
    }

    .about-timeline-content h3 {
        font-size: 1.1rem;
    }

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

    .about-callout {
        padding: 1.25rem;
    }

    .about-act-problem,
    .about-act-team,
    .about-act-vision {
        padding: 3rem 0;
    }

    .about-cta-question {
        font-size: 1.6rem;
    }

    .about-cta-support {
        font-size: 1rem;
    }

    .about-act-cta {
        padding: 3.5rem 0;
    }

    .about-act-cta .about-cta-buttons {
        flex-direction: column;
    }

    .about-act-cta .about-cta-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 250px;
    }

    /* Pricing Page Responsive */
    .pricing-hero {
        padding: 4rem 0 2rem;
    }
    
    .pricing-section {
        padding: 2rem 0;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-number {
        font-size: 2.25rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .pricing-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-info-block {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.01em;
}

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

.cookie-consent-text a:hover {
    color: var(--accent-hover);
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.cookie-btn-primary {
    background: var(--gradient-1);
    color: white;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.95;
}

.cookie-btn-secondary {
    background: var(--bg-accent);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.cookie-btn-secondary:hover {
    background: var(--bg-primary);
    border-color: var(--accent-primary);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.cookie-modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.cookie-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: var(--bg-accent);
    color: var(--text-primary);
}

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

.cookie-modal-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.cookie-modal-description a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-accent);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-category-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.cookie-category-header p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.01em;
}

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

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

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: 0.3s;
    border-radius: 28px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gradient-1);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

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

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cookie-btn {
        width: 100%;
    }

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

    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .ai-network-animation {
        max-width: 250px;
        height: 250px;
    }

    .node-core {
        width: 40px;
        height: 40px;
    }

    .node-pulse {
        width: 40px;
        height: 40px;
    }

    .node-center .node-core {
        width: 50px;
        height: 50px;
    }

    .node-center .node-pulse {
        width: 50px;
        height: 50px;
    }

    .node-label {
        font-size: 0.6rem;
        margin-top: 0.5rem;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
    }

    .blog-articles-list {
        gap: 1.25rem;
    }

    .article-thumbnail {
        height: 180px;
    }

    .article-content {
        padding: 1rem;
    }

    .article-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .article-date {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .article-excerpt {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        -webkit-line-clamp: 2;
    }

    .article-read-more {
        font-size: 0.95rem;
    }
}