/* =========================================================
   VIP MOBILE FANCY NUMBERS — STYLESHEET
   Design concept: "The Vault Ledger" — numbers treated as
   appraised, graded assets. Editorial serif headlines,
   ledger/ruler motifs, medallions, hairline rules.

   Sections:
   1. Variables & Reset
   2. Base Typography
   3. Layout Utilities
   4. Loader & Scroll Progress
   5. Navbar
   6. Buttons
   7. Hero
   8. Marquee
   9. About
   10. Services (editorial index)
   11. Categories (medallions)
   12. How It Works (timeline)
   13. Why Choose Us
   14. Operators
   15. Business Solutions
   16. Featured Numbers (vault)
   17. Statistics (ledger)
   18. Testimonials
   19. FAQ
   20. Contact
   21. Footer
   22. Back To Top
   23. Reveal / Scroll Animations
   24. Responsive
   ========================================================= */

/* ============ 1. VARIABLES & RESET ============ */
:root {
    --royal-blue: #1E4DFF;
    --royal-blue-light: #5C82FF;
    --deep-navy: #080F2B;
    --navy-soft: #101B4D;
    --navy-elevated: #142268;

    --gold: #C9A227;
    --gold-light: #F3D98B;
    --gold-deep: #8A6A1B;

    --white: #ffffff;
    --off-white: #F6F8FF;
    --ice-blue: #EAF0FF;
    --text-dark: #0D1B4C;
    --text-body: #4B5876;
    --text-muted: #7C88A8;
    --border-soft: rgba(13, 27, 76, 0.08);
    --border-gold: rgba(201, 162, 39, 0.4);

    --glass-bg: rgba(255, 255, 255, 0.58);
    --glass-bg-strong: rgba(255, 255, 255, 0.76);
    --glass-border: rgba(255, 255, 255, 0.65);
    --glass-shadow: 0 24px 64px rgba(13, 27, 76, 0.14);

    --glass-navy: rgba(19, 30, 78, 0.55);
    --glass-navy-border: rgba(255, 255, 255, 0.14);
    --glass-navy-shadow: 0 24px 64px rgba(3, 7, 26, 0.45);

    --gradient-hero: radial-gradient(circle at 20% 10%, #eef3ff 0%, #f8faff 42%, #e7edff 100%);
    --gradient-primary: linear-gradient(135deg, var(--royal-blue) 0%, #123AC7 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
    --gradient-navy: linear-gradient(135deg, var(--deep-navy) 0%, #16297a 100%);
    --gradient-text: linear-gradient(120deg, var(--royal-blue) 0%, #6C8CFF 55%, var(--gold-light) 100%);

    --font-heading: 'Fraunces', 'Georgia', serif;
    --font-body: 'Inter', sans-serif;
    --font-numbers: 'Space Grotesk', sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-full: 999px;

    --container-w: min(1240px, 92vw);
    --section-pad: clamp(64px, 9vw, 128px);

    --ease: cubic-bezier(.22, .9, .32, 1);
    --dur-fast: .25s;
    --dur-med: .5s;
    --dur-slow: .9s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--deep-navy);
    margin: 0;
    font-weight: 600;
}

h1 em,
h2 em,
h3 em {
    font-style: italic;
    font-weight: 500;
}

p {
    margin: 0;
}

input,
textarea {
    font-family: inherit;
}

:focus-visible {
    outline: 2.5px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============ 2. BASE TYPOGRAPHY ============ */
.eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-numbers);
    font-weight: 600;
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--royal-blue);
    margin-bottom: 16px;
    padding-left: 22px;
}

.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 1.5px;
    background: var(--gradient-gold);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease) .1s;
}

.in-view .eyebrow::before,
.reveal.in-view .eyebrow::before {
    transform: translateY(-50%) scaleX(1);
}

.eyebrow--light {
    color: var(--gold-light);
}

.section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.section-title--light {
    color: #fff;
}

.section-text {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 16px;
    max-width: 54ch;
}

.section-text--light {
    color: rgba(255, 255, 255, .68);
}

