/* ============================================
   ACCESSILY - Modern Website Styles
   Brand Colors: #005ADD (dark), #0E9FDA (light), #F7CB0E (yellow)
   ============================================ */

:root {
    --brand-dark: #005ADD;
    --brand-light: #0E9FDA;
    --brand-yellow: #F7CB0E;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
}

/* ============================================
   BASE STYLES
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-width: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overscroll-behavior-x: none;
    margin: 0;
    padding: 0;
}

/* Wrapper to contain all content and prevent horizontal scroll */
main, footer, nav, header, section {
    max-width: 100%;
    overflow-x: clip;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.nav__menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .nav__menu {
        display: flex;
        align-items: center;
    }
}

.nav__link {
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.nav__link:hover {
    background: rgba(0, 90, 221, 0.08);
    color: var(--brand-dark);
}

.nav__dropdown-wrapper {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 200;
}

.nav__dropdown-wrapper:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.nav__dropdown a:hover {
    background: rgba(0, 90, 221, 0.08);
    color: var(--brand-dark);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 90, 221, 0.3);
}

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

.btn--secondary {
    background: white;
    color: var(--brand-dark);
    border: 2px solid var(--brand-dark);
}

.btn--secondary:hover {
    background: var(--brand-dark);
    color: white;
}

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

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
}

.btn--ghost:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 1023px) {
    .nav__desktop-only {
        display: none !important;
    }
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0s 0.3s;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s 0s;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
}

.mobile-menu__content {
    padding: 1rem;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-menu__link:hover {
    background: rgba(0, 90, 221, 0.08);
    color: var(--brand-dark);
}

.mobile-menu__divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.75rem 0;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 4rem 1.5rem 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    overflow: clip;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 2rem 8rem;
    }
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 90, 221, 0.1);
    color: var(--brand-dark);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 4rem;
    }
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.25rem;
    }
}

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

.hero__actions .btn {
    white-space: nowrap;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: left;
}

.hero__stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-dark);
}

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

.hero__image {
    position: relative;
    overflow: visible;
}

.hero__image > img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }
}

.section--gray {
    background: var(--bg-light);
}

.section__container {
    max-width: 1280px;
    margin: 0 auto;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 90, 221, 0.1);
    color: var(--brand-dark);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .section__title {
        font-size: 2.5rem;
    }
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 90, 221, 0.1), rgba(14, 159, 218, 0.1));
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

/* ============================================
   FEATURES GRID
   ============================================ */

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

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */

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

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial__stars {
    color: var(--brand-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial__text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

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

.testimonial__role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    padding: 5rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta {
        padding: 6rem 2rem;
    }
}

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

.cta__title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta__title {
        font-size: 2.5rem;
    }
}

.cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta .btn--primary {
    background: white;
    color: var(--brand-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ============================================
   TRUSTED BY / LOGO CAROUSEL
   ============================================ */

.trusted-by {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    max-width: 100%;
}

.trusted-by__title {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
    padding: 0 1.5rem;
}

.trusted-by__carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.trusted-by__track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: carousel-scroll 25s linear infinite;
}

.trusted-by__track:hover {
    animation-play-state: paused;
}

.trusted-by__track img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.trusted-by__track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .trusted-by__track {
        gap: 5rem;
    }
    .trusted-by__track img {
        height: 36px;
    }
}

@media (min-width: 1024px) {
    .trusted-by__track img {
        height: 40px;
    }
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Static version for inline use */
.trusted-by__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trusted-by__logos img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.trusted-by__logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .trusted-by__logos {
        gap: 2.5rem 4rem;
    }
    .trusted-by__logos img {
        height: 32px;
    }
}

@media (min-width: 1024px) {
    .trusted-by__logos img {
        height: 36px;
    }
}

/* ============================================
   FUTURISTIC IMAGE FRAME
   ============================================ */

