:root {
    /* Minimalist Light Theme Palette */
    --bg-color: #faf9f7;
    --bg-secondary: #f4f3f1;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --accent-primary: #2563eb;
    --accent-hover: #1d4ed8;
    --border-color: #e5e7eb;
    --nav-bg: #fefefe;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}




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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
    /* Offset for fixed navbar */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-accent {
    color: var(--accent-primary);
}

.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
    border-right: 3px solid var(--accent-primary);
    padding-right: 5px;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--accent-primary);
    }
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 99px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: #3D3D4F;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background-color: var(--bg-secondary);
    border-color: #d1d5db;
}

.btn-cta {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

/* Navbar - Floating Pill Style */
nav {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    border-radius: 99px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.logo {
    font-size: 1.35rem;
    font-weight: 600;
    color: #393943;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
}

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

.nav-pill {
    padding: 0;
    border-radius: 99px;
    display: flex;
    gap: 0.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pill a {
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.nav-pill a.nav-active {
    background: var(--text-primary);
    color: white;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    /* Ensure it goes behind nav if nav is transparent, but nav is fixed top z-1000 */
    margin-top: -80px;
    /* Pull up behind the nav bar space if needed, or rely on absolute positioning */
    padding-top: 140px;
    /* Compensate for nav height */
    padding-bottom: 40px;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Overlay removed - Vanta globe provides its own background */

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-primary);
    /* Ensure legibility against potential video bg */
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 480px;
    font-weight: 500;
}

/* Removed hero-visual styles */

/* Stats Row - Horizontal Layout */
.stats-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: fit-content;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item:last-child {
    padding-right: 0;
    border-right: none;
}

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

.stat-badge {
    background: #e8f4e8;
    color: #22863a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.stat-item:nth-child(2) .stat-badge {
    background: #e8f0fe;
    color: #1a73e8;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 99px;
}

/* Features Band */
.features-section {
    padding: 50px 0;
    background: white;
}

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

.feature-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Slide animation keyframes */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Horizontal Scrollable Feature Grid - Full Bleed */
.feature-grid {
    overflow: hidden !important;
    padding: 1rem 0 2rem;
    /* Break out of container to extend edge-to-edge */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Feature Slider - the animated wrapper */
.feature-slider {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content;
    animation: slideLeft 40s linear infinite;
    gap: 0;
    /* Remove gap between tracks for seamless loop */
}

/* Pause animation on hover */
.feature-slider:hover {
    animation-play-state: paused;
}

/* Feature Track - holds the cards */
.feature-track,
.feature-track-clone {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 1.5rem;
    flex-shrink: 0;
    padding-left: 1.5rem;
    padding-right: 0;
    /* Remove right padding to ensure seamless transition */
}

/* Hide scrollbar for WebKit browsers */
.feature-grid::-webkit-scrollbar {
    display: none;
}

.flat-card {
    flex: 0 0 320px;
    min-width: 320px;
    flex-shrink: 0;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    /* transition: transform 0.1s ease, box-shadow 0.3s ease; */
    /* Removed transform transition for 3D tilt response */
    transition: box-shadow 0.3s ease;
    scroll-snap-align: start;
    will-change: transform;
}

/* Remove hover scale from CSS as JS handles it */
.flat-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Subtle Gradient Card Variations - Pastel with dark text */
.flat-card:nth-child(1) {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.flat-card:nth-child(1) .icon-circle {
    background: rgba(99, 102, 241, 0.15);
    color: #4f46e5;
}

.flat-card:nth-child(2) {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.flat-card:nth-child(2) .icon-circle {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.flat-card:nth-child(3) {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.flat-card:nth-child(3) .icon-circle {
    background: rgba(236, 72, 153, 0.15);
    color: #db2777;
}

.flat-card:nth-child(4) {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.flat-card:nth-child(4) .icon-circle {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.flat-card:nth-child(5) {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.flat-card:nth-child(5) .icon-circle {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.flat-card:nth-child(6) {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.flat-card:nth-child(6) .icon-circle {
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
}

.flat-card:nth-child(7) {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
}

.flat-card:nth-child(7) .icon-circle {
    background: rgba(13, 148, 136, 0.15);
    color: #0f766e;
}

.flat-card:nth-child(8) {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.flat-card:nth-child(8) .icon-circle {
    background: rgba(219, 39, 119, 0.15);
    color: #be185d;
}

.flat-card:nth-child(9) {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.flat-card:nth-child(9) .icon-circle {
    background: rgba(75, 85, 99, 0.15);
    color: #374151;
}

/* Card text styling - dark for readability */
.flat-card h3 {
    color: var(--text-primary);
}

.flat-card p {
    color: var(--text-secondary);
}

/* Optimized shimmer effect on hover */
.flat-card {
    position: relative;
    overflow: hidden;
}

.flat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}

.flat-card:hover::after {
    animation: shimmer 0.6s ease forwards;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.flat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.flat-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA */
.simple-cta {
    padding: 100px 0;
    text-align: center;
}

.simple-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: #3d3d4e;
    padding: 3rem 0 1.5rem;
    color: #fff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
    margin-top: 0.5rem;
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

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

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

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

    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        padding-top: 120px;
        text-align: center;
        min-height: auto;
    }

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

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero h1 br {
        display: none;
    }

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

    .hero-visual {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-pill {
        display: none;
    }

    .nav-buttons .btn-outline {
        display: none;
    }
}

/* Icon Circles */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.icon-circle.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-circle.icon-purple {
    background: #ede9fe;
    color: #7c3aed;
}

.icon-circle.icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.icon-circle.icon-orange {
    background: #fed7aa;
    color: #ea580c;
}

.icon-circle.icon-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.icon-circle.icon-pink {
    background: #fce7f3;
    color: #db2777;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Analytics Section */
.analytics-section {
    padding: 50px 0;
    background: white;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.analytics-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.analytics-text>p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.analytics-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.analytics-feature>i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.analytics-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

/* Analytics Visual - Staggered Layout */
.analytics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Give it some breathing room for floating elements */
    padding: 2rem;
}

.analytics-stagger-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(208, 208, 208, 0.203);
    position: absolute;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.main-card {
    position: relative;
    /* In flow */
    width: 100%;
    z-index: 10;
    padding-bottom: 2rem;
}

.secondary-card {
    width: 280px;
    top: -140px;
    left: -60px;
    z-index: 5;
    padding: 1.5rem;
    opacity: 0.95;
    transform: scale(0.98) rotate(-3deg);
}

.tertiary-card {
    width: 300px;
    bottom: -50px;
    right: -60px;
    z-index: 20;
    /* Above main */
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    animation: float-y 5s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Hover Stagger Effects */
.analytics-stagger-wrapper:hover .secondary-card {
    transform: translateX(-10px) rotate(-5deg) scale(0.95);
    filter: blur(0);
    opacity: 1;
    z-index: 11;
    /* Pop out on hover if desired, or keep behind */
}

.analytics-stagger-wrapper:hover .tertiary-card {
    transform: translateY(-5px);
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.analytics-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.analytics-chart-header span:first-child {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.chart-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 99px;
}

.chart-badge.positive {
    background: #dcfce7;
    color: #16a34a;
}

.chart-placeholder {
    height: 100px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.chart-line {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-line polyline {
    fill: none;
    stroke: var(--accent-primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.5s ease-out;
    filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.2));
}

.chart-line.animate polyline {
    stroke-dashoffset: 0;
}

/* Donut Chart Styles */
.donut-chart-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0.75rem auto 1.25rem;
}

.donut-chart {
    transform: rotate(-90deg);
}

.donut-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1;
}

.donut-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: block;
}

.donut-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.mini-legend {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot.blue {
    background-color: #2563eb;
}

.dot.purple {
    background-color: #7c3aed;
}

/* Alert Card Styles */
.alert-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fee2e2;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.alert-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.alert-title {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.alert-desc {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.alert-time {
    font-size: 0.7rem;
    color: #9ca3af;
    align-self: flex-start;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .analytics-visual {
        margin-top: 2rem;
        /* Ensure space */
        min-height: 400px;
    }

    /* On tablet, keep staggered but adjust positioning */
    .secondary-card {
        left: -40px;
    }

    .tertiary-card {
        right: -20px;
    }
}

@media (max-width: 640px) {
    .analytics-visual {
        min-height: auto;
        padding: 0;
    }

    .analytics-stagger-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .analytics-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        transform: none !important;
        margin: 0 !important;
        max-width: 340px;
    }

    .secondary-card,
    .tertiary-card {
        width: 100%;
        display: none;
        /* Hide complexity on very small screens, or stack them */
    }

    /* Maybe show the secondary card stacked? Let's just hide for simplicity or show if space allows. 
       Actually, let's show the secondary card stacked for better context if possible, 
       but standard behavior for "visuals" is to simplify. 
       Let's display: none for simplicity as per common landing page practices on mobile.
    */
    .secondary-card {
        display: none;
    }

    .tertiary-card {
        display: flex;
        width: 100%;
        margin-top: -1rem;
        z-index: 20;
        animation: none;
    }
}

/* Background Blobs */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
    transition: transform 0.1s linear;
    /* Smooth follow */
}

body::before {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(var(--blob-bg-1-x, 0px), var(--blob-bg-1-y, 0px));
}

body::after {
    bottom: 0;
    right: -100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(var(--blob-bg-2-x, 0px), var(--blob-bg-2-y, 0px));
}

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

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

.stat-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

/* Advanced Section - Bento Grid Style */
.advanced-section {
    padding: 60px 0;
    background: white;
    /* Apple-like light grey background */
}

/* Security Carousel Section */
.security-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.security-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.security-card {
    flex: 0 0 320px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    scroll-snap-align: center;
    border: none;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.security-card-image {
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f7;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.security-card:hover .security-card-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.security-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.security-card-content {
    padding: 1.5rem 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.security-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.security-card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.security-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.security-link:hover {
    gap: 0.5rem;
}

/* Navigation Buttons */
.carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    color: var(--text-primary);
    flex-shrink: 0;
    z-index: 2;
}

.carousel-nav:hover {
    background: var(--bg-secondary);
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Pagination Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
}

.carousel-dots span.active {
    background: var(--text-primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .security-carousel-wrapper {
        position: relative;
    }

    .carousel-nav {
        display: none;
        /* Hide nav arrows on mobile/tablet, swipe is key */
    }

    .security-card {
        flex: 0 0 300px;
    }
}

/* Mobile Section */
.mobile-section {
    padding: 50px 0;
    background: white;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #faf9f7;
    border-radius: 32px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.app-header i {
    font-size: 1.25rem;
}

.scan-preview {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.scan-preview i {
    font-size: 3rem;
    color: var(--accent-primary);
}

.scan-preview span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.app-stat {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.app-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.app-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mobile-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.mobile-text>p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.mobile-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.mobile-features i {
    color: #16a34a;
    font-size: 1.25rem;
}

/* Pricing Section */
.pricing-section {
    padding: 50px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
}

.pricing-card.featured {
    background: white;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 99px;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.price .period {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.pricing-features i {
    color: #16a34a;
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content>p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}


.cta-section .btn-outline {
    border-color: var(--border-color);
    color: var(--text-primary);
}

.cta-section .btn-outline:hover {
    background: var(--bg-secondary);
    border-color: #d1d5db;
}

/* Responsive - New Sections */
@media (max-width: 1024px) {
    .advanced-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .analytics-text {
        text-align: center;
    }

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

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

    .mobile-visual {
        order: 1;
    }

    .mobile-text {
        order: 2;
        text-align: center;
    }

    .mobile-features {
        align-items: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

/* Flexible & Scalable Section - Horizontal Card Style */
.flexible-section {
    padding: 60px 0;
    background: white;
}

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

.flexible-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flexible-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.flexible-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flexible-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.flexible-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .flexible-grid {
        grid-template-columns: 1fr;
    }
}

/* Unloaded Section (Redesign) */
.unloaded-section {
    padding: 60px 0;
    background: white;
}

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

.unloaded-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.unloaded-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Card Base Styles */
.unloaded-card {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.unloaded-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-text-content {
    padding: 3.5rem 2.5rem 2rem;
}

.unloaded-card h3 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.unloaded-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Dark Card Variant */
.card-dark {
    background-color: #000;
    color: white;
}

.card-dark h3 {
    background: linear-gradient(90deg, #DE6C6C, #BC8AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #DE6C6C;
    /* Fallback */
    display: inline-block;
    /* Helps with background-clip on some browsers */
}

.card-dark p {
    color: #a1a1aa;
}

/* Light Card Variant */
.card-light {
    background-color: #effcfc;
    color: var(--text-primary);
}

.card-light h3 {
    color: var(--text-primary);
}

.card-light p {
    color: var(--text-secondary);
}

/* Link Styles */
.link-arrow {
    display: inline-block;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.card-dark .link-arrow {
    background: linear-gradient(90deg, #DE6C6C, #BC8AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #DE6C6C;
    text-decoration: none;
    /* Remove underline to show gradient cleanly */
}

.card-light .link-arrow {
    color: #2563eb;
    text-decoration: none;
}

.link-arrow:hover {
    opacity: 0.8;
}

/* Image Container */
.card-image-container {
    padding: 0 2.5rem 2.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-grow: 1;
}

.card-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-height: 300px;
}

/* Responsive */
@media (max-width: 1024px) {
    .unloaded-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .unloaded-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .unloaded-grid {
        grid-template-columns: 1fr;
    }

    .unloaded-card:last-child {
        grid-column: auto;
    }

    .unloaded-header h2 {
        font-size: 2.5rem;
    }
}

/* Centered Mobile Section Redesign */
.mobile-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.mobile-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mobile-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Switcher */
.feature-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0 3rem;
    width: 100%;
}

.switcher-arrow {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.switcher-arrow:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.feature-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 300px;
    /* Prevent jumping */
    justify-content: center;
    transition: opacity 0.3s ease;
}

.feature-display.fade-out {
    opacity: 0;
}

.feature-icon {
    font-size: 1.25rem;
    color: #22c55e;
    /* Green check */
}

.mobile-visual-centered {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Ensure phone mockup sits nicely */
.phone-mockup-image-container {
    margin: 0 auto;
    max-width: 600px;
    /* Increased size again */
    position: relative;
    /* Mask for aggressive fade out ending at 60% */
    -webkit-mask-image: linear-gradient(to bottom, black 15%, transparent 60%);
    mask-image: linear-gradient(to bottom, black 15%, transparent 60%);

    /* Pull content up since bottom is transparent */
    margin-bottom: -60%;
    pointer-events: none;
    /* Allow clicks to pass through to content below */
}

.phone-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    /* Optional: add a subtle shadow or styling if needed, though mask might clip it */
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #ffffff 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-choose-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-card .icon-circle {
    margin: 0 auto 1.5rem;
}

.why-choose-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-choose-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        padding: 60px 0;
    }
}

/* Supercharge Your Business Section */
.supercharge-section {
    padding: 80px 0;
    background: white;
}

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

.supercharge-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.supercharge-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Platform Toggle Buttons */
.platform-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.platform-btn i {
    font-size: 1.25rem;
}

.platform-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.platform-btn.active {
    color: var(--accent-primary);
}

.platform-btn.active::after {
    width: 100%;
}

.platform-btn:hover {
    color: var(--accent-primary);
}

/* Platform Content */
.platform-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.platform-content.active {
    display: grid;
}

/* Platform Content Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Platform Visual Animation */
.platform-content.active .platform-visual {
    animation: scaleIn 0.5s ease-out forwards;
}

/* Platform Description Animation */
.platform-content.active .platform-description {
    opacity: 0;
    animation: fadeSlideUp 0.4s ease-out 0.15s forwards;
}

/* Feature List Item Staggered Animation */
.platform-content.active .feature-list li {
    opacity: 0;
    animation: fadeSlideIn 0.35s ease-out forwards;
}

.platform-content.active .feature-list li:nth-child(1) {
    animation-delay: 0.2s;
}

.platform-content.active .feature-list li:nth-child(2) {
    animation-delay: 0.28s;
}

.platform-content.active .feature-list li:nth-child(3) {
    animation-delay: 0.36s;
}

.platform-content.active .feature-list li:nth-child(4) {
    animation-delay: 0.44s;
}

.platform-content.active .feature-list li:nth-child(5) {
    animation-delay: 0.52s;
}

.platform-content.active .feature-list li:nth-child(6) {
    animation-delay: 0.6s;
}

/* Re-trigger animation on switch */
.platform-content.animating .platform-visual,
.platform-content.animating .platform-description,
.platform-content.animating .feature-list li {
    animation: none;
    opacity: 0;
}

.platform-content.active:not(.animating) .platform-visual {
    animation: scaleIn 0.5s ease-out forwards;
}

.platform-content.active:not(.animating) .platform-description {
    animation: fadeSlideUp 0.4s ease-out 0.15s forwards;
}

.platform-content.active:not(.animating) .feature-list li {
    animation: fadeSlideIn 0.35s ease-out forwards;
}

/* Platform Visual */
.platform-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    width: 100%;
}

.monitor-mockup-container {
    max-width: 500px;
    width: 100%;
}

.monitor-mockup-img {
    width: 100%;
    height: auto;
}

.phone-mockup-container {
    max-width: 220px;
    width: 100%;
}

.phone-mockup-img-new {
    width: 100%;
    height: auto;
}

/* Platform Features */
.platform-features {
    text-align: left;
}

.platform-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-list li i {
    color: #22c55e;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .platform-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .platform-visual {
        order: 1;
    }

    .platform-features {
        order: 2;
        text-align: center;
    }

    .feature-list {
        align-items: center;
    }

    .monitor-mockup-container {
        max-width: 400px;
    }

    .phone-mockup-container {
        max-width: 220px;
    }
}

@media (max-width: 640px) {
    .supercharge-header h2 {
        font-size: 2.25rem;
    }

    .supercharge-section {
        padding: 60px 0;
    }

    .platform-toggle {
        gap: 0.5rem;
    }

    .platform-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}