.text-gradient {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientDrift 8s ease-in-out infinite;
}

@keyframes gradientDrift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head .section-title {
    margin-bottom: 0;
}

.section-head-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-soft);
}

.section-head-split .section-title {
    margin-bottom: 0;
}

.section-head-note {
    font-size: .96rem;
    margin-bottom: 4px;
    max-width: 40ch;
}

.section-head-note--light {
    color: rgba(255, 255, 255, .6);
}

/* ============ 3. LAYOUT UTILITIES ============ */
.container {
    width: var(--container-w);
    margin: 0 auto;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow-x: clip;
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: var(--glass-shadow);
    position: relative;
}

.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 40%, rgba(201, 162, 39, .25) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .8;
}

.glass-navy {
    background: var(--glass-navy);
    border: 1px solid var(--glass-navy-border);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: var(--glass-navy-shadow);
}

/* ============ 4. LOADER & SCROLL PROGRESS ============ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--gradient-navy);
    transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-mark {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(201, 162, 39, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-mark img {
    filter: drop-shadow(0 0 12px rgba(201, 162, 39, .5));
    object-fit: contain;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 39, .35);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 16px rgba(201, 162, 39, 0);
    }
}

.loader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, .15);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gradient-gold);
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

.loader-label {
    font-family: var(--font-numbers);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-gold);
    z-index: 1001;
    transition: width .1s linear;
}

/* ============ 5. NAVBAR ============ */
.navbar {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: transform .5s var(--ease);
}

.navbar.nav-hidden {
    transform: translateY(-140%);
}

.navbar-inner {
    width: min(1180px, 94vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .7);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 10px 40px rgba(13, 27, 76, .08);
    transition: all .4s var(--ease);
}

