:root {
    --primary: #1F3BFF;
    --primary-hover: #152bd6;
    --primary-light: rgba(31, 59, 255, 0.08);
    --bg-dark: #0C0D10;
    --bg-light: #F5F4EF;
    --text-dark: #3A3B3E;
    --text-light: #56575B;
    --text-muted: #9A9B9F;
    --border-light: rgba(12, 13, 16, 0.10);
    --border-lighter: rgba(12, 13, 16, 0.06);
    --hover-overlay: rgba(12, 13, 16, 0.05);
    
    --font-sans: "Hanken Grotesk", system-ui, sans-serif;
    --font-heading: "Bricolage Grotesque", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--bg-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: var(--primary);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

#quote input,
#quote textarea {
    transition: border-color 0.2s, box-shadow 0.2s;
}

#quote input:focus,
#quote textarea:focus {
    outline: none;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(31, 59, 255, 0.2);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 240px;
    box-shadow: 0 16px 40px rgba(12, 13, 16, 0.15);
    border-radius: 16px;
    padding: 8px;
    z-index: 200;
    padding-top: 20px;
    margin-top: 0;
    border: 1px solid var(--border-lighter);
}

.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-content a:hover {
    background: var(--hover-overlay);
    color: var(--bg-dark);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes nvpulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: .35;
    }
}