.futuristic-frame {
    position: relative;
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(135deg, #005ADD, #0E9FDA, #F7CB0E, #0E9FDA, #005ADD);
    background-size: 300% 300%;
    animation: gradient-shift 6s ease infinite;
    box-shadow:
        0 0 40px rgba(0, 90, 221, 0.3),
        0 0 80px rgba(14, 159, 218, 0.2),
        0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.futuristic-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #005ADD, #0E9FDA, #F7CB0E);
    background-size: 300% 300%;
    animation: gradient-shift 6s ease infinite;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.futuristic-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.glow-orb--1 {
    width: 200px;
    height: 200px;
    background: #005ADD;
    top: -50px;
    left: -50px;
}

.glow-orb--2 {
    width: 150px;
    height: 150px;
    background: #0E9FDA;
    bottom: -30px;
    right: -30px;
    animation-delay: -4s;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 159, 218, 0.8), transparent);
    z-index: 2;
    animation: scan 3s linear infinite;
    border-radius: 12px;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 3;
}

.corner--tl { top: 12px; left: 12px; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.corner--tr { top: 12px; right: 12px; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.corner--bl { bottom: 12px; left: 12px; border-right: none; border-top: none; border-radius: 0 0 0 4px; }
.corner--br { bottom: 12px; right: 12px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }

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

@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

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

/* ============================================
   GLASS FRAME EFFECT
   ============================================ */

.glass-frame {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow:
        0 8px 32px rgba(0, 90, 221, 0.15),
        inset 0 0 0 1px rgba(255,255,255,0.1);
}

.glass-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

.glass-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.floating-illustration {
    position: absolute;
    width: 120px;
    height: auto;
    animation: bounce 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    z-index: 10;
}

.floating-illustration--right {
    bottom: -30px;
    right: -40px;
}

.floating-illustration--left {
    bottom: -30px;
    left: -40px;
    animation-delay: -2s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* ============================================
   TWO-COLUMN LAYOUTS (Responsive)
   ============================================ */

@media (max-width: 768px) {
    .section__container > div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column;
        gap: 2rem !important;
    }
    .section__container > div[style*="grid-template-columns: repeat(4"] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Hide floating illustrations on mobile to prevent overflow */
    .floating-illustration {
        display: none;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 1.5rem 2rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 5rem 2rem 2rem;
    }
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer__brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer__brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    transition: all 0.2s;
}

.footer__social a:hover {
    background: var(--brand-dark);
}

.footer__title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

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

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copyright {
    color: #64748b;
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer__legal a:hover {
    color: white;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO VISUAL - ANIMATED SHOWCASE
   ============================================ */

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Circles */
.hero-visual__bg {
    position: absolute;
    inset: -50px;
    overflow: visible;
    pointer-events: none;
}

.hero-visual__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
}

.hero-visual__circle--1 {
    width: 350px;
    height: 350px;
    background: var(--brand-dark);
    top: -100px;
    right: -100px;
    animation: pulse-slow 4s ease-in-out infinite;
}

.hero-visual__circle--2 {
    width: 280px;
    height: 280px;
    background: var(--brand-light);
    bottom: -80px;
    left: -80px;
    animation: pulse-slow 5s ease-in-out infinite;
    animation-delay: -1s;
}

.hero-visual__circle--3 {
    width: 200px;
    height: 200px;
    background: var(--brand-yellow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-slow 3s ease-in-out infinite;
    animation-delay: -2s;
    opacity: 0.4;
}

.hero-visual__glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(0, 90, 221, 0.15) 0%, transparent 60%);
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* Floating Particles */
.hero-visual__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
    box-shadow: 0 0 10px currentColor;
}

.particle--1 {
    background: var(--brand-dark);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.particle--2 {
    background: var(--brand-light);
    top: 20%;
    right: 10%;
    animation-delay: -1s;
    width: 10px;
    height: 10px;
}

.particle--3 {
    background: var(--brand-yellow);
    bottom: 25%;
    left: 0%;
    animation-delay: -2s;
    width: 14px;
    height: 14px;
}

.particle--4 {
    background: var(--brand-dark);
    bottom: 15%;
    right: 5%;
    animation-delay: -3s;
}

.particle--5 {
    background: var(--brand-light);
    top: 55%;
    left: 8%;
    animation-delay: -4s;
    width: 8px;
    height: 8px;
}

.particle--6 {
    background: var(--brand-yellow);
    top: 35%;
    right: 0%;
    animation-delay: -5s;
    width: 10px;
    height: 10px;
}

/* Orbiting Elements */
.hero-visual__orbit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border: 2px dashed rgba(0, 90, 221, 0.25);
    border-radius: 50%;
}

.orbit-ring--1 {
    width: 115%;
    height: 115%;
    animation: rotate-slow 15s linear infinite;
}

.orbit-ring--2 {
    width: 135%;
    height: 135%;
    animation: rotate-slow 25s linear infinite reverse;
    border-color: rgba(14, 159, 218, 0.2);
}

.orbit-ring--3 {
    width: 155%;
    height: 155%;
    animation: rotate-slow 35s linear infinite;
    border-color: rgba(247, 203, 14, 0.2);
}

.orbit-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 25px rgba(0, 90, 221, 0.6);
}

.orbit-ring--2 .orbit-dot {
    background: linear-gradient(135deg, var(--brand-light), var(--brand-yellow));
    box-shadow: 0 0 25px rgba(14, 159, 218, 0.6);
    width: 14px;
    height: 14px;
}

.orbit-ring--3 .orbit-dot {
    background: var(--brand-yellow);
    box-shadow: 0 0 25px rgba(247, 203, 14, 0.6);
    width: 12px;
    height: 12px;
}

/* Main Image Frame */
.hero-visual__frame {
    position: relative;
    width: 90%;
    background: white;
    border-radius: 20px;
    padding: 8px;
    box-shadow:
        0 25px 50px -12px rgba(0, 90, 221, 0.25),
        0 0 0 1px rgba(0, 90, 221, 0.1),
        0 0 80px rgba(0, 90, 221, 0.15);
    animation: float-gentle 6s ease-in-out infinite;
    overflow: hidden;
    z-index: 10;
}

.hero-visual__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light), var(--brand-yellow), var(--brand-dark));
    background-size: 300% 300%;
    animation: gradient-shift 5s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-visual__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shine 4s ease-in-out infinite;
    z-index: 20;
    pointer-events: none;
}