.navbar.scrolled .navbar-inner {
    padding: 8px 18px;
    box-shadow: 0 14px 44px rgba(13, 27, 76, .16);
    background: rgba(255, 255, 255, .82);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo img {
    filter: drop-shadow(0 2px 6px rgba(201, 162, 39, .3));
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .96rem;
    color: var(--deep-navy);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.nav-logo-text em {
    font-style: italic;
    font-weight: 500;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-logo-text small {
    font-family: var(--font-numbers);
    font-weight: 600;
    font-size: .54rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding: 6px 2px;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1.5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--royal-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--deep-navy);
    border-radius: 2px;
    transition: all .3s;
}

/* ============ 6. BUTTONS ============ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
    overflow: hidden;
    isolation: isolate;
}

.btn svg {
    transition: transform .3s var(--ease);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(30, 77, 255, .35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.btn-primary:hover {
    box-shadow: 0 16px 44px rgba(201, 162, 39, .4);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: .18;
}

.btn-ghost {
    background: rgba(13, 27, 76, .05);
    color: var(--deep-navy);
    border: 1px solid rgba(13, 27, 76, .1);
}

.btn-ghost:hover {
    background: rgba(13, 27, 76, .09);
    transform: translateY(-2px);
    border-color: var(--border-gold);
}

.btn-outline {
    background: transparent;
    color: var(--royal-blue);
    border: 1.5px solid var(--royal-blue);
}

.btn-outline:hover {
    background: var(--royal-blue);
    color: #fff;
}

.btn-whatsapp {
    background: #fff;
    color: #128C4A;
    border: 1.5px solid rgba(18, 140, 74, .3);
}

.btn-whatsapp:hover {
    background: #128C4A;
    color: #fff;
}

.btn-small {
    padding: 9px 18px;
    font-size: .8rem;
}

.btn-block {
    width: 100%;
}

.btn-magnetic {
    will-change: transform;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, .5);
    transform: scale(0);
    animation: rippleAnim .6s ease-out forwards;
    z-index: 0;
}

@keyframes rippleAnim {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* ============ 7. HERO ============ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
    animation: blobFloat 12s ease-in-out infinite;
    will-change: transform;
}

.blob-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #4E75FF, transparent 70%);
    top: -120px;
    right: -100px;
}

.blob-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #A9C0FF, transparent 70%);
    bottom: -140px;
    left: -100px;
    animation-delay: -6s;
}

.blob-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--gold-light), transparent 72%);
    top: 30%;
    left: 46%;
    opacity: .35;
    animation-delay: -3s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.08);
    }
}

.particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .4;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: .55;
    }

    90% {
        opacity: .4;
    }

    100% {
        transform: translateY(-120vh) translateX(20px);
        opacity: 0;
    }
}

.hero-rule-mark {
    position: absolute;
    left: 0;
    bottom: 118px;
    width: 46%;
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
    opacity: .5;
}

.hero-rule-mark span {
    width: 1px;
    height: 14px;
    background: var(--text-muted);
    opacity: .3;
}

.hero-rule-mark span:nth-child(4n) {
    height: 22px;
    opacity: .55;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: var(--container-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border-gold);
    font-family: var(--font-numbers);
    font-size: .76rem;
    letter-spacing: .02em;
    font-weight: 600;
    color: var(--navy-soft);
    box-shadow: 0 6px 20px rgba(13, 27, 76, .06);
    margin-bottom: 26px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, .18);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(201, 162, 39, .18);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(201, 162, 39, .06);
    }
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
}

.reveal-line {
    display: block;
    overflow: hidden;
}

.reveal-line span {
    display: inline-block;
    transform: translateY(115%);
    opacity: 0;
    transition: transform .95s var(--ease), opacity .8s var(--ease);
}

.reveal-line:nth-child(2) span {
    transition-delay: .12s;
}

body.loaded .reveal-line span {
    transform: translateY(0);
    opacity: 1;
}

.reveal-fade {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    transition-delay: .5s;
}

body.loaded .reveal-fade {
    opacity: 1;
    transform: translateY(0);
}

.hero-actions .reveal-fade,
.hero-actions.reveal-fade {
    transition-delay: .62s;
}

.hero-ledger.reveal-fade {
    transition-delay: .72s;
}

.hero-text {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 46ch;
    margin-bottom: 32px;
    transition-delay: .55s;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-ledger {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border-soft);
    padding-top: 22px;
    max-width: 460px;
}

.hero-ledger-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 26px;
    margin-right: 26px;
    border-right: 1px solid var(--border-soft);
}

.hero-ledger-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.ledger-figure {
    font-family: var(--font-numbers);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--deep-navy);
}

.ledger-label {
    font-size: .74rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Premium Phone Stage --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-stage {
    position: relative;
    width: min(340px, 80vw);
    padding: 40px 0;
}

.stage-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(201, 162, 39, .28);
    inset: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring-1 {
    width: 118%;
    height: 118%;
    animation: ringSpin 40s linear infinite;
}

.ring-2 {
    width: 138%;
    height: 138%;
    border-color: rgba(30, 77, 255, .16);
    animation: ringSpin 60s linear infinite reverse;
}

@keyframes ringSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.phone-glow {
    position: absolute;
    inset: 12% 6%;
    background: radial-gradient(circle, rgba(30, 77, 255, .4), transparent 68%);
    filter: blur(46px);
    z-index: 0;
}

.phone-ghost {
    position: absolute;
    top: 12%;
    right: 4%;
    width: 76%;
    aspect-ratio: 9/18.5;
    border-radius: 44px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 70px rgba(13, 27, 76, .18);
    transform: perspective(1400px) rotateY(10deg) rotateX(4deg) rotate(16deg) translateX(6%);
    z-index: 0;
    opacity: .8;
}

.phone-float {
    position: relative;
    z-index: 2;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.phone-mockup {
    position: relative;
    width: min(320px, 78vw);
    transform: perspective(1400px) rotateY(-15deg) rotateX(7deg) rotate(-4deg);
    transition: transform .5s var(--ease);
    transform-style: preserve-3d;
}

.phone-frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 9/18.5;
    background: linear-gradient(160deg, #10245e, #060d28);
    border-radius: 46px;
    padding: 14px;
    box-shadow:
        0 50px 90px rgba(4, 8, 26, .45),
        0 0 0 1px rgba(201, 162, 39, .25),
        inset 0 0 0 2px rgba(255, 255, 255, .08);
    overflow: hidden;
}

.phone-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(201, 162, 39, .12) 100%);
    pointer-events: none;
    z-index: 5;
}

.phone-notch {
    width: 34%;
    height: 22px;
    background: #060d28;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    position: relative;
    z-index: 1;
    height: calc(100% - 30px);
    background: linear-gradient(165deg, #ffffff, #eef2ff 60%, #e7edff);
    border-radius: 32px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.screen-topline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.screen-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-gold);
}

.phone-screen-label {
    font-family: var(--font-numbers);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--royal-blue);
    text-align: center;
}

.number-ticker {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.ticker-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: tickerSlide 14s linear infinite;
}

@keyframes tickerSlide {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.ticker-track li {
    font-family: var(--font-numbers);
    font-weight: 600;
    font-size: clamp(.82rem, 2.4vw, .98rem);
    text-align: center;
    color: var(--deep-navy);
    background: #fff;
    border-radius: 12px;
    padding: 11px 6px;
    box-shadow: 0 4px 14px rgba(13, 27, 76, .08);
    letter-spacing: .03em;
    border: 1px solid rgba(201, 162, 39, .18);
    flex-shrink: 0;
}

.screen-footer {
    display: flex;
    justify-content: center;
}

.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    background: var(--gradient-navy);
    color: var(--gold-light);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.verified-pill svg {
    width: 12px;
    height: 12px;
}

.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(13, 27, 76, .16);
    font-size: .76rem;
    font-weight: 700;
    color: var(--deep-navy);
    animation: chipFloat 4.5s ease-in-out infinite;
    z-index: 10;
}

.float-chip svg {
    color: var(--gold-deep);
}

.chip-vip {
    top: 4%;
    left: -14%;
    animation-delay: -1s;
}

.chip-gold {
    top: 28%;
    left: -24%;
    animation-delay: -2.4s;
}

.chip-premium {
    top: 6%;
    right: -16%;
    animation-delay: -.5s;
}

.chip-business {
    top: 32%;
    right: -26%;
    animation-delay: -3s;
}

@keyframes chipFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============ 8. MARQUEE ============ */
.marquee-strip {
    position: relative;
    z-index: 2;
    background: var(--gradient-navy);
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid rgba(201, 162, 39, .2);
}

.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    width: max-content;
}

.marquee-track span {
    color: #fff;
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .04em;
    opacity: .92;
    position: relative;
    padding-left: 16px;
}

.marquee-track span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
    transform: translateY(-50%);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============ 9. ABOUT ============ */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 74px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-ghost-number {
    position: absolute;
    top: -60px;
    left: -34px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13rem;
    line-height: 1;
    color: var(--ice-blue);
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.about-image-frame {
    position: relative;
    z-index: 1;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image-frame img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 6/7;
    object-fit: cover;
    box-shadow: 0 30px 70px rgba(13, 27, 76, .16);
    transition: transform .6s var(--ease);
}

.about-image:hover .about-image-frame img {
    transform: scale(1.02);
}

.about-image-badge {
    position: absolute;
    bottom: -22px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: .82rem;
    color: var(--gold-deep);
    z-index: 2;
}

.experience-cards {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.experience-card {
    padding: 20px 26px;
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 170px;
    transition: transform .4s var(--ease);
}

.experience-card:hover {
    transform: translateY(-6px);
}

.exp-number {
    display: block;
    font-family: var(--font-numbers);
    font-weight: 700;
    color: var(--royal-blue);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.exp-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy-soft);
}

/* ============ 10. SERVICES (editorial index) ============ */
.services-section {
    background: linear-gradient(180deg, #fff, var(--off-white));
}

.service-index {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 90px 1fr 340px;
    align-items: center;
    gap: 36px;
    padding: 40px 0;
    border-top: 1px solid var(--border-soft);
    transition: background .4s var(--ease);
}

.service-index .service-row:last-child {
    border-bottom: 1px solid var(--border-soft);
}

.service-row:hover {
    background: rgba(255, 255, 255, .5);
}

.service-index-num {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    font-size: 2.2rem;
    color: var(--border-gold);
    transition: color .4s var(--ease);
}

.service-row:hover .service-index-num {
    color: var(--gold);
}

.service-row-body h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.service-row-body p {
    font-size: .96rem;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 46ch;
}

.service-row-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 20px 44px rgba(13, 27, 76, .1);
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.service-row:hover .service-row-image img {
    transform: scale(1.07);
}

.service-row--reverse {
    grid-template-columns: 90px 340px 1fr;
}

.service-row--reverse .service-row-image {
    order: -1;
}

/* ============ 11. CATEGORIES (medallions) ============ */
.categories-section {
    background: var(--gradient-navy);
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(201, 162, 39, .08), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(30, 77, 255, .18), transparent 45%);
    pointer-events: none;
}

.categories-section .eyebrow {
    color: var(--gold-light);
}

.categories-section .eyebrow::before {
    background: var(--gradient-gold);
}

.categories-section .section-title {
    color: #fff;
}

.categories-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 20px;
}

.category-card {
    padding: 28px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .4s var(--ease), background .4s, border-color .4s, box-shadow .4s;
    transform-style: preserve-3d;
    will-change: transform;
}

.category-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--border-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.category-card--lg {
    grid-row: span 2;
    padding: 34px 26px;
}

.category-medallion {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, .1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.category-card--lg .category-medallion {
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
}

.category-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-card--lg h3 {
    font-size: 1.5rem;
}

.category-card p {
    color: rgba(255, 255, 255, .58);
    font-size: .84rem;
    line-height: 1.55;
}

/* ============ 12. HOW IT WORKS ============ */
.how-section {
    background: var(--off-white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 10px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 26px;
    width: 2px;
    background: var(--border-soft);
    z-index: 0;
}

.timeline-progress {
    display: block;
    width: 100%;
    height: 0%;
    background: var(--gradient-gold);
    transition: height .2s linear;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding-bottom: 52px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--royal-blue);
    box-shadow: 0 10px 30px rgba(13, 27, 76, .12);
    border: 1px solid var(--border-soft);
    transition: border-color .4s, transform .4s var(--ease), box-shadow .4s;
    order: -1;
}

.timeline-step:hover .timeline-icon {
    border-color: var(--border-gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 36px rgba(201, 162, 39, .22);
}

.timeline-step-inner {
    padding-top: 6px;
}

.timeline-index {
    display: block;
    font-family: var(--font-numbers);
    color: var(--gold-deep);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.timeline-step h3 {
    font-size: 1.14rem;
    margin-bottom: 6px;
}

.timeline-step p {
    font-size: .92rem;
    color: var(--text-body);
    max-width: 42ch;
}

/* ============ 13. WHY CHOOSE US ============ */
.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.why-image-frame {
    position: relative;
    transform: rotate(-2.4deg);
}

.why-image-frame::before {
    content: '';
    position: absolute;
    inset: -18px -18px -18px 24px;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    transform: rotate(2.4deg);
    z-index: -1;
}

.why-image-frame img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 6/7;
    object-fit: cover;
    box-shadow: 0 30px 70px rgba(13, 27, 76, .16);
}

.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 12px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--navy-soft);
    font-size: .92rem;
}

.check-ring {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, .08);
    border: 1px solid var(--border-gold);
    color: var(--gold-deep);
    flex-shrink: 0;
}

