:root {
    --primary-blue: #0066CC;
    --pro-blue: #00A0E3;
    --dark-navy: #001F3F;
    --light-gray: #5A5A5A;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 31, 63, 0.08);
    border-bottom: 1px solid rgba(0, 160, 227, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    opacity: 1;
    visibility: visible;
}

/* Initial navbar (before scroll) */
.navbar-initial {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 31, 63, 0.08);
    border-bottom: 1px solid rgba(0, 160, 227, 0.1);
    transition: all 0.3s ease;
}

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

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-navy);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pro-blue);
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: var(--pro-blue);
}

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

.cta-nav {
    background: var(--pro-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.cta-nav:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Add glow filter for nodes */
.hero-background::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}



@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Gradient base */
.gradient-base {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(250, 252, 255, 0.9) 50%,
        rgba(230, 244, 252, 0.95) 100%);
    z-index: 1;
}

/* Flowing Data Container */
.flowing-data-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 1;
    top: 0;
}

.flowing-lines {
    width: 100%;
    height: 100%;
}

/* Flow lines */
.flow-line {
    fill: none;
    stroke-width: 6;
    animation: flowMotion 20s ease-in-out infinite;
}

.flow-1 {
    stroke: url(#flowGradient1);
    animation-delay: 0s;
}

.flow-2 {
    stroke: url(#flowGradient2);
    animation-delay: -5s;
}

.flow-3 {
    stroke: url(#flowGradient1);
    animation-delay: -10s;
}

.flow-4 {
    stroke: url(#flowGradient2);
    animation-delay: -15s;
}

@keyframes flowMotion {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100px) translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateX(0) translateY(-3px);
    }
    50% {
        opacity: 1;
        transform: translateX(50px) translateY(0);
    }
    80% {
        opacity: 1;
        transform: translateX(100px) translateY(3px);
    }
    100% {
        opacity: 0;
        transform: translateX(200px) translateY(0);
    }
}

/* Traveling nodes */
.traveling-node {
    fill: var(--pro-blue);
    opacity: 1;
}

/* Geometric particles */
.geometric-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}


.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Logo halo */
.logo-halo {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 250px;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.04) 0%, 
        rgba(250, 253, 255, 0.03) 30%,
        rgba(230, 244, 252, 0.02) 50%,
        transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.hero-logo {
    margin-bottom: 2.5rem;
    margin-top: -20px;
    animation: fadeIn 0.8s ease forwards;
    position: relative;
}

.hero-logo-img {
    max-width: 340px;
    height: auto;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 31, 63, 0.08);
}

.hero-title .highlight {
    color: var(--pro-blue);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0.625rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-credibility {
    font-size: 0.95rem;
    color: var(--pro-blue);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 31, 63, 0.1);
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(180deg, #00B0F0 0%, var(--pro-blue) 50%, #0090D0 100%);
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 160, 227, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 160, 227, 0.35),
                0 0 60px rgba(0, 160, 227, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta:hover::before {
    opacity: 1;
}

/* Navigation Anchors */
.anchor-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 160, 227, 0.1);
    box-shadow: 0 2px 10px rgba(0, 31, 63, 0.05);
}

/* Ensure sections have scroll padding for offset */
section[id] {
    scroll-padding-top: 100px;
}