.hero-visual__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Floating Badges */
.hero-visual__badge {
    position: absolute;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 2px solid rgba(0, 90, 221, 0.15);
    box-shadow:
        0 15px 50px rgba(0, 90, 221, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.08);
    z-index: 20;
    animation: float-badge 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.hero-visual__badge--1 {
    top: 0%;
    right: -10%;
    animation-delay: 0s;
    border-color: rgba(0, 90, 221, 0.2);
}

.hero-visual__badge--2 {
    bottom: 30%;
    left: -15%;
    animation-delay: -1.3s;
    border-color: rgba(14, 159, 218, 0.2);
}

.hero-visual__badge--3 {
    bottom: 0%;
    right: 0%;
    animation-delay: -2.6s;
    border-color: rgba(247, 203, 14, 0.3);
}

.badge-icon {
    font-size: 1.1rem;
}

.badge-text {
    white-space: nowrap;
}

/* Keyframe Animations */
@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

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

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

@keyframes shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 150%;
    }
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-visual__badge--1 {
        right: -5%;
    }
    .hero-visual__badge--2 {
        left: -5%;
    }
    .orbit-ring--1 { width: 110%; height: 110%; }
    .orbit-ring--2 { width: 125%; height: 125%; }
    .orbit-ring--3 { width: 140%; height: 140%; }
}