/* ============ 14. OPERATORS ============ */
.operators-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.operators-strip {
    border-radius: var(--radius-lg);
    padding: 34px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.operators-label {
    font-family: var(--font-numbers);
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.operators-row {
    display: flex;
    align-items: center;
    gap: 22px;
}

.operators-divider {
    color: var(--border-gold);
    font-weight: 300;
}

.operator-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
}

.op-jio {
    color: #0A2885;
}

.op-airtel {
    color: #E4002B;
}

.op-vi {
    color: #EE3B36;
    font-style: italic;
}

.op-bsnl {
    color: #0D1B4C;
}

/* ============ 15. BUSINESS SOLUTIONS ============ */
.business-section {
    background: #fff;
    position: relative;
}

.business-ghost-word {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(4rem, 13vw, 10rem);
    color: var(--off-white);
    white-space: nowrap;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.business-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.business-image {
    margin-left: -6%;
}

.business-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/3.2;
    object-fit: cover;
    box-shadow: 0 30px 70px rgba(13, 27, 76, .14);
}

.industry-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    max-width: 420px;
}

.industry-cluster span {
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: var(--ice-blue);
    color: var(--navy-soft);
    font-weight: 600;
    font-size: .84rem;
    transition: background .3s, color .3s, transform .3s;
}

