/* ==========================================
   SENKU PAY
   Homepage Styles
========================================== */

:root {
    --background: #070916;
    --surface: #12172b;
    --surface-light: #1b2138;
    --surface-dark: #0d1222;
    --text: #ffffff;
    --muted: #9ca3b9;
    --muted-light: #c7cde1;
    --primary: #7b2cff;
    --primary-light: #8b5cf6;
    --accent: #00d5ff;
    --success: #37d67a;
    --border: rgba(255, 255, 255, 0.07);
    --header-height: 84px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input {
    font: inherit;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

img,
svg {
    max-width: 100%;
}

.container {
    width: min(1400px, 92%);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Background */

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 55px 55px;
    z-index: -5;
    pointer-events: none;
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .18;
    z-index: -4;
    pointer-events: none;
}

.glow-one {
    width: 420px;
    height: 420px;
    background: var(--primary);
    top: -180px;
    left: -120px;
}

.glow-two {
    width: 520px;
    height: 520px;
    background: var(--accent);
    right: -180px;
    bottom: -200px;
}

.glow-three {
    width: 340px;
    height: 340px;
    background: var(--primary-light);
    top: 45%;
    left: 45%;
}

/* Header */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(9, 12, 24, .72);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background .3s ease, box-shadow .3s ease;
}

header.scrolled {
    background: rgba(7, 10, 20, .94);
    box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

nav {
    min-height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 30px rgba(139,92,246,.45);
}

.logo-text h2 {
    font-size: 22px;
    font-weight: 800;
}

.logo-text small {
    color: #8f98b5;
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    position: relative;
    color: var(--muted-light);
    font-weight: 500;
    transition: color .3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    transform: scaleX(1);
}

.nav-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn {
    min-height: 50px;
    padding: 14px 30px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.primary {
    background: linear-gradient(135deg, var(--primary), #5b16ff);
    color: white;
    box-shadow: 0 15px 35px rgba(123,44,255,.35);
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(123,44,255,.55);
}

.secondary {
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    background: rgba(255,255,255,.04);
}

.secondary:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.09);
}

.menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: white;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}

/* Hero */

.hero {
    padding-top: 170px;
    padding-bottom: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.hero-left {
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    background: rgba(123,44,255,.15);
    border: 1px solid rgba(123,44,255,.35);
    margin-bottom: 28px;
    color: #d9ccff;
    font-weight: 600;
}

.hero-badge span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    50% {
        opacity: .55;
        transform: scale(.8);
    }
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3rem, 5vw, 4.25rem);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -.04em;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    color: #9da8c5;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 35px;
}

.hero-users {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-users p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.hero-users strong {
    color: #fff;
}

.user-stack {
    display: flex;
    padding-left: 10px;
    flex-shrink: 0;
}

.user-stack div {
    width: 42px;
    height: 42px;
    margin-left: -10px;
    border-radius: 50%;
    border: 3px solid var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

/* Dashboard preview */

.dashboard {
    background: var(--surface);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
    transition: transform .5s ease, box-shadow .5s ease;
}

.dashboard:hover {
    transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-6px);
    box-shadow: 0 35px 75px rgba(0,0,0,.5);
}

.dashboard-top {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: #181d34;
}

.window-buttons {
    display: flex;
    gap: 8px;
}

.window-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff4d4d; }
.yellow { background: #ffcc00; }
.green { background: #35d16f; }

.dashboard-title {
    color: #b8bfd8;
    font-size: 14px;
}

.dashboard-body {
    display: flex;
    min-height: 440px;
}

aside {
    width: 220px;
    background: var(--surface-dark);
    padding: 30px 20px;
    flex-shrink: 0;
}

.sidebar-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

aside ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

aside li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    color: #9da8c5;
    transition: .3s ease;
}

aside li.active,
aside li:hover {
    background: var(--primary);
    color: #fff;
}

.dashboard-content {
    flex: 1;
    min-width: 0;
    padding: 28px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.card {
    background: var(--surface-light);
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.05);
}

.card h3 {
    color: #9ca3b9;
    font-size: 15px;
    margin-bottom: 12px;
}

.card h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.card span {
    color: var(--success);
    font-weight: 700;
}

.graph {
    height: 230px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    background: var(--surface-light);
    border-radius: 20px;
    padding: 25px;
}

.graph div {
    flex: 1;
    min-width: 8px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(var(--accent), var(--primary));
    transform-origin: bottom;
    animation: bars 2.2s ease-in-out infinite alternate;
}

.graph div:nth-child(1) { height: 45%; animation-delay: -.3s; }
.graph div:nth-child(2) { height: 65%; animation-delay: -.6s; }
.graph div:nth-child(3) { height: 38%; animation-delay: -.9s; }
.graph div:nth-child(4) { height: 85%; animation-delay: -1.2s; }
.graph div:nth-child(5) { height: 58%; animation-delay: -1.5s; }
.graph div:nth-child(6) { height: 100%; animation-delay: -1.8s; }
.graph div:nth-child(7) { height: 75%; animation-delay: -2.1s; }

@keyframes bars {
    from { transform: scaleY(.85); opacity: .82; }
    to { transform: scaleY(1); opacity: 1; }
}

/* Section headings */

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-heading span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(123,44,255,.15);
    border: 1px solid rgba(123,44,255,.3);
    color: #b18cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: clamp(2.15rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

/* Statistics */

.stats-section {
    padding: 90px 0;
}

.stats-section .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.stat-box {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 22px;
    padding: 45px 25px;
    text-align: center;
    transition: .35s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(123,44,255,.15);
}

.stat-box h2 {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.stat-box p {
    color: var(--muted);
}

/* Features */

.features,
.services,
.testimonials {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,.05);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123,44,255,.18), transparent 60%);
    opacity: 0;
    transition: .35s ease;
    pointer-events: none;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    margin-bottom: 28px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.8;
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border-radius: 24px;
    padding: 45px;
    border: 1px solid rgba(255,255,255,.05);
    transition: .35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(123,44,255,.08);
    top: -120px;
    right: -120px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.service-card h3,
