/* ══════════════════════════════════════════════════
   index.css — ZSM Digital Homepage
   Hero, bento grid, services, stats, pricing, FAQ, CTA
   ══════════════════════════════════════════════════ */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        var(--bg-color);
}

/* Statue background element — architectural engraving from darkness */
.hero-statue-bg {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 70vh;
    height: 110%;
    background: url('/static/images/greek-god.png') center top / contain no-repeat;
    opacity: 0.055;
    filter: grayscale(1) contrast(1.6) brightness(0.9);
    z-index: 0;
    pointer-events: none;
    mask-image:
        linear-gradient(to right, transparent 0%, black 30%, black 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 65%, transparent 92%);
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 30%, black 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 65%, transparent 92%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

/* Dot texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 72%);
}

/* Subtle glow accent */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.015) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.03em;
    font-style: italic;
}

.hero h1 strong {
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.website-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 20px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    min-width: 280px;
    font-weight: 400;
}

.website-input::placeholder {
    color: #666;
    font-weight: 400;
}

.website-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.quote-btn {
    background: white;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.quote-btn:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
    font-weight: 400;
}

/* ── Bento Reviews Grid ── */
.bento-reviews {
    padding: 0 20px 120px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-color);
}

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

.bento-cell {
    position: relative;
    background: var(--card-bg-top);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.bento-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.015) 100%);
    pointer-events: none;
}

.bento-cell:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) translateZ(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Grid spans */
.bento-featured   { grid-column: span 2; grid-row: span 2; }
.bento-stat       { grid-column: span 1; grid-row: span 1; }
.bento-tall        { grid-column: span 1; grid-row: span 2; }
.bento-wide        { grid-column: span 2; grid-row: span 1; }

/* Micro-labels */
.bento-label {
    font-family: 'Inter', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.bento-big-num {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1;
}

.bento-review-text {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
}

.bento-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.bento-avatar {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: #111;
}

.bento-user-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.bento-user-role {
    font-size: 11px;
    color: var(--text-muted);
}

.bento-progress {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    width: 100%;
    position: relative;
    margin-top: 14px;
}

.bento-progress-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    background: #fff;
}

.bento-tag {
    font-size: 10px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-muted);
    width: fit-content;
}

.bento-dots {
    display: flex;
    gap: 4px;
}

.bento-dot {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
}

