/* ==========================================================================
   Lamma AI — Home Page Styles (Aino-Inspired Light Design)
   ========================================================================== */

/* ═══ Hero Section ═══ */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 35%, #f8fafc 70%, #ffffff 100%);
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(51, 141, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 141, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 80%);
    pointer-events: none;
}

/* Decorative Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0;
    animation: orbAppear 1.5s ease-out forwards;
}

.hero-orb--1 {
    width: 400px;
    height: 400px;
    background: rgba(51, 141, 255, 0.12);
    top: 5%;
    right: 10%;
    animation-delay: 0.3s;
}

.hero-orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(34, 197, 94, 0.08);
    bottom: 30%;
    left: 5%;
    animation-delay: 0.6s;
}

.hero-orb--3 {
    width: 250px;
    height: 250px;
    background: rgba(139, 92, 246, 0.08);
    top: 20%;
    left: 30%;
    animation-delay: 0.9s;
}

@keyframes orbAppear {
    to {
        opacity: 1;
    }
}

/* Content */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 141, 255, 0.15);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.8125rem;
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

/* Title */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero-title__brand {
    background: linear-gradient(135deg, #338dff 0%, #1d6cf5 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title__sub {
    color: #338dff;
    font-weight: 800;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #64748b;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 36px;
    opacity: 0;
    transform: translateY(25px);
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-btn__icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-btn--primary {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
}

.hero-btn--primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.3);
}

.hero-btn--primary:hover .hero-btn__icon {
    transform: translateX(-4px);
}

.hero-btn--outline {
    background: rgba(255, 255, 255, 0.8);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
}

.hero-btn--outline:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ═══ Dashboard Cards ═══ */
.hero-cards {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    perspective: 1200px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 22px;
    width: 270px;
    text-align: right;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(60px) rotateX(8deg);
}

