/* =============================================
           RESET & VARIABLES
        ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #07070e;
    --dark: #0d0d17;
    --dark2: #111120;
    --card: #17172a;
    --border: #25253d;
    --gold: #FFC300;
    --gold2: #FFD700;
    --gold-bg: rgba(255, 195, 0, 0.08);
    --gold-bdr: rgba(255, 195, 0, 0.2);
    --text: #dde0f2;
    --muted: #7070a0;
    --dim: #404060;
    --green: #22c55e;
    --r: 12px;
    --rl: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    display: block;
    max-width: 100%;
}

/* =============================================
           TYPOGRAPHY
        ============================================= */
h1,
h2,
h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.05;
}

.eyebrow {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

/* =============================================
           BUTTONS
        ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s, background .22s, color .22s;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 195, 0, .38);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--gold-bg);
    color: var(--gold);
    border: 1px solid var(--gold-bdr);
}

.btn-ghost:hover {
    background: rgba(255, 195, 0, .14);
    transform: translateY(-2px);
}

/* =============================================
           URGENCY BAR
        ============================================= */
.urgency-bar {
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 9px 20px;
    font-size: .82rem;
    font-weight: 700;
    position: relative;
    z-index: 200;
}

.urgency-bar a {
    color: #000;
    font-weight: 800;
    text-decoration: underline;
}

.dot-live {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #007a00;
    border-radius: 50%;
    margin-right: 7px;
    animation: blk 1.4s ease-in-out infinite;
}

@keyframes blk {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

/* =============================================
           HEADER
        ============================================= */
header {
    position: fixed;
    top: 37px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 15px 0;
    background: rgba(7, 7, 14, .82);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: all .3s;
}

header.scrolled {
    top: 0;
    padding: 11px 0;
    background: rgba(7, 7, 14, .97);
    border-bottom-color: rgba(255, 195, 0, .12);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: auto;
    max-height: 80px;
    max-width: 260px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-link {
    color: var(--muted);
    text-decoration: none;
    font-size: .84rem;
    font-weight: 700;
    transition: color .2s;
}

.phone-link:hover {
    color: var(--gold);
}

/* =============================================
           HERO
        ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

/* Background photo */
.hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

/* Layered dark overlays */
.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(7, 7, 14, .97) 38%, rgba(7, 7, 14, .55) 100%),
        linear-gradient(to top, rgba(7, 7, 14, .9) 0%, transparent 55%);
}

/* Subtle grid pattern */
.hero-grid-pat {
    position: absolute;
    inset: 0;
    opacity: .025;
    background-image:
        repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px, transparent 44px),
        repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 1px, transparent 44px);
}

/* Gold orb glow */
.hero-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 195, 0, .1) 0%, transparent 68%);
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 70px 0 90px;
}

.hero-text h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
    color: #fff;
    line-height: .97;
    margin-bottom: 6px;
}

.hero-text h1 .gold {
    color: var(--gold);
}

.hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 490px;
    margin: 22px 0 34px;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-bdr);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
}

/* ---- Key Visual ---- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.key-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 195, 0, .12);
}

.ring1 {
    width: 300px;
    height: 300px;
    animation: pr 3.2s ease-in-out infinite;
}

.ring2 {
    width: 230px;
    height: 230px;
    animation: pr 3.2s ease-in-out .6s infinite;
}

.ring3 {
    width: 162px;
    height: 162px;
    animation: pr 3.2s ease-in-out 1.2s infinite;
}

@keyframes pr {

    0%,
    100% {
        opacity: .45;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.04)
    }
}

.key-svg {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    animation: keySpin 1.6s cubic-bezier(.34, 1.56, .64, 1) forwards;
    filter: drop-shadow(0 0 22px rgba(255, 195, 0, .55));
}

@keyframes keySpin {
    0% {
        transform: rotate(0deg) scale(0);
        opacity: 0;
        filter: drop-shadow(0 0 0 rgba(255, 195, 0, 0));
    }

    25% {
        opacity: 1;
    }

    100% {
        transform: rotate(720deg) scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 28px rgba(255, 195, 0, .6));
    }
}

.key-svg.glow {
    animation: keySpin 1.6s cubic-bezier(.34, 1.56, .64, 1) forwards,
        keyIdle 2.4s ease-in-out 1.6s infinite;
}

@keyframes keyIdle {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 195, 0, .4));
    }

    50% {
        filter: drop-shadow(0 0 42px rgba(255, 195, 0, .82));
    }
}

/* =============================================
           STATS BAR
        ============================================= */
.stats-bar {
    background: var(--dark2);
    border-top: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-cell:last-child {
    border-right: none;
}

.stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.stat-l {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 4px;
}

/* =============================================
           SECTION HEADER
        ============================================= */
.sec-head {
    text-align: center;
    margin-bottom: 60px;
}

.sec-head h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: #fff;
    margin-bottom: 14px;
}

.sec-head p {
    color: var(--muted);
    font-size: .96rem;
    max-width: 590px;
    margin: 0 auto;
    line-height: 1.72;
}

.gold-bar {
    width: 54px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 18px auto 0;
}

/* =============================================
           SERVICES OVERVIEW
        ============================================= */
.services-sec {
    padding: 100px 0;
    background: var(--dark);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.svc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.svc-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-bdr);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 28px rgba(255, 195, 0, .07);
}

.svc-card:hover::after {
    transform: scaleX(1);
}

.svc-ico {
    width: 54px;
    height: 54px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-bdr);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.svc-card h3 {
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 10px;
}