.industry-cluster span:nth-child(3n) {
    background: rgba(201, 162, 39, .1);
    color: var(--gold-deep);
}

.industry-cluster span:hover {
    background: var(--gradient-navy);
    color: var(--gold-light);
    transform: translateY(-3px);
}

/* ============ 16. FEATURED NUMBERS (vault) ============ */
.featured-section {
    background: var(--gradient-navy);
    position: relative;
}

.featured-section .section-head-split {
    border-bottom-color: rgba(255, 255, 255, .12);
}

.vault-scale {
    display: flex;
    justify-content: space-between;
    width: var(--container-w);
    margin: 0 auto 8px;
    padding: 0 2px;
}

.vault-scale span {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, .18);
}

.vault-scale span:nth-child(5n+1) {
    height: 18px;
    background: rgba(201, 162, 39, .4);
}

.featured-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-scroll::-webkit-scrollbar {
    display: none;
}

.featured-track {
    display: flex;
    gap: 22px;
    width: max-content;
    padding-inline: max(1rem, calc((100vw - var(--container-w)) / 2));
}

.featured-card {
    position: relative;
    width: 250px;
    padding: 28px 24px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}

.featured-card::before,
.featured-card::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-top: 1.5px solid var(--gold);
    border-left: 1.5px solid var(--gold);
    top: 10px;
    left: 10px;
    opacity: .7;
}