.hero-card:hover {
    transform: translateY(-8px) rotateX(0deg) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-card--1 {
    animation: cardSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-card--2 {
    animation: cardSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.hero-card--elevated {
    transform: translateY(40px) rotateX(8deg);
    width: 290px;
}

.hero-card--3 {
    animation: cardSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Card internals */
.hero-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.hero-card__label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.hero-card__badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

.hero-card__badge--green {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.hero-card__badge--blue {
    background: rgba(51, 141, 255, 0.1);
    color: #338dff;
}

.hero-card__value {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1;
}

.hero-card__value--large {
    font-size: 2.5rem;
}

.hero-card__percent {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    margin-right: 2px;
}

/* Chart in Card 1 */
.hero-card__chart {
    position: relative;
}

.hero-card__graph {
    width: 100%;
    height: 50px;
    margin-bottom: 8px;
}

.hero-chart-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 2s ease-out 1.5s forwards;
}

.hero-chart-area {
    opacity: 0;
    animation: fadeIn 1s ease-out 2.5s forwards;
}

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

.hero-card__days {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #94a3b8;
}

.hero-card__days .active {
    color: #338dff;
    font-weight: 700;
}

/* Bars in Card 2 */
.hero-card__bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    height: 100px;
    margin-bottom: 6px;
}

.hero-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-bar {
    width: 36px;
    background: #e2e8f0;
    border-radius: 8px;
    position: relative;
    min-height: 20px;
    transform-origin: bottom;
    transform: scaleY(0);
    animation: barGrow 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-bar-group:nth-child(1) .hero-bar {
    animation-delay: 1.6s;
}

.hero-bar-group:nth-child(2) .hero-bar {
    animation-delay: 1.8s;
}

.hero-bar-group:nth-child(3) .hero-bar {
    animation-delay: 2.0s;
}

.hero-bar-group:nth-child(4) .hero-bar {
    animation-delay: 2.2s;
}

@keyframes barGrow {
    to {
        transform: scaleY(1);
    }
}

.hero-bar--active {
    background: linear-gradient(180deg, #338dff 0%, #1d6cf5 100%);
}

.hero-bar span {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    color: #64748b;
    opacity: 0;
    animation: fadeIn 0.5s ease 2.8s forwards;
}

.hero-bar--active span {
    color: #fff;
}

.hero-bar-label {
    font-size: 0.6rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-bar-label.active {
    color: #338dff;
    font-weight: 700;
}

/* Usage Bars in Card 3 */
.hero-card__usage-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-usage-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-usage-row span {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 500;
}

.hero-usage-track {
    width: 100%;
    height: 7px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.hero-usage-fill {
    height: 100%;
    background: linear-gradient(90deg, #338dff, #60a5fa);
    border-radius: 10px;
    transform-origin: right;
    transform: scaleX(0);
    animation: fillBar 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

.hero-usage-fill--green {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.hero-usage-fill--purple {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.hero-usage-row:nth-child(2) .hero-usage-fill {
    animation-delay: 2.0s;
}

.hero-usage-row:nth-child(3) .hero-usage-fill {
    animation-delay: 2.2s;
}

@keyframes fillBar {
    to {
        transform: scaleX(1);
    }
}

.hero-card__goal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: #94a3b8;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

/* Bottom Curve */
.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-curve svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ═══ Shared Animations ═══ */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ═══ Float Animations for orbs ═══ */
@keyframes float {

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

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

.hero-orb--1 {
    animation: orbAppear 1.5s ease-out 0.3s forwards, float 8s ease-in-out 2s infinite;
}

.hero-orb--2 {
    animation: orbAppear 1.5s ease-out 0.6s forwards, float 7s ease-in-out 2.5s infinite;
}

.hero-orb--3 {
    animation: orbAppear 1.5s ease-out 0.9s forwards, float 9s ease-in-out 3s infinite;
}

/* ═══ Pulse Glow (How It Works steps) ═══ */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(51, 141, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(51, 141, 255, 0.4);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ═══ FAQ Accordion ═══ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-chevron {
    transition: transform 0.3s ease;
}

.faq-chevron.rotate {
    transform: rotate(180deg);
}


/* ═══ LIGHT MODE — Global Tailwind Utility Overrides ═══════════════════════ */

body {
    background: #f8fafc !important;
    color: #1e293b !important;
}

/* Text Colors */
.text-gray-300 {
    color: #475569 !important;
}

.text-gray-400 {
    color: #64748b !important;
}

.text-gray-500 {
    color: #64748b !important;
}

.text-gray-600 {
    color: #475569 !important;
}

.text-white {
    color: #0f172a !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0f172a !important;
}

/* Keep CTA buttons white */
.btn-glow,
.btn-glow *,
a.btn-glow,
button.btn-glow {
    color: #fff !important;
}

.hero-btn--primary {
    color: #fff !important;
}

/* Brand */
.text-brand-400 {
    color: #2563eb !important;
}

.text-brand-300 {
    color: #338dff !important;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #338dff, #1d6cf5, #22c55e) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

footer .gradient-text {
    background: none !important;
    -webkit-text-fill-color: #338dff !important;
}

/* Section Backgrounds */
#tools {
    background: #ffffff;
}

#how {
    background: #f1f5f9;
}

#pricing {
    background: #ffffff;
}

#faq {
    background: #f1f5f9;
}

#contact {
    background: #ffffff;
}

section.py-24 {
    background: #f8fafc;
}

/* Cards */
.card-hover,
section .rounded-2xl,
section .rounded-xl {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

.card-hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
}

.card-hover:hover {
    box-shadow: 0 12px 40px -10px rgba(51, 141, 255, 0.12) !important;
    border-color: rgba(51, 141, 255, 0.2) !important;
}

/* Section dividers */
.section-glow-line {
    background: linear-gradient(90deg, transparent, rgba(51, 141, 255, 0.12), transparent) !important;
}

/* Pricing */
#pricing li {
    color: #475569 !important;
}

#pricing a.block {
    color: #1e293b !important;
    border-color: #e2e8f0 !important;
}

#pricing a.block:hover {
    color: #338dff !important;
    border-color: #338dff !important;
    background: rgba(51, 141, 255, 0.04) !important;
}

#pricing a.btn-glow {
    color: #fff !important;
}

/* Testimonials */
section .font-bold.text-white {
    color: #0f172a !important;
}

section .w-28 {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    color: #94a3b8 !important;
}

/* FAQ */
#faq .faq-toggle {
    color: #0f172a !important;
}

#faq .faq-toggle:hover {
    background: rgba(51, 141, 255, 0.03) !important;
}

#faq .faq-answer p {
    color: #64748b !important;
}

/* Contact */
#contact input,
#contact textarea {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    color: #1e293b !important;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: #94a3b8 !important;
}

#contact input:focus,
#contact textarea:focus {
    border-color: #338dff !important;
    box-shadow: 0 0 0 3px rgba(51, 141, 255, 0.1) !important;
}

#contact label {
    color: #475569 !important;
}