.service-card p {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.9;
}

/* About cards */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.testimonial-card {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 24px;
    padding: 40px;
    transition: .35s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(123,44,255,.18);
}

.quote {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 22px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

.testimonial-card > p {
    color: #b8bfd8;
    line-height: 1.9;
    margin-bottom: 30px;
}

.user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    flex-shrink: 0;
}

.user h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.user span {
    color: #8f98b5;
    font-size: 14px;
}

/* CTA */

.cta {
    padding: 60px 0 120px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #2b7fff);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
}

.cta-box::before,
.cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-box::before {
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,.08);
    top: -250px;
    right: -180px;
}

.cta-box::after {
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,.05);
    left: -120px;
    bottom: -170px;
}

.cta-box > * {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.375rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
    margin: 0 auto 35px;
    max-width: 760px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-buttons .secondary {
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
}

/* Footer */

footer {
    padding: 90px 0 30px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: #0b0f1d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.footer-logo h3 {
    font-size: 24px;
}

.footer-logo p {
    color: #8f98b5;
}

.footer-text {
    color: var(--muted);
    line-height: 1.9;
    max-width: 380px;
}

footer h4 {
    margin-bottom: 22px;
    font-size: 20px;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer ul a {
    color: var(--muted);
    transition: .3s ease;
}

footer ul a:hover {
    color: #fff;
    padding-left: 8px;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter input {
    width: 100%;
    padding: 16px;
    border: 1px solid transparent;
    outline: none;
    border-radius: 14px;
    background: #151b31;
    color: #fff;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.newsletter input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(123,44,255,.15);
}

.newsletter button {
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    transition: .35s ease;
}

.newsletter button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(123,44,255,.2);
}

.newsletter-message {
    min-height: 20px;
    color: #9da8c5;
    font-size: 13px;
    line-height: 1.5;
}

.newsletter-message.success {
    color: var(--success);
}

.newsletter-message.error {
    color: #ff7d7d;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.socials a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151b31;
    transition: .35s ease;
}

.socials a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.copyright {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.06);
    text-align: center;
    color: #7f89a7;
}

/* Reveal animation */

.reveal-hidden {
    opacity: 0;
    transform: translateY(34px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s ease, transform .7s ease;
}

/* Responsive */

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-left {
        max-width: 850px;
    }

    .dashboard {
        max-width: 900px;
        transform: none;
    }

    .stats-section .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .menu-btn {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .nav-links,
    .nav-buttons {
        position: fixed;
        left: 4%;
        right: 4%;
        display: none;
        background: rgba(13, 18, 34, .98);
        border: 1px solid var(--border);
        box-shadow: 0 20px 50px rgba(0,0,0,.45);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-links {
        top: calc(var(--header-height) + 10px);
        padding: 22px;
        border-radius: 20px 20px 0 0;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .nav-links a {
        display: block;
        padding: 13px 12px;
        border-radius: 10px;
    }

    .nav-links a:hover,
    .nav-links a.active-link {
        background: rgba(123,44,255,.14);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-buttons {
        top: calc(var(--header-height) + 264px);
        padding: 0 22px 22px;
        border-top: none;
        border-radius: 0 0 20px 20px;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-buttons.mobile-active {
        display: grid;
    }

    .dashboard-body {
        flex-direction: column;
    }

    aside {
        width: 100%;
        padding: 20px;
    }

    .sidebar-logo {
        margin-bottom: 18px;
    }

    aside ul {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    aside li {
        white-space: nowrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 60px 35px;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-section .container {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 30px;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 76px;
    }

    .container {
        width: min(94%, 1400px);
    }

    nav {
        gap: 12px;
    }

    .logo-box {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 21px;
    }

    .logo-text h2 {
        font-size: 19px;
    }

    .logo-text small {
        font-size: 10px;
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero p,
    .section-heading p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-users {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-top {
        padding: 0 15px;
    }

    .dashboard-title {
        font-size: 12px;
    }

    .dashboard-content {
        padding: 18px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .graph {
        height: 190px;
        gap: 9px;
        padding: 18px;
    }

    .stats-section,
    .features,
    .services,
    .testimonials {
        padding: 85px 0;
    }

    .stat-box h2 {
        font-size: 38px;
    }

    .cta {
        padding-bottom: 85px;
    }

    .cta-box {
        padding: 50px 25px;
        border-radius: 24px;
    }

    .cta-box p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .nav-buttons {
        grid-template-columns: 1fr;
        top: calc(var(--header-height) + 260px);
    }
}

@media (max-width: 420px) {
    .logo-text small {
        display: none;
    }

    .hero-badge {
        font-size: 13px;
    }

    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 24px;
    }

    .service-card h3 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .dashboard {
        transform: none;
    }
}