.featured-card::after {
    top: auto;
    left: auto;
    bottom: 10px;
    right: 10px;
    border-top: none;
    border-left: none;
    border-bottom: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold);
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.chip {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.chip-premium-tag {
    background: rgba(30, 77, 255, .16);
    color: #9DB4FF;
}

.chip-gold-tag {
    background: rgba(201, 162, 39, .18);
    color: var(--gold-light);
}

.chip-vip-tag {
    background: rgba(106, 76, 224, .2);
    color: #C6B7FF;
}

.chip-business-tag {
    background: rgba(30, 138, 77, .2);
    color: #8FE0B2;
}

.chip-lucky-tag {
    background: rgba(209, 69, 69, .2);
    color: #FFAFAF;
}

.featured-number {
    font-family: var(--font-numbers);
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: .02em;
}

.featured-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: .82rem;
}

.featured-card .btn-outline {
    color: var(--gold-light);
    border-color: var(--border-gold);
}

.featured-card .btn-outline:hover {
    background: var(--gradient-gold);
    color: var(--deep-navy);
}

/* ============ 17. STATISTICS (ledger) ============ */
.stats-section {
    background: var(--off-white);
}

.stats-ledger {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    align-items: stretch;
}

.stats-ledger-lead {
    background: var(--gradient-navy);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.stats-ledger-lead::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(201, 162, 39, .18), transparent 55%);
}

.stats-ledger-lead .stat-number {
    font-size: clamp(3rem, 6vw, 4.2rem);
}

.stats-ledger-lead .stat-label {
    color: rgba(255, 255, 255, .68);
    font-size: 1rem;
    max-width: 22ch;
}

.stats-ledger-rest {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}

.stat-mini {
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
}