.anchor-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.anchor-link {
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.anchor-link:hover {
    background: rgba(0, 160, 227, 0.1);
    color: var(--pro-blue);
}

.anchor-link.active {
    background: var(--pro-blue);
    color: white;
}

.anchor-separator {
    color: var(--slate-300);
    font-size: 0.75rem;
}

/* Pillars Section */
.pillars {
    padding: 3rem 0 5rem 0;
    background: linear-gradient(180deg, #FAFCFE 0%, #F5F9FC 100%);
    position: relative;
}

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

.pillar {
    margin-bottom: 4rem;
    padding: 3rem 2.5rem;
    background: linear-gradient(180deg, #FAFCFE 0%, #F0F7FC 100%);
    border: 1px solid rgba(0, 160, 227, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 31, 63, 0.08),
                0 2px 8px rgba(0, 160, 227, 0.1);
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--pro-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar:nth-child(1) {
    background: linear-gradient(180deg, #FAFCFE 0%, rgba(0, 102, 204, 0.05) 100%);
}

.pillar:nth-child(2) {
    background: linear-gradient(180deg, #FAFCFE 0%, rgba(0, 160, 227, 0.05) 100%);
}

.pillar:nth-child(3) {
    background: linear-gradient(180deg, #FAFCFE 0%, rgba(0, 31, 63, 0.05) 100%);
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.12),
                0 8px 20px rgba(0, 160, 227, 0.15);
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 120px;
    height: 120px;
    margin: -5px auto 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 160, 227, 0.1) 0%, transparent 70%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-icon svg {
    width: 90px;
    height: 90px;
    stroke: url(#iconGradient);
    fill: none;
    stroke-width: 1.75;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon::before {
    transform: scale(1.15);
    background: radial-gradient(circle, rgba(0, 160, 227, 0.15) 0%, transparent 70%);
}

.pillar:hover .pillar-icon svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(0, 160, 227, 0.4));
}

/* Stay Current Animation - Marketing Check Icon */
.update-icon {
    width: 100%;
    height: 100%;
}

.update-icon .rotating-arrows {
    animation: smoothRotate 8s linear infinite;
    transform-origin: 179.8px 164.35px; /* Center of the icon */
    filter: drop-shadow(0 2px 6px rgba(8, 92, 168, 0.2));
}

.update-icon .success-check {
    filter: drop-shadow(0 2px 8px rgba(142, 193, 88, 0.4));
    animation: checkPulse 2s ease-in-out infinite;
}

/* Smooth rotation animation */
@keyframes smoothRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Checkmark pulse animation */
@keyframes checkPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Hover animations */
.pillar:hover .update-icon .rotating-arrows {
    animation-duration: 4s; /* Speed up on hover */
    filter: drop-shadow(0 4px 10px rgba(8, 92, 168, 0.3));
}

/* Legacy styles - commented out as no longer needed */
/*
.update-icon .pulse-bg {
    animation: backgroundPulse 4s ease-in-out infinite;
}
*/

@keyframes backgroundPulse {
    0%, 100% {
        r: 40;
        opacity: 0.2;
    }
    50% {
        r: 45;
        opacity: 0.4;
    }
}

.update-icon .progress-circle {
    animation: progressFill 6s ease-in-out infinite;
    transform-origin: 50px 50px;
}

@keyframes progressFill {
    0% {
        stroke-dashoffset: 220;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    80% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 220;
        opacity: 0;
    }
}

.update-icon .update-symbol {
    animation: symbolRotate 6s ease-in-out infinite;
}

@keyframes symbolRotate {
    0%, 20% {
        transform: translate(50px, 50px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    30%, 70% {
        transform: translate(50px, 50px) rotate(360deg) scale(1);
        opacity: 1;
    }
    80%, 100% {
        transform: translate(50px, 50px) rotate(720deg) scale(0.8);
        opacity: 0;
    }
}

.update-icon .download-dots .dot {
    animation: downloadFlow 6s ease-in-out infinite;
}

.update-icon .dot-1 { animation-delay: 2s; }
.update-icon .dot-2 { animation-delay: 2.2s; }
.update-icon .dot-3 { animation-delay: 2.4s; }

@keyframes downloadFlow {
    0%, 40% {
        transform: translateY(-10px);
        opacity: 0;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    60% {
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.update-icon .success-check {
    animation: checkSuccess 6s ease-in-out infinite;
}

@keyframes checkSuccess {
    0%, 15% {
        stroke-dashoffset: 40;
        opacity: 0;
    }
    25%, 100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.update-icon .orbit-particle {
    opacity: 0.6;
}

.update-icon .particle-1 {
    cx: 50;
    cy: 15;
}

.update-icon .particle-2 {
    cx: 50;
    cy: 85;
}

/* Connect Icon - WiFi Signal Animation */
.connect-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(246, 146, 30, 0.2));
}

.connect-icon .connect-dot {
    filter: drop-shadow(0 0 6px rgba(246, 146, 30, 0.4));
    animation: dotPulse 2s ease-in-out infinite;
}

.connect-icon .connect-arc-3 {
    animation: signalPulse 3s ease-in-out infinite;
}

.connect-icon .connect-arc-1 {
    animation: signalPulse 3s ease-in-out infinite 0.5s;
}

.connect-icon .connect-arc-2 {
    animation: signalPulse 3s ease-in-out infinite 1s;
}

@keyframes signalPulse {
    0%, 100% {
        opacity: 0.3;
        filter: drop-shadow(0 0 4px rgba(235, 154, 64, 0.2));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(235, 154, 64, 0.6));
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 4px rgba(246, 146, 30, 0.3));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(246, 146, 30, 0.7)) 
                drop-shadow(0 0 20px rgba(246, 146, 30, 0.3));
    }
}

/* Hover effects for the connect icon */
.pillar:hover .connect-icon {
    filter: drop-shadow(0 4px 15px rgba(246, 146, 30, 0.35));
}

.pillar:hover .connect-icon .connect-dot {
    animation-duration: 1s;
}

.pillar:hover .connect-icon .connect-arc-3 {
    animation-duration: 1.5s;
}

.pillar:hover .connect-icon .connect-arc-1 {
    animation-duration: 1.5s;
}

.pillar:hover .connect-icon .connect-arc-2 {
    animation-duration: 1.5s;
}

/* Intelligent Add-Ons Animation - Marketing Brain Icon with Glowing Dots */
.brain-icon {
    width: 100%;
    height: 100%;
}

.brain-icon .brain-shape {
    filter: drop-shadow(0 2px 10px rgba(142, 193, 88, 0.25));
    transition: all 0.3s ease;
}

.pillar:hover .brain-icon .brain-shape {
    filter: drop-shadow(0 4px 15px rgba(142, 193, 88, 0.35));
}

.brain-icon .connection-dots path {
    transition: all 0.3s ease;
}

.brain-icon .glow-dot {
    animation: dotPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(28, 158, 217, 0.5));
}

.brain-icon .dot-1 { animation-delay: 0s; }
.brain-icon .dot-2 { animation-delay: 0.3s; }
.brain-icon .dot-3 { animation-delay: 0.6s; }
.brain-icon .dot-4 { animation-delay: 0.9s; }
.brain-icon .dot-5 { animation-delay: 1.2s; }
.brain-icon .dot-6 { animation-delay: 1.5s; }

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.5;
        filter: drop-shadow(0 0 4px rgba(28, 158, 217, 0.3));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(28, 158, 217, 0.7)) 
                drop-shadow(0 0 12px rgba(28, 158, 217, 0.3));
    }
}

/* Reduced motion support for connect icon */
@media (prefers-reduced-motion: reduce) {
    .connect-icon .connect-dot,
    .connect-icon .connect-arc-1,
    .connect-icon .connect-arc-2,
    .connect-icon .connect-arc-3 {
        animation: none;
    }
    
    .connect-icon .connect-dot {
        opacity: 1;
    }
    
    .connect-icon .connect-arc-1,
    .connect-icon .connect-arc-2,
    .connect-icon .connect-arc-3 {
        opacity: 0.8;
    }
}

/* Intelligent Brain - Thinking Network Animation */
.brain-icon .brain-outline {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: brainDraw 0.8s ease-out forwards, brainBreathing 6s ease-in-out infinite 0.8s;
}

@keyframes brainDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes brainBreathing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.4;
    }
}

/* Neural nodes random firing */
.brain-icon .neural-node {
    animation: nodeThinking 10s ease-in-out infinite;
}

.brain-icon .node-1 { animation-delay: 0s; animation-duration: 2.2s; }
.brain-icon .node-2 { animation-delay: 0.8s; animation-duration: 2.5s; }
.brain-icon .node-3 { animation-delay: 1.5s; animation-duration: 1.8s; }
.brain-icon .node-4 { animation-delay: 2.3s; animation-duration: 2.4s; }
.brain-icon .node-5 { animation-delay: 0.3s; animation-duration: 2.1s; }
.brain-icon .node-center { animation-delay: 0s; animation-duration: 3s; }
.brain-icon .node-6 { animation-delay: 1.2s; animation-duration: 2.3s; }
.brain-icon .node-7 { animation-delay: 1.8s; animation-duration: 1.9s; }

@keyframes nodeThinking {
    0%, 70%, 100% {
        opacity: 0.6;
        r: 2.5;
    }
    10% {
        opacity: 1;
        r: 3.5;
    }
    30% {
        opacity: 0.8;
        r: 3;
    }
}

/* Neural paths activation */
.brain-icon .neural-path {
    stroke-dasharray: 30;
    stroke-dashoffset: 0;
}

.brain-icon .path-1 { animation: pathActivate 2.2s ease-in-out infinite; }
.brain-icon .path-2 { animation: pathActivate 2.5s ease-in-out infinite 0.8s; }
.brain-icon .path-3 { animation: pathActivate 1.8s ease-in-out infinite 1.5s; }
.brain-icon .path-4 { animation: pathActivate 2.4s ease-in-out infinite 2.3s; }
.brain-icon .path-5 { animation: pathActivate 2.1s ease-in-out infinite 0.3s; }
.brain-icon .path-6 { animation: pathActivate 2.3s ease-in-out infinite 1.2s; }
.brain-icon .path-7 { animation: pathActivate 1.9s ease-in-out infinite 1.8s; }
.brain-icon .path-8 { animation: pathActivate 2.0s ease-in-out infinite 0.5s; }

@keyframes pathActivate {
    0%, 60%, 100% {
        opacity: 0.2;
        stroke: url(#neuralGradient);
    }
    10% {
        opacity: 0.9;
        stroke: url(#pathGradient);
        filter: brightness(1.5);
    }
    30% {
        opacity: 0.7;
        stroke: url(#neuralGradient);
    }
}

/* Brainwave arcs */
.brain-icon .brainwave {
    transform-origin: 50px 50px;
}

.brain-icon .wave-1 {
    animation: brainwaveSweep 10s ease-out infinite;
}

.brain-icon .wave-2 {
    animation: brainwaveSweep 10s ease-out infinite 0.3s;
}

@keyframes brainwaveSweep {
    0%, 90%, 100% {
        opacity: 0;
        transform: translateX(-20px);
    }
    92% {
        opacity: 0.3;
        transform: translateX(0);
    }
    98% {
        opacity: 0;
        transform: translateX(20px);
    }
}

/* Hover burst effect */
.pillar:hover .brain-icon .neural-node {
    animation: nodeBurst 2s ease-out;
}

@keyframes nodeBurst {
    0% {
        opacity: 0.6;
        r: 2.5;
    }
    20% {
        opacity: 1;
        r: 4;
    }
    100% {
        opacity: 0.6;
        r: 2.5;
    }
}

.pillar:hover .brain-icon .brain-outline {
    filter: brightness(1.2);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .brain-icon .neural-node,
    .brain-icon .neural-path,
    .brain-icon .pulse {
        animation: none;
    }
    
    .brain-icon .brain-outline {
        animation: brainBreathingReduced 8s ease-in-out infinite;
    }
}

@keyframes rayPulse {
    0%, 100% { 
        opacity: 0;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover effect - thinking faster */
.pillar:hover .brain-icon .core-diamond {
    animation-duration: 1s;
}

.pillar:hover .brain-icon .light-rays {
    animation-duration: 1.5s;
}

.pillar h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 700;
}

.pillar p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 1.125rem;
    line-height: 1.8;
}

.marketing-tagline {
    font-size: 1.125rem;
    font-weight: 300;
    font-style: italic;
    color: #374151;
    margin: 0 0 0.25rem 0;
    opacity: 0.9;
}

.outcome-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pro-blue);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.powered-badge {
    display: inline-block;
    background: rgba(0, 160, 227, 0.1);
    color: var(--pro-blue);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expand-btn {
    background: linear-gradient(180deg, var(--pro-blue) 0%, #0090D0 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 160, 227, 0.25);
}

.expand-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 160, 227, 0.35);
}

.expand-btn:hover::before {
    opacity: 1;
}

.pillar-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 2rem;
}

.pillar-details.active {
    max-height: 2500px;
}

.details-content {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 160, 227, 0.2);
}

.update-timeline,
.connectivity-flow,
.addon-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.update-timeline {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.connectivity-flow {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 3rem;
}

.addon-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.timeline-item,
.flow-item,
.addon-item {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.06);
    border: 1px solid rgba(0, 160, 227, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover,
.flow-item:hover,
.addon-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 31, 63, 0.12);
    border-color: rgba(0, 160, 227, 0.2);
}

.feature-logo {
    width: auto;
    height: 68px;
    margin: 20px auto 24px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 160, 227, 0.1));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.flow-item:hover .feature-logo,