@keyframes nvmarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes grid-waves {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1.05);
    }
    50% {
        transform: translateY(12px) rotate(0.5deg) scale(1.05);
    }
    100% {
        transform: translateY(0px) rotate(0deg) scale(1.05);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.hero-grid::before {
    content: "";
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(to right, rgba(12, 13, 16, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(12, 13, 16, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    background-position: center top;
    -webkit-mask-image: radial-gradient(circle 500px at var(--mouse-x) var(--mouse-y), black 10%, transparent 100%);
    mask-image: radial-gradient(circle 500px at var(--mouse-x) var(--mouse-y), black 10%, transparent 100%);
    animation: grid-waves 10s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
    .hero-grid::before {
        animation: none;
        opacity: 0.6;
        background-size: 50px 50px;
        -webkit-mask-image: radial-gradient(circle at center, transparent 40%, black 100%);
        mask-image: radial-gradient(circle at center, transparent 40%, black 100%);
    }
}

@media (pointer: fine) {
    body {
        cursor: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L18.5 8.5L10.5 10.5L8.5 18.5L2 2Z" fill="%230C0D10" stroke="white" stroke-width="1.5" stroke-linejoin="round"/></svg>') 2 2, auto !important;
    }

    a,
    button,
    [style-hover],
    input,
    textarea {
        cursor: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L18.5 8.5L10.5 10.5L8.5 18.5L2 2Z" fill="%231F3BFF" stroke="white" stroke-width="1.5" stroke-linejoin="round"/></svg>') 2 2, pointer !important;
    }
}

/* NAVIGATION */
.nv-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 8px 8px 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(12, 13, 16, 0.08);
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(12, 13, 16, 0.10);
    max-width: calc(100vw - 28px);
}

.nv-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 18px;
    margin-right: 6px;
    border-right: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
}

.nv-logo-img {
    height: 22px;
    width: auto;
    display: inline-block;
}

.nv-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nv-nav-link {
    padding: 9px 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nv-nav-link:hover {
    background: var(--hover-overlay);
    color: var(--bg-dark);
}

.nv-nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 240px;
    box-shadow: 0 12px 32px rgba(12, 13, 16, 0.12);
    z-index: 100;
    border-radius: 12px;
    padding: 12px 0;
    padding-top: 20px;
    border: 1px solid rgba(12, 13, 16, 0.08);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: flex;
    flex-direction: column;
}

.nav-dropdown-content a {
    color: var(--text-dark);
    padding: 10px 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-content a:hover {
    background: var(--hover-overlay);
}

.nv-nav-offer {
    padding: 9px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary);
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.2s;
}

.nv-nav-offer:hover {
    background: var(--primary-light);
}

.nv-nav-cta {
    padding: 10px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    background: var(--bg-dark);
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.2s;
}

.nv-nav-cta:hover {
    background: var(--primary);
}

/* Desktop and Hamburger Navigation */
.nv-nav-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nv-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 102; /* Above the overlay */
}

.nv-hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Hamburger Animation State */
.nv-nav.menu-open .nv-hamburger span:nth-child(1) {
    transform: rotate(45deg);
}
.nv-nav.menu-open .nv-hamburger span:nth-child(2) {
    opacity: 0;
}
.nv-nav.menu-open .nv-hamburger span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.nv-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99; /* Below nav bar (100) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nv-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.nv-mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nv-mobile-menu.is-open .nv-mobile-menu-inner {
    transform: translateY(0);
}

.nv-mobile-link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}

.nv-mobile-link:hover {
    color: var(--primary);
}

.nv-mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nv-mobile-dropdown-btn {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    background: none;
    border: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nv-mobile-dropdown-content {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.nv-mobile-dropdown.is-open .nv-mobile-dropdown-content {
    display: flex;
}

.nv-mobile-dropdown-content a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
}

.nv-mobile-offer {
    color: var(--primary);
}

.nv-mobile-cta {
    margin-top: 16px;
    padding: 16px 32px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
}

/* Media Queries for Nav */
@media (max-width: 1024px) {
    .nv-nav-desktop {
        display: none;
    }
    .nv-hamburger {
        display: flex;
    }
    .nv-nav {
        justify-content: space-between;
        padding-right: 18px;
    }
    .nv-logo-link {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }
}

/* HERO SECTION */
.hero-section {
    padding: 132px 24px 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #E8E9F0;
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(42px, 7.4vw, 98px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin: 0 auto;
    max-width: 14ch;
    text-wrap: balance;
}

.hero-title-highlight {
    color: var(--primary);
}

.hero-subtitle {
    max-width: 50ch;
    margin: 30px auto 0;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.5;
    color: var(--text-light);
    text-wrap: pretty;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 30px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 10px 26px rgba(31, 59, 255, 0.30);
    transition: background 0.2s, box-shadow 0.2s;
}

.hero-btn-primary:hover {
    background: var(--bg-dark);
    box-shadow: 0 10px 26px rgba(12, 13, 16, 0.25);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 30px;
    background: #fff;
    color: var(--bg-dark);
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(12, 13, 16, 0.12);
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
}

.hero-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-trust-metrics {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
    font-size: 14.5px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-highlight {
    color: var(--bg-dark);
    font-weight: 700;
}

.hero-trust-divider {
    opacity: 0.4;
}

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

/* LOGO MARQUEE */
.logo-marquee-section {
    padding: 32px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(12, 13, 16, 0.08);
    border-bottom: 1px solid rgba(12, 13, 16, 0.08);
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.marquee-logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    mix-blend-mode: multiply;
}

.marquee-logo-lg {
    height: 52px; /* Made Nsight logo bigger */
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    mix-blend-mode: multiply;
}

/* SERVICES SECTION */
.section-white {
    background: #fff;
    padding: 104px 24px;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.section-badge {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0;
    max-width: 16ch;
}

.section-desc {
    max-width: 34ch;
    font-size: 16.5px;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(12, 13, 16, 0.10);
}

.service-card {
    padding: 40px 32px 40px 0;
    border-right: 1px solid rgba(12, 13, 16, 0.10);
}

.service-card.center {
    padding: 40px 32px;
}

.service-card.last {
    padding: 40px 0 40px 32px;
    border-right: none;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -0.02em;
    margin: 18px 0 12px;
}

.service-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-list-item {
    font-size: 14.5px;
    color: var(--text-dark);
    display: flex;
    gap: 9px;
}

.service-list-icon {
    color: var(--primary);
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s;
}
.service-link:hover {
    text-decoration: underline;
}

/* Mobile Service Carousel */
@media (max-width: 768px) {
    .service-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 24px;
        border-top: none;
        margin: 0 -24px; /* bleed to edge */
        padding: 0 24px 24px 24px;
        scrollbar-width: none;
    }
    
    .service-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card,
    .service-card.center,
    .service-card.last {
        flex: 0 0 85%;
        scroll-snap-align: center;
        border: 1px solid rgba(12, 13, 16, 0.10);
        border-radius: 16px;
        padding: 32px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(12, 13, 16, 0.04);
    }
}

/* METRICS / RESULTS SECTION */
.section-dark {
    background: var(--bg-dark);
    color: #fff;
    padding: 104px 24px;
}

.metrics-badge {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6E7CFF;
    margin-bottom: 18px;
}

.metrics-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0 0 64px;
    max-width: 18ch;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.metric-card {
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metric-card.center {
    padding: 0 28px;
}

.metric-card.last {
    padding-left: 28px;
    border-right: none;
}

@media (max-width: 768px) {
    .section-dark {
        padding: 72px 24px;
    }
    .metrics-title {
        margin-bottom: 48px;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .metric-card, .metric-card.center, .metric-card.last {
        padding: 32px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .metric-card {
        padding-top: 0;
    }
    .metric-card.last {
        padding-bottom: 0;
        border-bottom: none;
    }
}

.metric-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(46px, 6vw, 76px);
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.metric-value-highlight {
    color: #6E7CFF;
}

.metric-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.4;
}

/* PROCESS SECTION */
.process-section {
    background: var(--bg-light);
    padding: 104px 24px;
}

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

.process-badge {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.process-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0 0 60px;
    max-width: 16ch;
}

.process-list {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr 1.4fr;
    gap: 24px;
    align-items: baseline;
    padding: 30px 0;
    border-top: 1px solid rgba(12, 13, 16, 0.12);
}

.process-step.last {
    border-bottom: 1px solid rgba(12, 13, 16, 0.12);
}

.process-step-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 34px;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.process-step-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.02em;
    margin: 0;
}

.process-step-desc {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .process-section {
        padding: 72px 24px;
    }
    .process-title {
        margin-bottom: 40px;
    }
    .process-step {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }
    .process-step-num {
        font-size: 28px;
    }
}

/* OFFER SECTION */
.offer-section {
    background: var(--primary);
    color: #fff;
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
}

.offer-container {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

.offer-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #fff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
}

.offer-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: nvpulse 1.4s ease-in-out infinite;
}

.offer-scarcity {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 56px;
    align-items: center;
}

.offer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}

.offer-desc {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 28px;
    max-width: 46ch;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 22px;
}

.offer-list-item {
    font-size: 15.5px;
    font-weight: 500;
    display: flex;
    gap: 10px;
}

.offer-list-icon {
    color: #fff;
}

.offer-card {
    background: #fff;
    color: var(--bg-dark);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.offer-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.offer-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 60px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.offer-price-old {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-price-sub {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 6px;
}

.offer-timer-section {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(12, 13, 16, 0.10);
}

.offer-timer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 9px;
}

.offer-timer-alert {
    color: #FF3B30;
}

.offer-timer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.offer-timer-box {
    text-align: center;
    background: var(--bg-dark);
    color: #fff;
    border-radius: 11px;
    padding: 11px 4px;
}

.offer-timer-box-highlight {
    text-align: center;
    background: var(--primary);
    color: #fff;
    border-radius: 11px;
    padding: 11px 4px;
}

.offer-timer-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.offer-timer-label {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
}

.offer-timer-label-light {
    color: rgba(255, 255, 255, 0.75);
}

.offer-spots {
    margin-top: 20px;
}

.offer-spots-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.offer-spots-label {
    color: var(--bg-dark);
}

.offer-spots-alert {
    color: #FF3B30;
}

.offer-spots-bar {
    height: 9px;
    background: rgba(12, 13, 16, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.offer-spots-fill {
    height: 100%;
    width: 80%;
    background: #FF3B30;
    border-radius: 100px;
    transition: width 0.3s ease;
}

.offer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    padding: 17px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    transition: background 0.2s;
}

.offer-btn:hover {
    background: var(--bg-dark);
}

.offer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.trust-secure {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: var(--text-light);
}

.trust-secure svg {
    color: var(--primary);
}

.trust-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-logo {
    height: 18px;
    width: 18px;
    aspect-ratio: 1;
    opacity: 0.85;
}

.offer-steps {
    margin-top: 24px;
    padding: 18px;
    background: rgba(12, 13, 16, 0.03);
    border-radius: 14px;
    text-align: left;
}

.offer-steps-title {
    font-weight: 700;
    font-size: 12px;
    color: var(--bg-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.offer-steps-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-light);
}

.offer-step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.offer-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.offer-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-top: 20px;
}

/* Offer Section Mobile */
@media (max-width: 900px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
@media (max-width: 768px) {
    .offer-section {
        padding: 72px 24px;
    }
    .offer-title {
        font-size: clamp(34px, 8vw, 42px);
    }
    .offer-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .offer-card {
        padding: 24px;
    }
    .offer-price {
        font-size: 52px;
    }
}

/* TESTIMONIALS SECTION */
.section-light {
    background: var(--bg-light);
    padding: 104px 24px;
}

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

.testimonial-quote {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-avatar-dark {
    background: var(--bg-dark);
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-role {
    font-size: 13.5px;
    color: var(--text-light);
}

/* Mobile Testimonials Carousel */
@media (max-width: 768px) {
    .section-light {
        padding: 72px 24px;
    }
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 24px;
        padding-bottom: 24px;
        margin: 0 -24px;
        padding: 0 24px 24px 24px;
        scrollbar-width: none;
    }
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    .testimonials-grid > div {
        flex: 0 0 85%;
        scroll-snap-align: center;
        background: #fff;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(12, 13, 16, 0.04);
    }
    .testimonial-quote {
        font-size: 18px;
    }
}

/* FAQ SECTION */
.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-list details > summary {
    list-style: none;
}

.faq-list details > summary::-webkit-details-marker {
    display: none;
}

.faq-list details[open] summary .faq-icon::before {
    content: '–';
}

.faq-list details:not([open]) summary .faq-icon::before {
    content: '+';
}

.faq-item {
    border-top: 1px solid rgba(12, 13, 16, 0.12);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(12, 13, 16, 0.12);
}

.faq-details {
    width: 100%;
}

.faq-summary {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--bg-dark);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(12, 13, 16, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}

.faq-answer {
    margin: 0;
    padding: 0 0 26px;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 64ch;
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.blog-section {
    background: var(--bg-light);
    padding: 120px 24px;
}

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

.blog-header {
    text-align: left;
    margin-bottom: 48px;
}

.blog-badge {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 12px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.03em;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(12, 13, 16, 0.05);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background-color: var(--bg-light);
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}

/* ==========================================================================
   QUOTE / CONTACT
   ========================================================================== */
.quote-section {
    background: var(--bg-dark);
    color: #fff;
    padding: 104px 24px;
}

.quote-container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.quote-badge {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6E7CFF;
    margin-bottom: 18px;
}

.quote-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
    max-width: 14ch;
}

.quote-desc {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0 0 40px;
    max-width: 42ch;
}

.quote-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6E7CFF;
}

.quote-info-label {
    font-size: 13px;
    color: var(--text-muted);
}

.quote-info-text {
    font-size: 16px;
    font-weight: 600;
}

.quote-form-card {
    background: #16171B;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    padding: 34px;
}

.quote-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.quote-input, .quote-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
}

.quote-input {
    margin-bottom: 18px;
}

.quote-textarea {
    margin-bottom: 22px;
    resize: vertical;
}

.quote-submit {
    width: 100%;
    padding: 17px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.quote-submit:hover {
    background: #fff;
    color: var(--primary);
}

.quote-hint {
    text-align: center;
    font-size: 12.5px;
    color: #6E6F74;
    margin-top: 13px;
}

/* Quote Section Mobile */
@media (max-width: 900px) {
    .quote-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
@media (max-width: 768px) {
    .quote-section {
        padding: 72px 24px;
    }
    .quote-title {
        font-size: clamp(34px, 8vw, 42px);
    }
    .quote-form-card {
        padding: 24px;
    }
    
    .blog-section {
        padding: 72px 24px;
    }
    .blog-header {
        margin-bottom: 32px;
    }
    .blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .blog-grid::-webkit-scrollbar {
        display: none;
    }
    .blog-card {
        min-width: 85vw;
        scroll-snap-align: center;
    }
}

/* FOOTER SECTION */
.footer {
    background: #08090B;
    color: var(--text-muted);
    padding: 46px 24px;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.footer-logo-dot {
    width: 11px;
    height: 11px;
    border-radius: 3px;
    background: var(--primary);
    display: inline-block;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-copy {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 22px;
    font-size: 14px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}