.stat-mini:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-family: var(--font-numbers);
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-ledger-lead .stat-number {
    -webkit-background-clip: initial;
    background-clip: initial;
    background: none;
    color: var(--gold-light);
}

.stat-label {
    font-weight: 600;
    color: var(--navy-soft);
    font-size: .9rem;
}

/* ============ 18. TESTIMONIALS ============ */
.testimonials-section {
    background: var(--white);
}

.testimonial-slider {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 7rem;
    color: var(--ice-blue);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}

.testimonial-track {
    position: relative;
    z-index: 1;
    display: flex;
    transition: transform .6s var(--ease);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 20px 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.55;
    color: var(--deep-navy);
    max-width: 42ch;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1.5px var(--border-gold), 0 6px 20px rgba(13, 27, 76, .14);
}

.testimonial-person>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--royal-blue);
    font-size: .86rem;
}

.testimonial-person .stars {
    font-size: .74rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-soft);
    transition: all .3s;
}

.slider-dots button.active {
    background: var(--gradient-gold);
    width: 26px;
    border-radius: 99px;
}

/* ============ 19. FAQ ============ */
.faq-section {
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--border-soft);
    transition: background .3s;
}

.faq-list .faq-item:last-child {
    border-bottom: 1px solid var(--border-soft);
}

.faq-item.open {
    background: rgba(255, 255, 255, .5);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 6px;
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 1rem;
    text-align: left;
}

.faq-question svg {
    color: var(--royal-blue);
    flex-shrink: 0;
    transition: transform .35s var(--ease);
}