/* Entrance animation */
@keyframes bentoReveal {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bento-cell {
    opacity: 0;
    transform: translateY(24px);
}

.bento-cell.revealed {
    animation: bentoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bento-cell:nth-child(1) { animation-delay: 0.05s; }
.bento-cell:nth-child(2) { animation-delay: 0.12s; }
.bento-cell:nth-child(3) { animation-delay: 0.19s; }
.bento-cell:nth-child(4) { animation-delay: 0.26s; }
.bento-cell:nth-child(5) { animation-delay: 0.33s; }
.bento-cell:nth-child(6) { animation-delay: 0.40s; }
.bento-cell:nth-child(7) { animation-delay: 0.47s; }

/* Responsive — tablet */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-featured { grid-column: span 2; grid-row: span 1; }
    .bento-tall { grid-column: span 1; grid-row: span 1; }
}

/* Responsive — mobile: 1 tall left + 2 small right, rest hidden */
@media (max-width: 540px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    /* Reset all auto-spans */
    .bento-cell {
        grid-column: auto;
        grid-row: auto;
        padding: 20px;
    }
    /* Featured: tall left column, both rows */
    .bento-cell:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
    /* Satisfaction stat: top right */
    .bento-cell:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    /* Retention stat: bottom right */
    .bento-cell:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
    /* Hide everything else */
    .bento-cell:nth-child(3),
    .bento-cell:nth-child(5),
    .bento-cell:nth-child(6),
    .bento-cell:nth-child(7) {
        display: none;
    }
    .bento-review-text { font-size: 15px; }
}

/* Services Section - Dark Card Style */
.services {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-color);
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.services h2 .highlight {
    color: #fff;
    font-weight: 300;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}


/* Service Card Styles from online_viewer_net.htm */
.service-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-visual-section {
    flex: 0 0 240px;
    overflow: hidden;
    background: radial-gradient(circle at center bottom, #1a1a1a 0%, var(--card-bg-top) 70%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-visual-section::after {
    content: '';
    position: absolute;
    inset: 12px;
    pointer-events: none;
    background:
        linear-gradient(to right, #666 1px, transparent 1px) 0 0,
        linear-gradient(to bottom, #666 1px, transparent 1px) 0 0,
        linear-gradient(to left, #666 1px, transparent 1px) 100% 0,
        linear-gradient(to bottom, #666 1px, transparent 1px) 100% 0,
        linear-gradient(to right, #666 1px, transparent 1px) 0 100%,
        linear-gradient(to top, #666 1px, transparent 1px) 0 100%,
        linear-gradient(to left, #666 1px, transparent 1px) 100% 100%,
        linear-gradient(to top, #666 1px, transparent 1px) 100% 100%;
    background-size: 8px 8px;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.service-top-notch {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 16px;
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0b);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-glow-dome {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    background: radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.service-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(20, 20, 23, 0.95) 0%, rgba(10, 10, 12, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 24px;
    margin-top: -14px;
    position: relative;
    z-index: 2;
}

.service-tab-handle {
    position: absolute;
    top: -24px;
    left: -1px;
    width: 130px;
    height: 25px;
    background: linear-gradient(to bottom, rgba(30, 30, 35, 1), rgba(20, 20, 23, 0.95));
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    z-index: 1;
}

.service-tab-handle::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: -10px;
    width: 10px;
    height: 10px;
    background: transparent;
    box-shadow: -4px 4px 0 0 rgba(20, 20, 23, 0.95);
    border-bottom-left-radius: 10px;
}

.service-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 128px;
    height: 2px;
    background: rgba(20, 20, 23, 0.95);
    z-index: 5;
}

.service-content-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    margin-top: 4px;
}

.service-content-section p {
    font-size: 14px;
    line-height: 1.5;
    color: #9CA3AF;
}

/* Service Card Visuals */

/* Card 1: Browser Mockup for Web Design */
.browser-mockup {
    width: 180px;
    height: 130px;
    background: #0f0f0f;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.browser-header {
    height: 24px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
}

.browser-dots {
    display: flex;
    gap: 4px;
}

.browser-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
}

.browser-dots span:nth-child(1) {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27ca40;
}

.browser-bar {
    flex: 1;
    height: 12px;
    background: #0a0a0a;
    border-radius: 4px;
    margin-left: 8px;
}

.browser-content {
    padding: 10px;
}

.mockup-header {
    height: 12px;
    background: linear-gradient(90deg, #444 0%, #333 50%, #444 100%);
    border-radius: 2px;
    margin-bottom: 6px;
    width: 60%;
}

.mockup-nav {
    height: 6px;
    background: #222;
    border-radius: 2px;
    margin-bottom: 10px;
    width: 100%;
}

.mockup-hero {
    height: 30px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: 4px;
    margin-bottom: 8px;
    border: 1px solid #333;
}

.mockup-grid {
    display: flex;
    gap: 6px;
}

.mockup-grid div {
    flex: 1;
    height: 20px;
    background: #1a1a1a;
    border-radius: 3px;
    border: 1px solid #2a2a2a;
}

/* Card 2: E-commerce Visual */
.ecommerce-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cart-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.product-cards {
    display: flex;
    gap: 12px;
}

.product-card {
    width: 65px;
    height: 85px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-img {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: 4px;
}

.product-price {
    height: 10px;
    background: #333;
    border-radius: 2px;
    width: 70%;
}

/* Card 3: Analytics Visual */
.analytics-visual {
    position: relative;
    width: 180px;
    height: 120px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    padding-bottom: 10px;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.15));
    border-radius: 3px;
    position: relative;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    opacity: 0;
}

.bar-1 {
    height: 30%;
    opacity: 0.5;
}

.bar-2 {
    height: 50%;
    opacity: 0.6;
}

.bar-3 {
    height: 75%;
    opacity: 0.8;
}

.bar-4 {
    height: 60%;
    opacity: 0.7;
}

.bar-5 {
    height: 90%;
    opacity: 1;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.bar-5::before {
    opacity: 1;
}

.trend-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
}

.trend-line svg {
    width: 100%;
    height: 100%;
}

/* Card 4: Support Network Visual */
.support-visual {
    position: relative;
    width: 200px;
    height: 140px;
}

.support-network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.support-network-lines line {
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1;
}

.support-node {
    width: 30px;
    height: 30px;
    background: #0f0f0f;
    border: 1px solid #555;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.support-node svg {
    width: 14px;
    height: 14px;
    fill: #ccc;
}

.support-node.n1 {
    top: 10px;
    left: 40px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border-color: #888;
}

.support-node.n1 svg {
    fill: white;
}

.support-node.n2 {
    top: 10px;
    right: 40px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border-color: #888;
}

.support-node.n2 svg {
    fill: white;
}

.support-node.n3 {
    top: 50px;
    left: 10px;
}

.support-node.n4 {
    top: 50px;
    right: 10px;
}

.support-node.n5 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.support-node.center-node {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: #aaa;
    width: 36px;
    height: 36px;
}

.support-node.center-node svg {
    fill: white;
    width: 18px;
    height: 18px;
}

/* Stats Section */
.stats {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    isolation: isolate;
}

.stats .ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

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

.stats h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.stats h2 .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats p {
    color: #888;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    perspective: 1000px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.visible {
    animation: statFadeInUp 0.8s forwards;
}

.stat-card.visible:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-card.visible:nth-child(2) {
    animation-delay: 0.3s;
}

.stat-card.visible:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-card.visible:nth-child(4) {
    animation-delay: 0.5s;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-card:hover .stat-icon {
    background: #fff;
    color: #000;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ── Performance Card Visuals ── */

/* Card 1: Speed Dial */
.perf-speed-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-dial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.speed-dial-svg {
    width: 140px;
    height: 82px;
}

.speed-arc {
    animation: arcDraw 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes arcDraw {
    from {
        stroke-dashoffset: 157;
    }

    to {
        stroke-dashoffset: 55;
    }
}

.speed-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: -0.03em;
}

/* Card 2: Core Web Vitals Bars */
.perf-vitals-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.vitals-bars {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.vital-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vital-item span {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vital-bar-wrap {
    width: 28px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.vital-bar {
    width: 100%;
    border-radius: 4px;
    animation: barGrow 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.vb-lcp {
    height: 0;
    background: linear-gradient(180deg, #22c55e, #16a34a);
    animation-delay: 0.1s;
    --bar-h: 85%;
}

.vb-fid {
    height: 0;
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    animation-delay: 0.2s;
    --bar-h: 70%;
}

.vb-cls {
    height: 0;
    background: linear-gradient(180deg, #a78bfa, #7c3aed);
    animation-delay: 0.3s;
    --bar-h: 60%;
}

@keyframes barGrow {
    from {
        height: 0;
    }

    to {
        height: var(--bar-h);
    }
}

.vitals-pass-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: #22c55e;
    font-size: 12px;
    font-weight: 600;
}

.vitals-pass-badge svg {
    width: 14px;
    height: 14px;
}

/* Card 3: Analytics Visual */
.perf-analytics-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.analytics-tags {
    display: flex;
    gap: 8px;
}

.atag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 11px;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Card 4: Stack Pills */
.perf-stack-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stack-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.stack-pill {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid;
}

.sp-flask {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
}

.sp-next {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.sp-tw {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
    color: #7dd3fc;
}

.stack-connector {
    width: 1px;
    height: 16px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.stack-result {
    padding: 5px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes statFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Performance Section – Graphic Colour Overrides (white/grey on dark) ── */
.stats .speed-label {
    color: #e0e0e0;
}

.stats .vb-lcp {
    background: linear-gradient(180deg, #ffffff, #cccccc);
}

.stats .vb-fid {
    background: linear-gradient(180deg, #cccccc, #aaaaaa);
}

.stats .vb-cls {
    background: linear-gradient(180deg, #999999, #777777);
}

.stats .vitals-pass-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #dddddd;
}

.stats .atag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cccccc;
}

.stats .sp-flask,
.stats .sp-next,
.stats .sp-tw {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
}

.stats .stack-result {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaaaaa;
}

/* ── Global Scroll-Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children delays */
.stagger-children>.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children>.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children>.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children>.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children>.reveal:nth-child(5) {
    transition-delay: 0.5s;
}

/* ── Enhanced Card Glow Hover ── */
.glow-hover {
    position: relative;
}

.glow-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.glow-hover:hover::after {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 64px 56px;
    max-width: 620px;
    width: 100%;
    text-align: center;
    overflow: hidden;
    transition: border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta-card:hover::after {
    opacity: 1;
}

.cta-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.cta-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.cta-section-badge-dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.02em;
}

.cta-desc {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.65;
}

.cta-form-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.cta-form-stack .website-input {
    width: 100%;
    min-width: unset;
}

.cta-form-stack .quote-btn {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.02em;
    margin-top: 4px;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 24px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #555;
}

.cta-trust-item svg {
    width: 11px;
    height: 11px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-color);
}

.pricing h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.pricing h2 .highlight {
    font-weight: 300;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pricing-card.premium {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.premium::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.plan-period {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.plan-description {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 28px;
    flex-grow: 1;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 8px 0;
    color: #999;
    position: relative;
    padding-left: 24px;
    font-size: 0.85rem;
}

.plan-features li::before {
    content: '✓';
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.plan-button {
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
    font-size: 14px;
}

.plan-button.primary {
    background: white;
    color: #000;
}

.plan-button.primary:hover {
    background: #e5e5e5;
}

.plan-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.plan-button.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* FAQ Section */
.faq {
    padding: 120px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 50px;
}

/* Final CTA */
.final-cta {
    background: rgba(255, 255, 255, 0.02);
    margin: 80px 20px;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    transition: border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.final-cta:hover::after {
    opacity: 1;
}

.final-cta:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.final-cta p {
    color: #888;
    margin-bottom: 36px;
    font-size: 1rem;
}

/* ══════════════════════════════════════════════════
   Quote Modal
   ══════════════════════════════════════════════════ */
#quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#quote-modal-overlay.active {
    opacity: 1;
}

#quote-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 9999;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(14, 14, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
    flex-direction: column;
}

#quote-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#quote-modal form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-header {
    padding: 32px 32px 0;
    position: relative;
    text-align: center;
}

.modal-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close-x:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}

.modal-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.modal-header h2 strong {
    font-weight: 600;
}

.modal-header p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.modal-body {
    padding: 28px 32px 8px;
}

.modal-field {
    margin-bottom: 16px;
}

.modal-field label {
    display: block;
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 400;
}

.modal-body .website-input {
    width: 100%;
    min-width: unset;
    box-sizing: border-box;
}

.modal-body .form-privacy-notice {
    margin: 16px 0 4px;
}

.modal-body .form-consent-check {
    margin: 12px 0 16px;
}

.modal-submit-btn {
    width: 100%;
    background: white;
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-submit-btn:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}

.modal-footer {
    padding: 8px 32px 24px;
    text-align: center;
}

.modal-cancel-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px 16px;
    font-family: inherit;
    transition: color 0.2s ease;
}

.modal-cancel-btn:hover {
    color: #aaa;
}

#modal-feedback {
    margin-top: 12px;
    font-size: 0.85rem;
}

/* GDPR consent */
.form-privacy-notice {
    margin: 14px 0 4px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.78rem;
    color: #777;
    line-height: 1.6;
}

.form-privacy-notice a {
    color: #aaa;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-privacy-notice a:hover {
    color: #fff;
}

.form-consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0;
    cursor: pointer;
}

.form-consent-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s ease;
}

.form-consent-check input[type="checkbox"]:checked {
    background: #fff;
    border-color: #fff;
}

.form-consent-check input[type="checkbox"]:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 12px;
    font-weight: 700;
}

.form-consent-check span {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.form-consent-check span a {
    color: #aaa;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-consent-check span a:hover {
    color: #fff;
}


/* ── Responsive ── */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-statue-bg {
        width: 50vh;
        right: -5%;
        opacity: 0.10;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

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

    .stat-card {
        padding: 30px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .website-input {
        min-width: 100%;
    }

    .quote-btn {
        width: 100%;
    }

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

    .device-container {
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 11px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .pricing-grid {
        padding: 0 10px;
    }

    .cta-section {
        padding: 80px 16px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .final-cta {
        padding: 80px 16px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }
}

/* Quote form styling */
.quote-form {
    flex-wrap: wrap;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.quote-form .website-input {
    flex: 1;
    min-width: 200px;
}

/* ── Video Carousel ── */
.vc-section {
    padding: 100px 40px;
    background: var(--bg-color);
    position: relative;
}

.vc-header {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.vc-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.vc-header-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
}

.vc-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: white;
}

.vc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* slides track */
.vc-track {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0a0a0b;
}

.vc-slides {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.vc-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.vc-slide video {
    width: 100%;
    display: block;
}

/* play overlay */
.vc-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.vc-play-overlay.hidden { opacity: 0; }

.vc-play-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(0,0,0,0.52);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-play-circle svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    margin-left: 3px;
}

/* pill controls (top-right of video) */
.vc-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 4px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vc-slide:hover .vc-pill,
.vc-pill.visible { opacity: 1; }

@media (max-width: 768px) {
    .vc-pill { opacity: 1; }
}

.vc-pill button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.vc-pill button:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.vc-pill button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* caption bar below video */
.vc-caption {
    padding: 18px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.vc-caption-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 4px;
}

.vc-caption h3 {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.vc-caption p {
    font-size: 0.875rem;
    color: #777;
    line-height: 1.6;
}

/* nav arrows */
.vc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    margin-top: calc(-50px / 2);
}

.vc-arrow:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.22);
}

.vc-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.vc-arrow-prev { left: -56px; }
.vc-arrow-next { right: -56px; }

/* dots */
.vc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.vc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.vc-dot.active {
    background: #fff;
    transform: scale(1.35);
}

@media (max-width: 1060px) {
    .vc-arrow-prev { left: 6px; }
    .vc-arrow-next { right: 6px; }
    .vc-arrow { top: auto; bottom: calc(100% - 50%); }
}

@media (max-width: 768px) {
    .vc-section { padding: 60px 20px; }
    .vc-header h2 { font-size: 1.8rem; }
    .vc-arrow { display: none; }
}


/* ── Bento Grid Inline Replacements ── */
.bento-percent-suffix {
    font-size: 28px;
    font-weight: 400;
}

.bento-review-quote {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.bento-tag-verified {
    margin-top: 20px;
}

.bento-retention-num {
    font-size: 36px;
    font-weight: 300;
}

.bento-label-small {
    margin-top: 6px;
    font-size: 9px;
}

.bento-content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bento-description {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 340px;
    line-height: 1.6;
}

.bento-dot-white {
    background: #fff;
}

.bento-metric-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.bento-metric-value {
    font-size: 32px;
    font-weight: 300;
}

.bento-label-green {
    color: #4ade80;
}

.service-visual-overflow {
    overflow: hidden;
}

/* ── CTA / Form Inline Replacements ── */
.cta-feedback {
    margin-top: 14px;
}

.form-privacy-left {
    text-align: left;
    max-width: 520px;
    margin: 8px auto;
}

.final-feedback {
    margin-top: 10px;
}