@media (max-width: 768px) {
    .hero-visual {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-visual__badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    .hero-visual__badge--1 { top: -5%; right: 5%; }
    .hero-visual__badge--2 { bottom: 35%; left: 0%; }
    .hero-visual__badge--3 { bottom: -5%; right: 15%; }
    .orbit-ring { display: none; }
    .hero-visual__circle {
        filter: blur(60px);
        opacity: 0.2;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }

@media (max-width: 639px) {
    .sm\:hidden { display: none !important; }
}

@media (max-width: 1023px) {
    .lg\:hidden { display: none !important; }
}

/* ============================================
   TRUST BADGES & GUARANTEES
   ============================================ */

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-badge__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.hero-trust-badge img {
    height: 16px;
    width: auto;
}

.hero-trust-badge__icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-trust-badges {
        justify-content: center;
    }

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

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    border: 1px solid #86efac;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #166534;
    margin-top: 1rem;
}

.guarantee-badge__icon {
    font-size: 1.25rem;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */

.countdown-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.75rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: countdown-shine 3s ease-in-out infinite;
}

@keyframes countdown-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.countdown-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-unit {
    background: rgba(255,255,255,0.2);
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    min-width: 45px;
    text-align: center;
}

.countdown-value {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.countdown-separator {
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   SOCIAL PROOF NOTIFICATIONS
   ============================================ */

.social-proof-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 320px;
}

.social-proof-toast {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: toast-slide-in 0.4s ease forwards;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.social-proof-toast:hover {
    transform: scale(1.02);
}

.social-proof-toast.hiding {
    animation: toast-slide-out 0.3s ease forwards;
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-slide-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.social-proof-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.social-proof-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--brand-light);
    box-shadow: 0 2px 8px rgba(110, 86, 207, 0.2);
}

.social-proof-content {
    flex: 1;
    min-width: 0;
}

.social-proof-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.social-proof-message {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.social-proof-time {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: none;
    background: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s;
}

.social-proof-toast:hover .social-proof-close {
    opacity: 1;
}

@media (max-width: 480px) {
    .social-proof-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* ============================================
   CTA ENHANCEMENTS
   ============================================ */

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.cta-wrapper--center {
    align-items: center;
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta-subtext--light {
    color: rgba(255, 255, 255, 0.8);
}

.cta-subtext__icon {
    color: #16a34a;
}

/* ============================================
   EXIT-INTENT POPUP
   ============================================ */

.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup__header {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    padding: 2rem;
    text-align: center;
    color: white;
}

.exit-popup__icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.exit-popup__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.exit-popup__body {
    padding: 2rem;
    text-align: center;
}

.exit-popup__text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.exit-popup__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exit-popup__input {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.exit-popup__input:focus {
    outline: none;
    border-color: var(--brand-dark);
}

.exit-popup__benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.exit-popup__benefit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.exit-popup__benefit-icon {
    color: #16a34a;
}

.exit-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.exit-popup__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.exit-popup__skip {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 1rem;
    text-decoration: underline;
}

.exit-popup__skip:hover {
    color: var(--text-primary);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: white;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-cta__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-mobile-cta__text {
    flex: 1;
    font-size: 0.85rem;
}

.sticky-mobile-cta__text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.sticky-mobile-cta__text span {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.sticky-mobile-cta .btn {
    white-space: nowrap;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: none; /* Temporarily hidden to test scroll-x issue */
    }

    /* Add padding to body to prevent content being hidden behind sticky CTA */
    /* body {
        padding-bottom: 70px;
    } */
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item__icon img {
    width: 100%;
    height: auto;
}

.trust-item__icon--shield {
    color: #16a34a;
}

.trust-item__icon--lock {
    color: var(--brand-dark);
}

/* ============================================
   ROI CALCULATOR
   ============================================ */

.roi-calculator {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.roi-calculator__title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.roi-calculator__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.roi-calculator__label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.roi-calculator__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.roi-calculator__input:focus {
    outline: none;
    border-color: var(--brand-dark);
}

.roi-calculator__divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1.5rem 0;
}

.roi-calculator__results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.roi-result {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
}

.roi-result--diy {
    background: #fef2f2;
}

.roi-result--accessily {
    background: #dcfce7;
}

.roi-result__label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.roi-result__value {
    font-size: 1.5rem;
    font-weight: 800;
}

.roi-result--diy .roi-result__value {
    color: #dc2626;
}

.roi-result--accessily .roi-result__value {
    color: #16a34a;
}

.roi-calculator__savings {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    border-radius: 12px;
    color: white;
}

.roi-calculator__savings-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.roi-calculator__savings-value {
    font-size: 2rem;
    font-weight: 800;
}

/* ============================================
   IMPROVED TESTIMONIALS
   ============================================ */

.testimonial--enhanced {
    position: relative;
}

.testimonial__image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial__company-logo {
    height: 20px;
    width: auto;
    opacity: 0.6;
    margin-top: 0.5rem;
}

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

.testimonial__rating-value {
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #16a34a;
    background: #dcfce7;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.testimonial__result {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

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

.testimonial__result-value {
    font-weight: 700;
    color: var(--brand-dark);
}

/* ============================================
   MOBILE OVERFLOW FIX
   ============================================ */

@media (max-width: 768px) {
    /* Fix inline grid layouts on mobile */
    .section__container > div[style*="grid-template-columns: 1fr 1fr"],
    .section__container > div[style*="grid-template-columns:1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* Fix any wide elements */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }

    /* Fix countdown on very small screens */
    .countdown-text {
        font-size: 0.85rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
}
