/* ===== Modern Homepage Styles with Animations ===== */

/* Reset & Base */
html, body {
    overflow-x: hidden;
    background: #000000;
    scroll-behavior: smooth;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ===== Animated Background Elements ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 118, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

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

/* Gradient Orbs for depth */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 118, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: orb-float-1 20s infinite ease-in-out;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.1) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation: orb-float-2 25s infinite ease-in-out;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    animation: orb-float-3 18s infinite ease-in-out;
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

@keyframes orb-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(0.95); }
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-top: 160px; /* Account for fixed header + extra offset */
    z-index: 1;
    box-sizing: border-box;
}

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

.hero-title-wrapper {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 800;
    line-height: 0.9;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #0076FF 50%, #00D4FF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite, title-entrance 1s ease-out;
}

.title-line {
    display: block;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes title-entrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 118, 255, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

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

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 2rem 0;
    font-weight: 400;
}

.text-gradient {
    background: linear-gradient(135deg, #0076FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CTA Buttons ===== */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.cta-button.primary {
    background: linear-gradient(135deg, #0076FF 0%, #0056CC 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 118, 255, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 118, 255, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #0076FF;
    border: 2px solid rgba(0, 118, 255, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(0, 118, 255, 0.1);
    border-color: #0076FF;
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover .button-glow {
    width: 300px;
    height: 300px;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #0076FF;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ===== Section Styling ===== */
section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 118, 255, 0.1);
    border: 1px solid rgba(0, 118, 255, 0.3);
    border-radius: 50px;
    color: #0076FF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0;
    color: white;
}

/* ===== Reveal on Scroll ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Product Showcase - Split Layout ===== */
.product-showcase {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 118, 255, 0.03) 50%, transparent 100%);
    padding: 6rem 2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.split-left {
    display: flex;
    justify-content: center;
}

.split-right {
    text-align: left;
    padding-right: 2rem;
}

.section-title-left {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 1rem 0 1.5rem 0;
    color: white;
    text-align: left;
}

.product-description-left {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.product-description-left p {
    margin: 0 0 1rem 0;
}

/* Reveal from left/right animations */
.reveal-on-scroll.from-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-on-scroll.from-right {
    opacity: 0;
    transform: translateX(60px);
}

.reveal-on-scroll.from-left.revealed,
.reveal-on-scroll.from-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.product-3d-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.product-card {
    position: relative;
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 118, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
    pointer-events: none;
    transition: left 0.5s ease;
}

.product-card:hover .card-shine {
    left: 100%;
}

.product-video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.card-border-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0076FF, #00D4FF, #7B61FF, #0076FF);
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: border-glow 8s ease infinite;
}

.product-card:hover .card-border-glow {
    opacity: 1;
}

@keyframes border-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.product-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.product-description p {
    margin: 1rem 0;
}

.highlight-word {
    position: relative;
    color: var(--color, #0076FF);
    font-weight: 700;
    transition: color 0.3s ease;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.highlight-word:hover::after {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* ===== Trust & Social Proof Section ===== */
.trust-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 118, 255, 0.05) 0%, rgba(123, 97, 255, 0.03) 50%, transparent 100%);
    z-index: 0;
}

/* Stats Bar */
.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.stat-link:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0076FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Trust Content - Split Layout */
.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-text {
    text-align: left;
}

.trust-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0 2rem 0;
}

.trust-description strong {
    color: #0076FF;
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 118, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* TikTok Embed */
.trust-tiktok {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tiktok-embed-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    max-width: 325px;
    background: #000;
}

.tiktok-embed-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0076FF, #00D4FF, #7B61FF, #FF6B6B);
    border-radius: 22px;
    z-index: -1;
    animation: border-glow 6s ease infinite;
}

.tiktok-embed {
    margin: 0 !important;
}

.tiktok-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ===== Powered By Section ===== */
.powered-by-section {
    padding: 6rem 2rem;
    position: relative;
}

.powered-by-header {
    text-align: center;
    margin-bottom: 3rem;
}

.powered-by-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.power-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.floating-card {
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

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

.power-card-inner {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.power-card:hover .power-card-inner {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 118, 255, 0.1);
}

.power-card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 118, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.power-card:hover .power-card-glow {
    opacity: 1;
}

.power-card-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.power-card:hover .power-card-logo {
    transform: scale(1.1);
}

.power-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: white;
}

.power-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* ===== Features Section - Alternating Rows ===== */
.features-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.feature-row:last-child {
    margin-bottom: 0;
}

/* Reverse layout for alternating rows */
.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-media {
    position: relative;
}

.feature-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.feature-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

.feature-content {
    padding: 1rem 0;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb, 0, 118, 255), 0.1);
    background: linear-gradient(135deg, rgba(0, 118, 255, 0.15) 0%, rgba(0, 118, 255, 0.05) 100%);
    border-radius: 18px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
}

.feature-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 118, 255, 0.2) 0%, rgba(0, 118, 255, 0.1) 100%);
    background: linear-gradient(135deg, rgba(var(--tag-color-rgb, 0, 118, 255), 0.2) 0%, rgba(var(--tag-color-rgb, 0, 118, 255), 0.1) 100%);
    border: 1px solid var(--tag-color, #0076FF);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tag-color, #0076FF);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Final CTA Section ===== */
.final-cta-section {
    position: relative;
    padding: 10rem 2rem;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 118, 255, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    animation: cta-pulse 8s ease-in-out infinite;
}

.cta-gradient-2 {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.1) 0%, transparent 60%);
    filter: blur(50px);
    animation: cta-pulse 10s ease-in-out infinite reverse;
}

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

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2.5rem 0;
}

/* ===== Magnetic Button Effect (JS Enhanced) ===== */
.magnetic-button {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-right {
        text-align: center;
        padding-right: 0;
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0;
    }
    
    .trust-text {
        text-align: center;
        padding-right: 0;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }
    
    .hero-section {
        min-height: 85vh;
        padding: 1rem;
        padding-top: 230px; /* 5rem + 150px extra for mobile */
        justify-content: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
    
    .powered-by-strip {
        flex-direction: column;
        align-items: center;
    }
    
    .power-card {
        min-width: 100%;
        max-width: 350px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .gradient-orb-1,
    .gradient-orb-2,
    .gradient-orb-3 {
        opacity: 0.5;
    }
    
    .feature-row {
        margin-bottom: 3rem;
        padding: 1.5rem;
        border-radius: 24px;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-desc {
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(4rem, 22vw, 6rem);
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-content {
        width: auto;
        max-width: calc(100% - 2rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    
    .hero-title-wrapper {
        width: auto;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-align: center;
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        width: auto;
        align-items: center;
        padding: 0;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title-left {
        font-size: 1.75rem;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .power-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .feature-video-wrapper {
        border-radius: 16px;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
    
    .floating-card {
        animation: none;
    }
}

/* ===== Legacy Support (keeping old classes for compatibility) ===== */
.starting_image { display: none; }
.starting_main_catchphrase { display: none; }
.main_information_section { display: none; }
.our_product_header { display: none; }
.our_product_description { display: none; }
.powered_by_section { display: none; }
.powered_by_header { display: none; }
.features_template { display: none; }
.calc_bird_render_img_container { display: none; }
.buy_now_button { display: none; }
.really_big_header { display: none; }