.addon-item:hover .feature-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 160, 227, 0.2));
}

.timeline-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.timeline-image {
    width: auto;
    height: 60px;
    margin: 20px auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 160, 227, 0.1));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 160, 227, 0.2));
}

.testimonial {
    background: white;
    padding: 1.75rem 1.5rem;
    border-left: 5px solid #0074C8;
    border-radius: 8px;
    font-style: italic;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    color: var(--pro-blue);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: normal;
    font-weight: 500;
}

/* Setup note styling */
.setup-note {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-left: 3px solid var(--pro-blue);
    border-radius: 4px;
    color: var(--dark-navy);
    line-height: 1.6;
}

/* Why It Matters sections */
.why-it-matters {
    margin: 2rem 0;
    padding: 1.75rem;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 160, 227, 0.08);
}

.why-it-matters-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    gap: 1rem;
}

.lightbulb-icon {
    width: 20px;
    height: 20px;
    color: var(--pro-blue);
    flex-shrink: 0;
    stroke-width: 1.5;
    margin-top: 1px;
}

.why-it-matters h3 {
    color: #111827;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.why-it-matters-content p {
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.why-it-matters-content p:last-child {
    margin-bottom: 0;
}

/* Customer quote inside Why It Matters */
.why-it-matters .customer-quote {
    background: white;
    padding: 1.75rem 1.5rem;
    border-left: 5px solid #0074C8;
    border-radius: 8px;
    margin: 1.75rem 0 2.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.why-it-matters .customer-quote {
    color: var(--pro-blue) !important;
}

.why-it-matters .customer-quote p {
    color: var(--pro-blue) !important;
    margin: 0 0 0.75rem 0;
    padding-left: 0;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}

.why-it-matters .customer-quote cite {
    display: block;
    margin-top: 0.75rem;
    margin-left: 0;
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: normal;
    font-weight: 500;
}

/* Unlock Intelligent Add-Ons section */
.unlock-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(152, 191, 102, 0.08) 0%, rgba(74, 157, 216, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(152, 191, 102, 0.15);
}

.unlock-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.unlock-key-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.unlock-section h3 {
    color: #1f2937;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.unlock-description {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Customer quotes container */
.customer-quotes {
    margin: 2rem 0;
}

.customer-quotes .testimonial {
    margin-bottom: 1.5rem;
}

.customer-quotes .testimonial:last-child {
    margin-bottom: 0;
}

/* Video container styling */
.why-it-matters .video-container {
    margin-top: 1.5rem;
}

.why-it-matters .video-container h4 {
    color: #374151;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.video-item h5 {
    color: var(--dark-navy);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.addon-item.future {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d0 100%);
    border: 2px dashed #ffa500;
    position: relative;
    overflow: hidden;
}

/* Cooking Animation */
.cooking-container {
    margin-bottom: 1rem;
}

.frying-pan {
    width: 80px;
    height: 60px;
    margin: 0 auto 1rem;
    position: relative;
    animation: panShake 3s ease-in-out infinite;
}

@keyframes panShake {
    0%, 100% { transform: rotate(-2deg); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

.pan-handle {
    position: absolute;
    width: 30px;
    height: 6px;
    background: #666;
    left: -25px;
    top: 27px;
    border-radius: 3px;
}

.pan-body {
    width: 60px;
    height: 60px;
    background: #444;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.3);
}

.sizzle {
    position: absolute;
    color: #ff9500;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    animation: sizzleUp 2s ease-in-out infinite;
}

.sizzle-1 {
    left: 15px;
    animation-delay: 0s;
}

.sizzle-2 {
    left: 25px;
    animation-delay: 0.6s;
}

.sizzle-3 {
    left: 35px;
    animation-delay: 1.2s;
}

@keyframes sizzleUp {
    0% {
        bottom: 20px;
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        bottom: 35px;
        opacity: 1;
        transform: scale(1);
    }
    100% {
        bottom: 50px;
        opacity: 0;
        transform: scale(0.6);
    }
}

.food-item {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    animation: cook 3s ease-in-out infinite;
}

@keyframes cook {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

.powered-by {
    text-align: center;
    color: var(--pro-blue);
    font-weight: 600;
    margin-top: 2rem;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.cta-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.pricing-note {
    font-size: 1rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, var(--pro-blue) 0%, #0090D0 100%);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 160, 227, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 160, 227, 0.35);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #002850 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

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

.footer-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.footer-wave-1,
.footer-wave-2,
.footer-wave-3 {
    animation: footerFlow 20s ease-in-out infinite;
}

.footer-wave-2 {
    animation-delay: -5s;
}

.footer-wave-3 {
    animation-delay: -10s;
}

@keyframes footerFlow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px);
    }
}

.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 1;
}

.footer-branding {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.kannegiesser-logo {
    height: 40px;
}

.evue-pro-logo {
    height: 60px;
}

.smartlaundry-logo {
    height: 45px;
}

.footer-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pro-blue);
    transition: width 0.3s ease;
}

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

.footer-nav a:hover {
    color: var(--pro-blue);
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.875rem;
}

.cta-link {
    background: var(--pro-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.cta-link:hover {
    background: var(--primary-blue);
}

/* FAQ Teaser */
.faq-teaser {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.teaser-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.75rem;
}

.teaser-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.teaser-cta {
    display: inline-block;
    color: var(--pro-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.teaser-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pro-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.teaser-cta:hover::after {
    transform: scaleX(1);
}

.teaser-cta:hover {
    color: var(--primary-blue);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 31, 63, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--pro-blue);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

/* Sequential fade-in for card grids */
.update-timeline,
.connectivity-flow,
.addon-grid {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.timeline-item,
.flow-item,
.addon-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1),
.flow-item:nth-child(1),
.addon-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2),
.flow-item:nth-child(2),
.addon-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3),
.flow-item:nth-child(3),
.addon-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4),
.flow-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

@keyframes dataFlow {
    to {
        transform: translateX(200%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

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

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

@keyframes stream {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* Hide mobile menu toggle by default */
.mobile-menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation mobile menu */
    .nav-container {
        padding: 0.75rem 1rem;
        position: relative;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 31, 63, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem;
        border-bottom: 1px solid rgba(0, 160, 227, 0.1);
    }
    
    .cta-nav {
        margin-top: 0.5rem;
        text-align: center;
    }
    
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 1001;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--dark-navy);
        transition: all 0.3s ease;
    }
    
    /* Hamburger menu active state */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hero adjustments */
    .hero {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Pillar sections */
    .pillar {
        padding: 2rem 1rem;
        margin: 1.5rem;
    }
    
    /* Fix pillar details max-height for mobile */
    .pillar-details.active {
        max-height: none;
        overflow: visible;
    }
    
    /* Grid adjustments for cards */
    .update-timeline,
    .connectivity-flow,
    .addon-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item,
    .flow-item,
    .addon-item {
        padding: 1.25rem;
    }
    
    /* Icon sizes for mobile */
    .pillar-icon {
        width: 80px;
        height: 80px;
    }
    
    .pillar-icon svg {
        width: 60px;
        height: 60px;
    }
    
    /* FAQ section */
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    /* Footer adjustments */
    .footer-logos {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-nav a {
        padding: 0.5rem;
    }
    
    /* CTA section */
    .cta-heading {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
    
    /* Fix sticky nav on mobile */
    .navbar {
        top: 0;
    }
    
    .navbar.scrolled {
        box-shadow: 0 2px 10px rgba(0, 31, 63, 0.1);
    }
    
    /* Ensure proper spacing */
    section {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Why It Matters mobile adjustments */
    .why-it-matters {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .why-it-matters-header {
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .lightbulb-icon {
        width: 18px;
        height: 18px;
    }
    
    .why-it-matters h3 {
        font-size: 1.125rem;
        font-weight: 700;
    }
    
    .why-it-matters-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    /* Testimonial mobile adjustments */
    .testimonial {
        padding: 1.25rem 1rem;
        margin-bottom: 2rem;
    }
    
    .why-it-matters .customer-quote {
        padding: 1.25rem 1rem;
        margin: 1.25rem 0 2rem 0;
    }
    
    .why-it-matters .customer-quote p {
        padding-left: 0 !important;
        font-size: 0.95rem !important;
    }
    
    .why-it-matters .customer-quote cite {
        margin-left: 0 !important;
        font-size: 0.8rem !important;
    }
    
    /* Unlock section mobile adjustments */
    .unlock-section {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .unlock-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .unlock-key-icon {
        width: 24px;
        height: 24px;
    }
    
    .unlock-section h3 {
        font-size: 1.125rem;
    }
    
    .unlock-description {
        font-size: 0.9rem;
    }
    
    /* Customer quotes mobile adjustments */
    .customer-quotes {
        margin: 1.5rem 0;
    }
    
    .customer-quotes .testimonial {
        margin-bottom: 1.25rem;
    }
}

/* Mobile menu toggle - hide by default on desktop */
.mobile-menu-toggle {
    display: none;
}

/* Add heading styles for timeline, flow, and addon items */
.timeline-item h3,
.flow-item h3,
.addon-item h3 {
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-item p,
.flow-item p,
.addon-item p {
    color: #6B7280;
    line-height: 1.75;
    margin: 0;
}

/* Add icon wrapper for feature cards */
.feature-logo-wrapper,
.timeline-image-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

/* Normalize visual mass for specific logos */
.feature-logo[alt="eVue Anywhere"] {
    height: 62px; /* Slightly smaller for better balance */
}

.timeline-image[alt="Security & Compatibility"],
.timeline-image[alt="Cloud Updates"],
.timeline-image[alt="Plant Updates"] {
    height: 66px; /* Slightly larger for simpler icons */
}

.feature-logo-wrapper::before,
.timeline-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 160, 227, 0.1) 0%, transparent 70%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.flow-item:hover .feature-logo-wrapper::before,
.addon-item:hover .feature-logo-wrapper::before,
.timeline-item:hover .timeline-image-wrapper::before {
    transform: translate(-50%, -50%) scale(1.15);
    background: radial-gradient(circle, rgba(0, 160, 227, 0.15) 0%, transparent 70%);
}
