/* Estilos específicos para index.html */

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* --- Resultados / Entregables Section --- */
.how-it-works-section {
    padding: 60px 0;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.15);
    border-left-color: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-card:hover {
    border-color: rgba(59, 167, 118, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 167, 118, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: #3BA776;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.step-video {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-bottom: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    margin: 0 auto;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

/* --- Pricing Section (Consolidado desde inline styles) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.15);
    border-left-color: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    border-color: rgba(59, 167, 118, 0.6);
    box-shadow: 0 0 40px rgba(59, 167, 118, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(59, 167, 118, 0.8);
    box-shadow: 0 20px 50px rgba(59, 167, 118, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
}

.service-tagline {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3BA776;
    margin: 15px 0 5px;
}

.price-period {
    font-size: 0.9rem;
    color: #888;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

/* --- Comparison Table --- */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead th {
    background: rgba(26, 26, 26, 0.6);
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tbody td {
    padding: 18px 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #ffffff;
}

.comparison-table tbody tr:hover {
    background: rgba(59, 167, 118, 0.03);
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 10px;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    color: #3BA776;
    font-size: 1.5rem;
    line-height: 1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .step-image {
        max-width: 250px;
    }

    .step-video {
        max-width: 250px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 25px 20px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-image {
        max-width: 200px;
    }

    .step-video {
        max-width: 200px;
    }
}

/* --- Premium Timeline Section (Scroll Pinned) --- */

.timeline-section {
    padding: 80px 0 0;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    padding-left: 40px;
    /* Space for the central line */
}

/* Base line (track) */
.timeline-line {
    position: absolute;
    left: 19px;
    /* Centered in the 40px padding */
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Progress line (filled as scrolled) */
.timeline-progress {
    position: absolute;
    left: 19px;
    top: 0;
    width: 2px;
    height: 0%;
    /* Controlled by JS GSAP */
    background: linear-gradient(to bottom, #3BA776, #2a7c56);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(59, 167, 118, 0.6);
    z-index: 1;
}

/* Individual Step Wrapper */
.timeline-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 30px;
    opacity: 0.3;
    /* JS will handle opacity */
    transform: translateY(20px);
    /* JS will animate to 0 */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Active state triggered by GSAP */
.timeline-step.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* Dot node on the line */
.timeline-node {
    position: absolute;
    left: -29px;
    /* (40px padding - 19px line left) / 2 + half dot width to align center = math adjusted visually */
    top: 24px;
    /* Align with card content */
    width: 16px;
    height: 16px;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Active Node Style */
.timeline-step.is-active .timeline-node {
    background: #3BA776;
    border-color: #3BA776;
    box-shadow: 0 0 15px rgba(59, 167, 118, 0.8), inset 0 0 5px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

/* Glassmorphism Card Container */
.timeline-content.glass-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Base subtle border */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Light catch */
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    /* Light catch */
    border-radius: 20px;
    padding: 35px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active Card Style */
.timeline-step.is-active .timeline-content.glass-card {
    border-color: rgba(59, 167, 118, 0.3);
    border-top: 1px solid rgba(59, 167, 118, 0.5);
    border-left: 1px solid rgba(59, 167, 118, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 167, 118, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Inner elements */
.step-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 167, 118, 0.15);
    border: 1px solid rgba(59, 167, 118, 0.3);
    color: #3BA776;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Noise overlay within card for premium texture */
.timeline-content.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.timeline-content.glass-card>* {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-container {
        padding-left: 20px;
        margin-top: 40px;
    }

    .timeline-line,
    .timeline-progress {
        left: 9px;
    }

    .timeline-step {
        padding-left: 20px;
        margin-bottom: 40px;
    }

    .timeline-node {
        left: -19px;
        width: 14px;
        height: 14px;
        top: 26px;
    }

    .timeline-content.glass-card {
        padding: 25px 20px;
    }

    .timeline-title {
        font-size: 1.25rem;
    }
}

/* --- Home mobile-first refresh --- */
.home-page .main-content {
    margin-top: 72px;
}

.home-page .hero-section {
    min-height: auto;
    padding: 46px 0 38px;
    align-items: start;
    justify-content: stretch;
}

.home-page .hero-video-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
}

.home-page .hero-content {
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 20px;
}

.home-page .hero-title {
    max-width: 820px;
    font-size: 2.25rem;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.home-page .hero-subtitle {
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 26px;
}

.home-page .hero-ctas {
    width: 100%;
    gap: 12px;
}

.home-page .hero-ctas .btn {
    width: 100%;
    min-width: 0;
}

.home-proof-strip {
    display: block;
    width: 100%;
    max-width: 340px;
    margin-top: 28px;
}

.home-proof-item {
    background: rgba(26, 26, 26, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left-color: rgba(59, 167, 118, 0.55);
    border-radius: 16px;
    padding: 14px 16px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-proof-kicker {
    display: block;
    color: #3BA776;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.home-proof-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.35;
}

.home-page .how-it-works-section,
.home-page .modular-model-section {
    padding: 46px 0;
}

.home-page .section-title {
    font-size: 1.75rem;
    line-height: 1.16;
    letter-spacing: 0;
}

.home-page .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.home-page .home-scroll-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    overflow: visible;
    padding: 0;
}

.home-page .step-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 18px;
    text-align: left;
    padding: 20px;
}

.home-page .step-icon {
    margin-left: 0;
    margin-right: 0;
    width: 54px;
    height: 54px;
    color: #3BA776;
}

.home-page .step-title {
    margin-bottom: 0;
}

.home-page .step-icon svg,
.home-page .step-icon svg * {
    stroke: currentColor;
}

.home-page .comparison-table-wrapper {
    display: none;
}

.home-comparison-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
}

.home-comparison-card {
    background: rgba(26, 26, 26, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.home-comparison-card:hover {
    background: rgba(26, 26, 26, 0.62);
    border-color: rgba(59, 167, 118, 0.28);
    transform: translateY(-3px);
}

.home-comparison-card span {
    display: block;
    color: #3BA776;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.home-comparison-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 8px;
}

.home-comparison-card p {
    color: #cccccc;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.home-table-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.home-table-cta .btn {
    min-width: 220px;
}

.sales-forge-section {
    padding: 46px 0;
}

.sales-forge-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background: rgba(18, 18, 18, 0.68);
    border: 1px solid rgba(59, 167, 118, 0.2);
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.sales-forge-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 12px;
    border: 1px solid rgba(59, 167, 118, 0.35);
    border-radius: 999px;
    color: #3BA776;
    background: rgba(59, 167, 118, 0.12);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sales-forge-copy .section-title,
.sales-forge-copy .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.sales-forge-agent-copy {
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 26px;
}

.sales-forge-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sales-forge-actions .btn {
    width: 100%;
    min-width: 0;
}

.sales-forge-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.sales-forge-fact {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
}

.sales-forge-fact span {
    display: block;
    color: #3BA776;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sales-forge-fact strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 8px;
}

.sales-forge-fact p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.home-page .timeline-section {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 52px 0 34px;
}

.home-page .timeline-step {
    opacity: 1;
    transform: none;
}

.home-page .timeline-progress {
    height: 100%;
}

.home-scroll-video-story {
    margin-top: 32px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.home-scroll-video-stage {
    position: relative;
    width: 100vw;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 0;
    background: #f6f6f4;
    border: 0;
    box-shadow: none;
}

.home-scroll-video-frame {
    position: relative;
    width: 100vw;
}

.home-scroll-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.home-logo-annotations {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.home-logo-annotations.is-visible {
    opacity: 1;
}

.home-logo-point {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
}

.point-marker {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3BA776;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 8px rgba(59, 167, 118, 0.18), 0 10px 25px rgba(0, 0, 0, 0.28);
}

.point-label {
    position: absolute;
    left: var(--label-x);
    top: var(--label-y);
    width: max-content;
    max-width: 170px;
    transform: translate(var(--label-translate-x), var(--label-translate-y));
    color: #ffffff;
    background: rgba(16, 16, 16, 0.84);
    border: 1px solid rgba(59, 167, 118, 0.28);
    border-radius: 14px;
    padding: 9px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.point-label::before {
    content: none;
}

.home-scroll-cue {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.86);
    background: rgba(16, 16, 16, 0.72);
    border: 1px solid rgba(59, 167, 118, 0.28);
    border-radius: 999px;
    padding: 9px 14px;
    opacity: 1;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-scroll-cue.is-complete {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 8px));
}

.home-scroll-cue-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-scroll-cue-track {
    position: relative;
    display: block;
    width: clamp(96px, 16vw, 180px);
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.home-scroll-cue-progress {
    position: absolute;
    inset: 0;
    width: 100%;
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left center;
    border-radius: inherit;
    background: linear-gradient(90deg, #3BA776, #50C28E);
}

.point-operations {
    --x: 37%;
    --y: 30%;
    --label-x: -77px;
    --label-y: -23px;
    --label-translate-x: -100%;
    --label-translate-y: -50%;
    --line-x: 100%;
    --line-y: 50%;
    --line-width: 75px;
    --line-rotate: 12deg;
}

.point-friction {
    --x: 31%;
    --y: 57%;
    --label-x: -68px;
    --label-y: 4px;
    --label-translate-x: -100%;
    --label-translate-y: -50%;
    --line-x: 100%;
    --line-y: 50%;
    --line-width: 65px;
    --line-rotate: -8deg;
}

.point-centralize {
    --x: 50%;
    --y: 50%;
    --label-x: 0;
    --label-y: -34px;
    --label-translate-x: -50%;
    --label-translate-y: -100%;
    --line-x: 50%;
    --line-y: 100%;
    --line-width: 60px;
    --line-rotate: 90deg;
}

.point-automate {
    --x: 66%;
    --y: 43%;
    --label-x: 70px;
    --label-y: -19px;
    --label-translate-x: 0;
    --label-translate-y: -50%;
    --line-x: -68px;
    --line-y: 50%;
    --line-width: 66px;
    --line-rotate: -14deg;
}

.point-ai {
    --x: 57%;
    --y: 72%;
    --label-x: 53px;
    --label-y: 32px;
    --label-translate-x: 0;
    --label-translate-y: 0;
    --line-x: -57px;
    --line-y: 0;
    --line-width: 64px;
    --line-rotate: 28deg;
}

@media (max-width: 640px) {
    .home-scroll-video-stage {
        border-radius: 0;
    }

    .home-scroll-video {
        width: 100%;
        height: auto;
    }

    .point-marker {
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 6px rgba(59, 167, 118, 0.18), 0 8px 18px rgba(0, 0, 0, 0.22);
    }

    .point-label {
        max-width: 118px;
        padding: 7px 9px;
        font-size: 0.68rem;
        border-radius: 10px;
    }

    .home-scroll-cue {
        padding: 8px 12px;
    }

    .home-scroll-cue-track {
        width: 96px;
    }

    .point-operations {
        --x: 34%;
        --y: 30%;
        --label-x: -7px;
        --label-y: -32px;
        --label-translate-x: -100%;
        --label-translate-y: 0;
        --line-x: 100%;
        --line-y: 75%;
        --line-width: 29px;
        --line-rotate: 38deg;
    }

    .point-friction {
        --x: 31%;
        --y: 57%;
        --label-x: 5px;
        --label-y: 18px;
        --label-translate-x: -100%;
        --label-translate-y: 0;
        --line-x: 100%;
        --line-y: 12%;
        --line-width: 27px;
        --line-rotate: -28deg;
    }

    .point-centralize {
        --x: 50%;
        --y: 50%;
        --label-x: 0;
        --label-y: -27px;
        --label-translate-x: -50%;
        --label-translate-y: -100%;
        --line-x: 50%;
        --line-y: 100%;
        --line-width: 43px;
        --line-rotate: 90deg;
    }

    .point-automate {
        --x: 66%;
        --y: 43%;
        --label-x: 18px;
        --label-y: -41px;
        --label-translate-x: 0;
        --label-translate-y: 0;
        --line-x: -27px;
        --line-y: 82%;
        --line-width: 34px;
        --line-rotate: -50deg;
    }

    .point-ai {
        --x: 57%;
        --y: 72%;
        --label-x: 20px;
        --label-y: 20px;
        --label-translate-x: 0;
        --label-translate-y: 0;
        --line-x: -27px;
        --line-y: 10%;
        --line-width: 33px;
        --line-rotate: 30deg;
    }
}

.home-page .values-grid {
    grid-template-columns: 1fr;
}

.home-page .audit-cta-section .glass-container {
    padding: 34px 22px !important;
}

.home-page .audit-cta-section .section-title {
    font-size: 1.6rem;
}

@media (min-width: 640px) {
    .home-page .hero-ctas {
        flex-direction: row;
        align-items: center;
    }

    .home-page .hero-ctas .btn {
        width: auto;
        min-width: 200px;
    }

    .home-proof-strip {
        max-width: 360px;
    }

    .home-page .home-scroll-row {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 900px) {
    .home-page .main-content {
        margin-top: 100px;
    }

    .home-page .hero-section {
        min-height: 680px;
        padding: 96px 0 76px;
        align-items: center;
    }

    .home-page .hero-content {
        padding-left: 5%;
        padding-right: 20px;
    }

    .home-page .hero-title {
        font-size: 4.25rem;
        max-width: 860px;
    }

    .home-page .hero-subtitle {
        font-size: 1.2rem;
    }

    .home-page .how-it-works-section,
    .home-page .modular-model-section {
        padding: 70px 0;
    }

    .home-page .section-title {
        font-size: 2.2rem;
    }

    .home-page .section-subtitle {
        font-size: 1.2rem;
    }

    .home-page .home-scroll-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
        margin: 50px 0 0;
        overflow: visible;
        padding: 0;
    }

    .home-page .step-card {
        display: block;
        text-align: center;
        padding: 35px 25px;
    }

    .home-page .step-icon {
        width: 70px;
        height: 70px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-page .comparison-table-wrapper {
        display: block;
    }

    .home-comparison-cards {
        display: none;
    }

    .home-page .timeline-section {
        height: auto;
        overflow: visible;
        padding: 80px 0 48px;
    }

    .home-page .timeline-step {
        opacity: 1;
        transform: none;
    }

    .home-page .timeline-progress {
        height: 0%;
    }

    .home-scroll-video-story {
        margin-top: 48px;
    }

    .home-scroll-video-stage {
        min-height: 0;
    }

    .home-scroll-video {
        width: 100%;
        height: auto;
    }

    .home-page .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .sales-forge-section {
        padding: 70px 0;
    }

    .sales-forge-panel {
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
        gap: 42px;
        align-items: center;
        padding: 44px;
        border-radius: 24px;
    }

    .sales-forge-actions {
        flex-direction: row;
        align-items: center;
    }

    .sales-forge-actions .btn {
        width: auto;
        min-width: 230px;
    }

    .home-page .audit-cta-section .glass-container {
        padding: 50px 40px !important;
    }

    .home-page .audit-cta-section .section-title {
        font-size: 2.2rem;
    }
}