/* Footer */
footer {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

footer span,
footer p,
footer a {
    color: #64748b !important;
}

footer a:hover {
    color: #0f172a !important;
}

/* Mobile Menu — light theme */
.mobile-menu {
    background: #ffffff !important;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1) !important;
}

.mobile-menu a {
    color: #1e293b !important;
    border-color: #f1f5f9 !important;
}

.mobile-menu a:hover {
    color: #338dff !important;
}

.mobile-menu span {
    color: #0f172a !important;
}

.mobile-menu .btn-glow {
    color: #fff !important;
}

/* ═══ MOBILE STATS STRIP ══════════════════════════════════════════════════ */
.hero-stats-strip {
    display: none;
}

.hero-cards--desktop {
    display: flex;
}

.hero-stats-strip {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    justify-content: space-around;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    max-width: 400px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.hero-stat__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat__icon svg {
    width: 18px;
    height: 18px;
}

.hero-stat__icon--blue {
    background: rgba(51, 141, 255, 0.1);
    color: #338dff;
}

.hero-stat__icon--green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.hero-stat__icon--purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.hero-stat__num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.hero-stat__num small {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.hero-stat__label {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

.hero-stat__divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
    flex-shrink: 0;
}

/* ═══ BOTTOM TAB BAR ═══════════════════════════════════════════════════ */

/* Hidden on desktop */
.mobile-bottom-nav {
    display: none;
}

/* ═══ RESPONSIVE ═══════════════════════════════════════════════════════ */
html,
body {
    overflow-x: hidden !important;
}

section,
.hero-section,
.hero-content {
    overflow-x: hidden;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-cards--desktop {
        gap: 14px;
    }

    .hero-card {
        width: 230px;
        padding: 18px;
    }

    .hero-card--elevated {
        width: 250px;
    }
}

/* ── Mobile (max 768px) ─────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* ═══ BOTTOM TAB BAR — App Style ═══ */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
        padding: 6px 0 env(safe-area-inset-bottom, 8px);
        justify-content: space-around;
        align-items: center;
    }

    .mobile-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 6px 8px;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.2s ease;
        flex: 1;
        max-width: 80px;
    }

    .mobile-tab svg {
        width: 22px;
        height: 22px;
        color: #94a3b8;
        transition: color 0.2s ease;
    }

    .mobile-tab span {
        font-size: 0.6rem;
        font-weight: 600;
        color: #94a3b8;
        transition: color 0.2s ease;
    }

    .mobile-tab:active {
        transform: scale(0.92);
    }

    .mobile-tab--active svg {
        color: #338dff;
    }

    .mobile-tab--active span {
        color: #338dff;
    }

    /* Body padding for bottom bar */
    body {
        padding-bottom: 70px !important;
    }

    /* ═══ HIDE entire top navbar on mobile ═══ */
    #main-nav {
        display: none !important;
    }

    #menu-overlay {
        display: none !important;
    }

    /* ═══ HERO — Mobile ═══ */
    .hero-cards--desktop {
        display: none !important;
    }

    .hero-stats-strip {
        display: flex !important;
    }

    .hero-section {
        padding: 40px 0 50px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 24px;
        line-height: 1.75;
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
        border-radius: 14px;
    }

    .hero-orb--1 {
        width: 180px;
        height: 180px;
        opacity: 0.5;
    }

    .hero-orb--2 {
        width: 120px;
        height: 120px;
        opacity: 0.4;
    }

    .hero-orb--3 {
        display: none;
    }

    .hero-curve svg {
        height: 30px;
    }

    .hero-grid-pattern {
        background-size: 32px 32px;
        opacity: 0.5;
    }

    /* ═══ Sections ═══ */
    section.py-24 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    section h2 {
        font-size: 1.35rem !important;
    }

    .section-glow-line {
        margin-bottom: 1.5rem !important;
    }

    #tools .grid {
        gap: 14px;
    }

    #tools .card-hover {
        padding: 20px;
    }

    #tools h3 {
        font-size: 0.95rem !important;
    }

    #how .grid {
        gap: 20px;
    }

    #pricing .grid {
        gap: 14px;
    }

    #faq .faq-toggle {
        padding: 14px !important;
    }

    #faq .faq-toggle span {
        font-size: 0.85rem !important;
    }

    #contact form {
        padding: 20px !important;
    }

    #contact input,
    #contact textarea {
        font-size: 16px !important;
        padding: 12px 14px !important;
    }

    footer {
        padding: 24px 16px !important;
        margin-bottom: 0 !important;
    }
}

/* Small Phones */
@media (max-width: 420px) {
    .hero-title {
        font-size: 1.4rem !important;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .hero-stat__num {
        font-size: 1.1rem;
    }

    .hero-stat__icon {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .hero-stat__icon svg {
        width: 14px;
        height: 14px;
    }

    .hero-stats-strip {
        padding: 18px 12px;
    }

    section h2 {
        font-size: 1.2rem !important;
    }

    .mobile-tab svg {
        width: 20px;
        height: 20px;
    }

    .mobile-tab span {
        font-size: 0.55rem;
    }
}