.faq-item.open .faq-question svg {
    transform: rotate(135deg);
    color: var(--gold-deep);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq-answer p {
    padding: 0 6px 22px;
    line-height: 1.7;
    font-size: .94rem;
}

/* ============ 20. CONTACT ============ */
.contact-section {
    background: var(--off-white);
    position: relative;
}

.contact-shell {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(13, 27, 76, .16);
    background: var(--white);
}

/* ---- Info panel ---- */
.contact-info {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, var(--deep-navy) 0%, #0c1636 100%);
    color: #fff;
    padding: 60px 52px;
    display: flex;
    flex-direction: column;
}

.contact-watermark {
    position: absolute;
    right: -38px;
    bottom: -60px;
    font-size: 12rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    color: var(--gold);
    opacity: .07;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.eyebrow-light {
    color: var(--gold);
}

.contact-title {
    color: #fff;
    margin: 14px 0 18px;
}

.contact-lead {
    color: rgba(255, 255, 255, .68);
    font-size: .98rem;
    line-height: 1.7;
    max-width: 38ch;
    margin-bottom: 34px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px 0;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-detail {
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: baseline;
    gap: 12px;
}

.contact-detail-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-detail p,
.contact-detail a {
    font-size: .98rem;
    line-height: 1.6;
    color: #fff;
}

.contact-detail a {
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    transition: border-color .3s, color .3s;
}

.contact-detail a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.contact-info .contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-info .btn-primary {
    background: var(--gold);
    color: var(--deep-navy);
    border: 1px solid var(--gold);
}

.contact-info .btn-whatsapp {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
}

.contact-info .btn-whatsapp:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---- Form panel ---- */
.contact-form {
    padding: 60px 52px;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.form-kicker {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--royal-blue);
}

.contact-form h3 {
    font-size: 1.55rem;
    margin: 10px 0 32px;
    color: var(--deep-navy);
}

.form-row {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-row input,
.form-row textarea {
    padding: 11px 2px;
    border: none;
    border-bottom: 1.5px solid var(--border-soft);
    background: transparent;
    border-radius: 0;
    font-size: .98rem;
    color: var(--deep-navy);
    transition: border-color .3s;
    resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #b6bad0;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.form-note {
    margin-top: 16px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--royal-blue);
    min-height: 1.2em;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .contact-shell {
        grid-template-columns: 1fr;
        border-radius: var(--radius-lg);
    }

    .contact-info,
    .contact-form {
        padding: 44px 30px;
    }

    .contact-watermark {
        font-size: 7rem;
        right: -20px;
        bottom: -30px;
    }
}

/* ============ 21. FOOTER ============ */
.footer {
    background: var(--gradient-navy);
    color: rgba(255, 255, 255, .75);
    padding-top: 72px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, .5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
}

.footer .nav-logo-text {
    color: #fff;
}

.footer .nav-logo-text small {
    color: rgba(255, 255, 255, .55);
}

.footer-brand p {
    margin: 16px 0 20px;
    font-size: .9rem;
    line-height: 1.6;
    max-width: 32ch;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    transition: background .3s, transform .3s;
}

.social-icons a:hover {
    background: var(--gradient-gold);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-numbers);
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: .88rem;
    transition: color .3s;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .82rem;
}

/* ============ 22. BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(30, 77, 255, .35);
    opacity: 0;
    transform: translateY(20px) scale(.8);
    pointer-events: none;
    transition: all .4s var(--ease);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(201, 162, 39, .4);
}

/* ============ 23. REVEAL / SCROLL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal[data-reveal="up"] {
    transform: translateY(36px);
}

.reveal[data-reveal="left"] {
    transform: translateX(-46px);
}

.reveal[data-reveal="right"] {
    transform: translateX(46px);
}

.reveal[data-reveal="scale"] {
    transform: scale(.94);
}

.reveal[data-delay="1"] {
    transition-delay: .08s;
}

.reveal[data-delay="2"] {
    transition-delay: .16s;
}

.reveal[data-delay="3"] {
    transition-delay: .24s;
}

.reveal[data-delay="4"] {
    transition-delay: .32s;
}

.reveal[data-delay="5"] {
    transition-delay: .4s;
}

.reveal.in-view {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* tilt-on-hover utility, driven by JS setting --rx/--ry */
.tilt-card {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
    transition: transform .5s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}

.tilt-card.tilt-active {
    transition: transform .15s ease-out, box-shadow .4s var(--ease), border-color .4s;
}

/* ============ 24. RESPONSIVE ============ */
@media (max-width: 1080px) {

    .about-grid,
    .why-grid,
    .business-grid,
    .contact-grid,
    .faq-grid,
    .stats-ledger {
        grid-template-columns: 1fr;
    }

    .stats-ledger-rest {
        grid-template-rows: none;
        grid-template-columns: repeat(3, 1fr);
    }

    .about-image,
    .why-image-frame {
        max-width: 460px;
        margin: 0 auto;
    }

    .about-ghost-number {
        display: none;
    }

    .service-row,
    .service-row--reverse {
        grid-template-columns: 60px 1fr;
    }

    .service-row-image {
        grid-column: 1 / -1;
        order: 0 !important;
        aspect-ratio: 16/8;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-card--lg {
        grid-row: span 1;
    }

    .business-image {
        margin-left: 0;
    }

    .business-ghost-word {
        display: none;
    }

    .faq-intro {
        position: static;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-ledger {
        justify-content: center;
    }

    .hero-rule-mark {
        display: none;
    }

    .hero-visual {
        margin-top: 20px;
    }
}

@media (max-width: 760px) {
    .nav-links {
        position: fixed;
        top: 78px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 20px 60px rgba(13, 27, 76, .18);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: all .35s var(--ease);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        padding: 12px 14px;
        border-radius: var(--radius-sm);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .stats-ledger-rest {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .operators-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .checklist {
        grid-template-columns: 1fr;
    }

    .industry-cluster {
        max-width: none;
    }

    .contact-form {
        padding: 30px 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .phone-stage {
        width: min(300px, 82vw);
    }

    .phone-ghost {
        display: none;
    }

    .section-head-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .phone-mockup {
        width: min(250px, 72vw);
    }

    .float-chip {
        font-size: .64rem;
        padding: 7px 10px;
    }

    .chip-vip {
        left: -6%;
    }

    .chip-gold {
        left: -8%;
    }

    .chip-premium {
        right: -6%;
    }

    .chip-business {
        right: -8%;
    }

    .service-row {
        gap: 18px;
        padding: 28px 0;
    }
}