.svc-card>p {
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.svc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-list li {
    color: var(--muted);
    font-size: .83rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.svc-list li::before {
    content: '→';
    color: var(--gold);
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =============================================
           SERVICE DEEP DIVES
        ============================================= */
.deep-sec {
    padding: 100px 0;
}

.deep-sec.bg-black {
    background: var(--black);
}

.deep-sec.bg-dark {
    background: var(--dark);
}

.deep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.deep-grid.flip .deep-visual {
    order: -1;
}

.deep-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 18px;
}

.deep-content>p {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.feat-list {
    list-style: none;
    margin: 22px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--text);
    font-size: .9rem;
}

.feat-list li .ck {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 1rem;
}

.deep-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deep-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 195, 0, .07) 0%, transparent 70%);
}

.deep-visual .big-ico {
    font-size: 6rem;
    display: block;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.deep-visual h3 {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.deep-visual p {
    color: var(--muted);
    font-size: .85rem;
    position: relative;
    z-index: 1;
    line-height: 1.65;
    max-width: 280px;
}

/* Visual badges */
.vis-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

.vis-badge {
    padding: 5px 12px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-bdr);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
}

/* =============================================
           WHY US
        ============================================= */
.why-sec {
    padding: 100px 0;
    background: var(--dark2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 26px 22px;
    text-align: center;
    transition: transform .3s, border-color .3s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-bdr);
}

.why-ico {
    font-size: 2.3rem;
    display: block;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--muted);
    font-size: .83rem;
    line-height: 1.62;
}

/* =============================================
           HOW IT WORKS
        ============================================= */
.how-sec {
    padding: 100px 0;
    background: var(--black);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(255, 195, 0, .08));
}

.step {
    text-align: center;
    padding: 20px 16px;
    position: relative;
    z-index: 1;
}

.step-n {
    width: 72px;
    height: 72px;
    background: var(--card);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--gold);
}

.step h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 8px;
}

.step p {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.6;
}

/* =============================================
           REVIEWS
        ============================================= */
.reviews-sec {
    padding: 100px 0;
    background: var(--dark);
}

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rev-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 28px;
    transition: transform .3s, border-color .3s;
}

.rev-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-bdr);
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: .95rem;
    margin-bottom: 14px;
}

.rev-text {
    color: var(--text);
    font-size: .88rem;
    line-height: 1.72;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 11px;
}

.rev-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-bg);
    border: 1px solid var(--gold-bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.rev-info strong {
    display: block;
    color: #fff;
    font-size: .88rem;
}

.rev-info span {
    font-size: .78rem;
    color: var(--muted);
}

/* =============================================
           AREAS
        ============================================= */
.areas-sec {
    padding: 100px 0;
    background: var(--dark2);
}

.area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area-tag {
    padding: 7px 17px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--muted);
    cursor: default;
    transition: all .2s;
}

.area-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-bg);
}

/* =============================================
           CTA BAND
        ============================================= */
.cta-band {
    padding: 90px 0;
    background: linear-gradient(135deg, #14100000 0%, #0d0d00 40%, var(--dark2) 100%);
    background-color: #0f0e00;
    border-top: 1px solid rgba(255, 195, 0, .14);
    border-bottom: 1px solid rgba(255, 195, 0, .14);
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: #fff;
    margin-bottom: 14px;
}

.cta-band h2 span {
    color: var(--gold);
}

.cta-band p {
    color: var(--muted);
    font-size: .97rem;
    max-width: 480px;
    margin: 0 auto 36px;
}

.cta-acts {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =============================================
           FAQ
        ============================================= */
.faq-sec {
    padding: 100px 0;
    background: var(--black);
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: .94rem;
    color: var(--text);
    transition: color .2s;
}

.faq-q:hover {
    color: var(--gold);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .3s, background .3s, border-color .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold-bg);
    border-color: var(--gold-bdr);
}

.faq-a {
    display: none;
    padding: 0 0 22px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.78;
}

.faq-item.open .faq-a {
    display: block;
}

/* =============================================
           FOOTER
        ============================================= */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.ft-brand p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.72;
    margin-top: 16px;
    max-width: 270px;
}

.ft-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ft-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .84rem;
    transition: color .2s;
}

.ft-links a:hover {
    color: var(--gold);
}

.ft-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
    font-size: .83rem;
    margin-bottom: 10px;
}

.ft-row a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.ft-row a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: var(--dim);
    font-size: .78rem;
}

/* =============================================
           FLOATING WHATSAPP
        ============================================= */
.wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
    text-decoration: none;
    animation: wap 2.2s ease-in-out infinite;
    transition: transform .2s;
}

.wa-btn:hover {
    transform: scale(1.12);
    animation: none;
    box-shadow: 0 10px 40px rgba(37, 211, 102, .7);
}

.wa-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@keyframes wap {

    0%,
    100% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, .5)
    }

    50% {
        box-shadow: 0 6px 44px rgba(37, 211, 102, .8), 0 0 0 8px rgba(37, 211, 102, .1)
    }
}

/* =============================================
           SCROLL ANIMATIONS
        ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

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

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

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

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

    .steps-grid::before {
        display: none;
    }

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

    .deep-grid {
        gap: 48px;
    }
}

@media(max-width:768px) {
    .phone-link { display: none !important; }

    header {
        top: 34px;
    }

    header.scrolled {
        top: 0;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 50px 0 70px;
    }

    .hero-visual {
        order: -1;
    }

    .trust-row,
    .hero-ctas {
        justify-content: center;
    }

    .key-wrap {
        width: 220px;
        height: 220px;
    }

    .ring1 {
        width: 210px;
        height: 210px;
    }

    .ring2 {
        width: 155px;
        height: 155px;
    }

    .ring3 {
        width: 108px;
        height: 108px;
    }

    .key-svg {
        width: 90px;
        height: 90px;
    }

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

    .stat-cell:nth-child(2) {
        border-right: none;
    }

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

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

    .deep-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .deep-grid.flip .deep-visual {
        order: 0;
    }

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

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

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