* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    font-family: 'Inter', sans-serif;
    color: #1f1f27;
    background: #fbfbfd;
}

body {
    min-height: 100vh;
    line-height: 1.7;
    background: #fbfbfd;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.scroll-progress {
    position: fixed;
    left: 18px;
    top: 124px;
    width: 4px;
    height: calc(100vh - 156px);
    border-radius: 999px;
    background: rgba(52, 34, 77, 0.12);
    z-index: 120;
    overflow: hidden;
}

.scroll-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: top;
    transform: scaleY(0);
    background: linear-gradient(180deg, #6f5aa3 0%, #b7d356 100%);
    box-shadow: 0 0 18px rgba(183, 211, 86, 0.45);
    transition: transform 0.12s linear;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

button,
a {
    font: inherit;
}

a {
    text-decoration: none;
}

.promo-bar {
    background: linear-gradient(90deg, #2c1d42 0%, #34224d 100%);
    padding: 14px 20px;
    font-size: 0.9rem;
    color: #f5f3ff;
    font-weight: 600;
    border-bottom: 1px solid rgba(198, 219, 91, 0.2);
}

.promo-bar p {
    color: #ffffff;
    margin: 0;
}

.promo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.promo-bar-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.promo-bar-links a {
    color: #ffffff;
    opacity: 0.9;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.promo-bar-links a:hover {
    opacity: 1;
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(111, 90, 163, 0.1);
    z-index: 100;
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 22px rgba(36, 28, 57, 0.05);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.navbar-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #34224d;
    flex-shrink: 0;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
}

.navbar-menu a {
    color: #423f4f;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #34224d;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #34224d;
}

.btn-sm {
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar .btn-primary {
    box-shadow: 0 10px 20px rgba(171, 205, 70, 0.32);
}

.section {
    padding: 108px 0;
    background: #ffffff;
}

.section:nth-of-type(even) {
    background: #111827;
    color: #ffffff;
}

.section:nth-of-type(even) .section-label {
    color: #b7d356;
}

.section:nth-of-type(even) h2 {
    color: #ffffff;
}

.section:nth-of-type(even) p {
    color: #e5e7eb;
}

.section:nth-of-type(even) .section-header {
    color: #ffffff;
}

.section-label {
    display: inline-flex;
    margin-bottom: 16px;
    color: #4f4f5d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.section .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.14;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

p {
    color: #4f4f5d;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(180deg, #c8ee67 0%, #b6dc54 100%);
    color: #111;
    box-shadow: 0 14px 26px rgba(171, 205, 70, 0.34);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #c2e75f 0%, #a9d347 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 34px rgba(171, 205, 70, 0.42);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: #35284f;
    border: 1px solid rgba(52, 34, 77, 0.24);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(52, 34, 77, 0.4);
}

.btn-full {
    width: 100%;
}

.hero-section {
    background: #fbfbfd;
    padding: 96px 0 110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: start;
}

.hero-copy {
    max-width: 640px;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 5.1vw, 4.35rem);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 20px;
}

.eyebrow {
    display: inline-block;
    background: linear-gradient(90deg, #281a3c 0%, #402a61 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    box-shadow: 0 12px 24px rgba(46, 31, 69, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-copy p {
    font-size: 1.12rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 510px;
    color: #666b7a;
}

.section-header p {
    max-width: 620px;
    margin: 0 auto;
    color: #5f6674;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-actions .btn-secondary::after {
    content: "->";
    margin-left: 10px;
    font-size: 0.92em;
    transition: transform 0.24s ease;
}

.hero-actions .btn-secondary:hover::after {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(52, 34, 77, 0.2);
    border-radius: 999px;
    padding: 8px 13px;
    color: #373248;
    font-size: 0.83rem;
    font-weight: 600;
    box-shadow: 0 5px 12px rgba(31, 31, 39, 0.05);
}

.hero-trust span i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #c5e763 0%, #a4cc43 100%);
    color: #23243a;
    font-style: normal;
    font-size: 0.7rem;
    box-shadow: 0 0 10px rgba(183, 211, 86, 0.35);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.metric-card {
    background: #ffffff;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(31, 31, 39, 0.08);
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.section:nth-of-type(even) .metric-card {
    background: #1a2841;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
}

.section:nth-of-type(even) .metric-card strong {
    color: #b7d356;
}

.metric-card strong {
    display: block;
    font-size: 1.45rem;
    margin-bottom: 6px;
    color: #111;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -30px -40px -20px;
    border-radius: 42px;
    background: radial-gradient(circle at 50% 40%, rgba(111, 90, 163, 0.16), rgba(183, 211, 86, 0.1) 42%, rgba(183, 211, 86, 0) 72%);
    filter: blur(22px);
    z-index: 0;
}

.visual-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(111, 90, 163, 0.26);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 48px rgba(41, 31, 61, 0.14);
}

.visual-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.visual-tag {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(52, 34, 77, 0.1);
    color: #34224d;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 0.8rem;
}

.visual-live {
    color: #3d506f;
    font-weight: 600;
    font-size: 0.78rem;
    position: relative;
    padding-left: 12px;
}

.visual-live::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #69d26f;
    box-shadow: 0 0 0 rgba(105, 210, 111, 0.6);
    animation: pulse-live 2.3s ease-in-out infinite;
}

.visual-screen {
    min-height: 480px;
    background: linear-gradient(180deg, #f3f6fc 0%, #eef3fb 100%);
    border-radius: 22px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #111;
}

.visual-chart-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    border-radius: 18px;
    border: 1px solid rgba(78, 92, 129, 0.16);
    box-shadow: 0 14px 28px rgba(28, 34, 50, 0.08);
    padding: 14px;
}

.visual-chart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.visual-chart-header p {
    font-size: 0.83rem;
    color: #53617a;
    margin: 0;
}

.visual-chart-header strong {
    font-size: 1rem;
    color: #26344f;
}

.visual-chart-grid {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}

.visual-chart-grid span {
    border-top: 1px dashed rgba(111, 90, 163, 0.2);
}

.visual-chart {
    width: 100%;
    height: 170px;
}

.visual-chart polyline {
    fill: none;
    stroke: url(#chartStroke);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 8px 10px rgba(111, 90, 163, 0.24));
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: draw-line 2.2s ease-out forwards;
}

.visual-metrics {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.visual-metric-card {
    background: #f5f8ff;
    border: 1px solid rgba(95, 115, 156, 0.18);
    border-radius: 12px;
    padding: 8px;
    display: grid;
    gap: 2px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.visual-metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(74, 86, 113, 0.18);
}

.visual-metric-card strong {
    color: #27334f;
    font-size: 1rem;
}

.visual-metric-card span {
    color: #5e6b85;
    font-size: 0.74rem;
}

.visual-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.visual-kpi {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(78, 92, 129, 0.16);
    border-radius: 12px;
    padding: 11px;
    display: grid;
    gap: 4px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.visual-kpi:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(74, 86, 113, 0.14);
}

.visual-kpi span {
    font-size: 0.72rem;
    color: #5e6b85;
    line-height: 1.35;
}

.visual-kpi strong {
    font-size: 1rem;
    color: #1f2b44;
}

@keyframes pulse-live {
    0% {
        box-shadow: 0 0 0 0 rgba(105, 210, 111, 0.5);
        opacity: 0.8;
    }

    65% {
        box-shadow: 0 0 0 8px rgba(105, 210, 111, 0);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(105, 210, 111, 0);
        opacity: 0.8;
    }
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.comparison-card {
    padding: 32px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(31, 31, 39, 0.08);
    box-shadow: 0 10px 26px rgba(31, 31, 39, 0.06);
}

.comparison-card--dark {
    background: #111827;
    color: #f9fafb;
    border: none;
}

.comparison-card--light {
    background: #ffffff;
    color: #1f1f27;
}

.comparison-card ul {
    list-style: none;
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.comparison-card li::before {
    content: '•';
    display: inline-block;
    width: 18px;
    color: #b7d356;
    margin-right: 10px;
}

.section-services .section-header,
.section-process .section-header,
.section-faq .section-header,
.section-case-studies .section-header,
.section-blog .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    padding: 32px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(31, 31, 39, 0.08);
    box-shadow: 0 10px 26px rgba(31, 31, 39, 0.06);
    min-height: 240px;
}

.section:nth-of-type(even) .service-card {
    background: #1a2841;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
}

.section:nth-of-type(even) .service-card h3 {
    color: #ffffff;
}

.section-case-studies .studies-grid,
.section-blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.study-card,
.blog-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(31, 31, 39, 0.08);
    box-shadow: 0 10px 26px rgba(31, 31, 39, 0.06);
}

.section:nth-of-type(even) .study-card,
.section:nth-of-type(even) .blog-card {
    background: #1a2841;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
}

.section:nth-of-type(even) .study-card h3,
.section:nth-of-type(even) .blog-card h3 {
    color: #ffffff;
}

.section-testimonials .testimonials-header-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.section-testimonials .testimonials-cta p {
    margin-bottom: 20px;
    color: #4f4f5d;
    max-width: 400px;
}

.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.testimonials-carousel {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll-left 48s linear infinite;
    margin-top: 0;
}

.testimonials-carousel.paused {
    animation-play-state: paused;
}

.testimonials-carousel-wrapper::before,
.testimonials-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #111827 0%, rgba(17, 24, 39, 0) 100%);
}

.testimonials-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #111827 0%, rgba(17, 24, 39, 0) 100%);
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 300px;
    width: 300px;
    background: linear-gradient(180deg, #0f1e35 0%, #0d1a2d 100%);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(80, 144, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(17, 82, 185, 0.08), 0 14px 30px rgba(4, 10, 20, 0.35);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
}

.testimonial-card--featured {
    background: linear-gradient(180deg, #0f1e35 0%, #0d1a2d 100%);
}

.section:nth-of-type(even) .testimonial-card {
    background: linear-gradient(180deg, #0f1e35 0%, #0d1a2d 100%);
    border: 1px solid rgba(80, 144, 255, 0.22);
    color: #eaf0fb;
}

.section:nth-of-type(even) .testimonial-card--featured {
    background: linear-gradient(180deg, #0f1e35 0%, #0d1a2d 100%);
}

.section:nth-of-type(even) .testimonial-card strong {
    color: #ffffff;
}

.section:nth-of-type(even) .testimonial-card p {
    color: #e5e7eb;
}

.carousel-button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(52, 34, 77, 0.12);
    background: #fff;
    color: #34224d;
    border-radius: 50%;
    font-size: 1.6rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(52, 34, 77, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-button:hover {
    transform: translateY(-1px);
    border-color: rgba(52, 34, 77, 0.2);
    background: #f7f7f9;
}

.carousel-button:focus-visible {
    outline: 3px solid rgba(183, 211, 86, 0.45);
    outline-offset: 3px;
}

.testimonial-meta {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 8px;
}

.testimonial-rating {
    display: none;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b7d356 0%, #8eb53b 100%);
    color: #111827;
    display: grid;
    place-items: center;
    font-weight: 700;
    grid-row: 1 / span 2;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.45;
    color: #b8c5d8;
    margin-bottom: 0;
}

.testimonial-card strong {
    color: #f5f9ff;
    font-weight: 700;
    display: block;
}

.testimonial-card strong::after {
    content: "★★★★★";
    display: block;
    margin-top: 3px;
    letter-spacing: 0.08em;
    font-size: 0.88rem;
    color: #ffffff;
}

.testimonial-card:nth-child(3n + 2) .testimonial-avatar {
    background: linear-gradient(135deg, #38d996 0%, #24c987 100%);
    color: #08311f;
}

.testimonial-card:nth-child(3n) .testimonial-avatar {
    background: linear-gradient(135deg, #5ca6ff 0%, #3b83e8 100%);
    color: #0a2247;
}

.blog-card h3 {
    margin-bottom: 14px;
}

.blog-card p {
    color: #4f4f5d;
    line-height: 1.7;
}

.section-process .section-header {
    text-align: left;
    max-width: 700px;
    margin: 0 0 54px;
}

.process-system {
    --process-progress: 0%;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.process-rail {
    position: sticky;
    top: 140px;
    height: min(520px, 72vh);
}

.process-rail-track,
.process-rail-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    border-radius: 999px;
    transform: translateX(-50%);
}

.process-rail-track {
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.process-rail-progress {
    height: var(--process-progress);
    background: linear-gradient(180deg, #6f5aa3 0%, #c6db5b 100%);
    box-shadow: 0 0 18px rgba(198, 219, 91, 0.42);
    transition: height 0.2s ease-out;
}

.process-rail-dot {
    position: absolute;
    left: 50%;
    top: var(--process-progress);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #c6db5b;
    box-shadow: 0 0 0 6px rgba(198, 219, 91, 0.16), 0 0 16px rgba(198, 219, 91, 0.4);
    transition: top 0.2s ease-out;
}

.process-flow {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.process-item {
    padding: 28px 30px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 10px 24px rgba(6, 10, 18, 0.22);
    opacity: 0.42;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-item.is-active {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(198, 219, 91, 0.5);
    box-shadow: 0 16px 32px rgba(6, 10, 18, 0.3);
}

.process-step-index {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #c6db5b;
}

.process-item h3 {
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    line-height: 1.2;
    color: #ffffff;
}

.process-item p {
    color: #d2d9e8;
    line-height: 1.7;
    max-width: 62ch;
}

.accordion {
    display: grid;
    gap: 16px;
}

.accordion-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(31, 31, 39, 0.08);
    box-shadow: 0 10px 26px rgba(31, 31, 39, 0.06);
    overflow: hidden;
}

.section:nth-of-type(even) .accordion-item {
    background: #1a2841;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section:nth-of-type(even) .accordion-header {
    background: #1a2841;
    color: #ffffff;
}

.section:nth-of-type(even) .accordion-content {
    color: #e5e7eb;
}

.accordion-header {
    width: 100%;
    border: none;
    background: #ffffff;
    padding: 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #6f5aa3;
}

.accordion-header.open::after {
    content: '-';
}

.accordion-content {
    display: none;
    padding: 0 24px 24px;
    color: #4f4f5d;
}

.section-contact-form {
    background: #ffffff;
}

.section-contact-form.section:nth-of-type(even) {
    background: #111827;
}

.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.form-group {
    display: grid;
    gap: 10px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-weight: 700;
    color: #1f1f27;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid rgba(31, 31, 39, 0.12);
    border-radius: 12px;
    background: #fafbfc;
    color: #1f1f27;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #34224d;
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: flex-start;
}

.text-center {
    text-align: center;
}

.footer-cta {
    background: linear-gradient(135deg, #111827, #1a2841);
    color: #fff;
    padding: 52px 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-cta h2 {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.footer-cta .section-label {
    display: none;
}

.site-footer {
    background: #0f172a;
    color: #d8d8e2;
    padding: 68px 0 30px;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: grid;
    gap: 18px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-brand p {
    max-width: 380px;
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.site-footer h3 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.site-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 26px;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-policy-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-policy-links a:hover {
    color: #ffffff;
}

@media (max-width: 960px) {
    .hero-grid,
    .section-grid,
    .services-grid,
    .studies-grid,
    .blog-grid,
    .process-grid,
    .comparison-cards,
    .footer-cta-inner,
    .process-timeline-grid,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 32px;
    }

    .section-case-studies .studies-grid,
    .section-blog .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: 0;
        display: flex;
    }

    .hero-section {
        padding: 70px 0 90px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2.3rem, 7.2vw, 3.2rem);
    }

    .visual-screen {
        min-height: auto;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .footer-cta-inner {
        text-align: center;
    }

    .process-system {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 18px;
    }

    .process-rail {
        position: relative;
        top: 0;
        height: 100%;
        min-height: 100%;
    }

    .process-item {
        padding: 24px 22px;
    }

    .section-testimonials .testimonials-header-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .testimonials-carousel-wrapper {
        overflow: hidden;
    }

    .testimonials-carousel {
        gap: 16px;
    }

    .carousel-button {
        justify-self: stretch;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 48px 0 72px;
    }

    .scroll-progress {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .btn {
        width: 100%;
    }

    .navbar .btn-sm {
        width: auto;
        padding: 10px 14px;
        font-size: 0.78rem;
    }

    .navbar-logo {
        font-size: 1.25rem;
        flex-shrink: 1;
        min-width: 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.15;
    }

    .hero-copy p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .eyebrow {
        margin-bottom: 18px;
    }

    .hero-trust {
        gap: 8px;
    }

    .hero-trust span {
        width: 100%;
        justify-content: center;
    }

    .visual-metrics,
    .visual-kpis {
        grid-template-columns: 1fr;
    }

    .visual-card {
        padding: 14px;
    }

    .visual-screen {
        padding: 14px;
    }

    .visual-chart {
        height: 148px;
    }

    .testimonials-carousel-wrapper::before,
    .testimonials-carousel-wrapper::after {
        width: 28px;
    }

    .testimonial-card {
        width: min(280px, calc(100vw - 72px));
        flex-basis: min(280px, calc(100vw - 72px));
    }

    .visual-card,
    .metric-card,
    .service-card,
    .comparison-card,
    .accordion-item {
        border-radius: 16px;
    }

    .section-process .section-header {
        margin-bottom: 38px;
    }

    .process-system {
        grid-template-columns: 20px minmax(0, 1fr);
        gap: 14px;
    }

    .process-item {
        padding: 20px 16px;
    }

    .process-item h3 {
        font-size: 1.35rem;
    }

    .hamburger {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px;
        border-radius: 12px;
        border: 1px solid rgba(111, 90, 163, 0.16);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 24px rgba(31, 31, 39, 0.1);
        backdrop-filter: blur(8px);
        z-index: 120;
    }

    .navbar-menu li a {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
    }

    .navbar-menu li a:hover {
        background: rgba(52, 34, 77, 0.06);
    }

    .navbar-inner {
        justify-content: space-between;
        gap: 8px;
        position: relative;
    }

    .promo-bar {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .promo-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .promo-bar-links {
        gap: 10px;
    }

    .promo-bar-links a {
        font-size: 0.76rem;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================================================
   RESULTS PAGE — resultados.html
   ================================================================ */

/* Active nav link */
.navbar-menu a[aria-current="page"] {
    color: #34224d;
    font-weight: 700;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.results-hero {
    background: #fbfbfd;
    padding: 100px 0 84px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.results-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 90, 163, 0.1) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.results-hero > .container {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin: 0 auto;
}

.results-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 26px 0 18px;
    color: #1f1f27;
}

.results-hero > .container > p {
    font-size: 1.12rem;
    color: #5f6674;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Case Studies Section ──────────────────────────────────────── */
.results-cases {
    background: #f5f5f9;
    padding: 108px 0;
}

.results-cases > .container {
    display: grid;
    gap: 24px;
}

/* ── Individual Case Block ─────────────────────────────────────── */
.case-block {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(52, 34, 77, 0.08);
    box-shadow: 0 8px 28px rgba(31, 31, 39, 0.05);
    padding: 44px 48px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.case-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6f5aa3 0%, #c6db5b 100%);
    border-radius: 4px 0 0 4px;
}

.case-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(31, 31, 39, 0.1);
}

/* Block top row: tag + index */
.case-block-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.case-industry-tag {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(52, 34, 77, 0.07);
    color: #34224d;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.case-index {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(52, 34, 77, 0.24);
}

/* Headline row: big number + label/context */
.case-headline-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(52, 34, 77, 0.07);
}

.case-headline-number {
    font-size: clamp(3.8rem, 6vw, 5.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, #34224d 0%, #6f5aa3 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    padding-top: 4px;
}

.case-headline-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f1f27;
    margin: 0 0 10px;
    line-height: 1.35;
}

.case-context {
    font-size: 0.94rem;
    color: #6b7280;
    line-height: 1.72;
    margin: 0;
    max-width: 540px;
}

/* Body: steps + metrics */
.case-body {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 48px;
    align-items: start;
}

.case-steps-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6f5aa3;
    margin: 0 0 18px;
}

.case-steps-list {
    list-style: none;
    counter-reset: step-counter;
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.case-steps-list li {
    counter-increment: step-counter;
    padding-left: 36px;
    position: relative;
    font-size: 0.94rem;
    color: #4f4f5d;
    line-height: 1.68;
}

.case-steps-list li::before {
    content: counter(step-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #6f5aa3;
    letter-spacing: 0.04em;
    line-height: 1.68;
}

/* Metrics grid */
.case-metrics-grid {
    display: grid;
    gap: 12px;
}

.case-metric {
    padding: 16px 18px;
    background: #f8f8fc;
    border-radius: 12px;
    border: 1px solid rgba(52, 34, 77, 0.07);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.case-metric-value {
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #34224d;
    display: block;
}

.case-metric-label {
    font-size: 0.74rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

/* Qualitative metric variant */
.case-metric--qual {
    background: rgba(74, 124, 30, 0.04);
    border-color: rgba(74, 124, 30, 0.12);
}

.case-metric--qual .case-metric-value {
    font-size: 1.35rem;
    color: #3d6b18;
    letter-spacing: 0;
}

/* ── System Message Section ────────────────────────────────────── */
.results-system {
    background: #ffffff;
    padding: 108px 0;
}

.results-system-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.results-system-content .section-label {
    margin-bottom: 14px;
}

.results-system-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 16px;
    color: #1f1f27;
}

.results-system-content p {
    color: #5f6674;
    font-size: 1rem;
    line-height: 1.78;
    margin-bottom: 14px;
    max-width: 460px;
}

.results-system-content p:last-of-type {
    margin-bottom: 28px;
    font-style: italic;
    color: #34224d;
    font-weight: 600;
}

.results-system-pillars {
    display: grid;
    gap: 14px;
}

.results-pillar {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    padding: 18px 20px;
    background: #f8f8fc;
    border-radius: 12px;
    border: 1px solid rgba(52, 34, 77, 0.07);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.results-pillar:hover {
    border-color: rgba(111, 90, 163, 0.22);
    background: #f4f3fa;
}

.results-pillar-number {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #6f5aa3;
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-pillar h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f1f27;
    margin: 0;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
}

.results-pillar p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 4px 0 0;
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    font-style: normal;
    font-weight: normal;
}

/* ── Final CTA ─────────────────────────────────────────────────── */
.results-final-cta {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4c 50%, #1a0f2e 100%);
    padding: 112px 0;
    text-align: center;
}

.results-final-cta-inner {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.results-cta-tag {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(198, 219, 91, 0.12);
    border: 1px solid rgba(198, 219, 91, 0.28);
    color: #c6db5b;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.results-final-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
    max-width: 560px;
}

.results-final-cta-inner > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.02rem;
    line-height: 1.72;
    max-width: 440px;
    margin: 0;
}

.results-final-cta .btn-primary {
    font-size: 1.06rem;
    padding: 18px 38px;
    margin-top: 8px;
    width: auto;
}

/* ── Results page responsive ───────────────────────────────────── */
@media (max-width: 960px) {
    .case-headline-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .case-headline-number {
        font-size: clamp(3.2rem, 8vw, 4.5rem);
    }

    .case-body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .case-metrics-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .results-system-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .results-hero {
        padding: 64px 0 56px;
        text-align: left;
    }

    .results-hero > .container > p {
        margin: 0;
    }

    .results-cases {
        padding: 60px 0;
    }

    .case-block {
        padding: 28px 22px;
    }

    .case-metrics-grid {
        grid-template-columns: 1fr;
    }

    .results-system {
        padding: 60px 0;
    }

    .results-system-content p {
        max-width: none;
    }

    .results-final-cta {
        padding: 72px 0;
    }

    .results-final-cta h2 {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .results-final-cta .btn-primary {
        width: 100%;
    }
}
