/* =========================================================
   SCIRIDGE TECHNOLOGIES — UNIFIED MASTER STYLESHEET (HOME)
   Clean Numbers-Free Structure, WCAG Contrast & Unified Breakpoints
========================================================= *

/* =========================================================
   01. CORE FOUNDATION, TYPOGRAPHY & SHARED UTILITIES
========================================================= */

.home-page {
    width: 100%;
    overflow-x: hidden;
    background: var(--color-bg, #ffffff);
    color: var(--color-text, #1e293b);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.home-page section {
    position: relative;
    width: 100%;
}

.home-page .section {
    padding-top: clamp(80px, 7vw, 120px);
    padding-bottom: clamp(80px, 7vw, 120px);
}

.container,
.about-container,
.services-container,
.why-container,
.partnership-container,
.contact-container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), var(--container-wide, 1340px));
    margin-inline: auto;
}

/* Unified Kicker & Micro-Badges */
.section-kicker,
.about-kicker,
.services-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--color-accent, #dc2626);
    font-size: 0.75rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker::before,
.about-kicker-line,
.services-kicker-line,
.hero-eyebrow-line {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--color-accent, #dc2626);
}

/* Shared Section Header Layout */
.section-heading,
.solutions-header,
.testimonials-header,
.process-header,
.faq-preview-header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: clamp(35px, 6vw, 95px);
    margin-bottom: 55px;
}

.section-heading h2,
.solutions-heading h2,
.testimonials-heading h2,
.why-intro-left h2,
.faq-preview-header h2 {
    margin: 0;
    color: var(--color-text-dark, #0f172a);
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.services-intro h2,
.process-header-main h2,
.partnership-heading h2,
.contact-intro h2 {
    margin: 0;
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: clamp(34px, 4.5vw, 62px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.process-header-main h2,
.partnership-heading h2,
.contact-intro h2 {
    color: var(--color-white);
}

.services-intro h2 {
    color: var(--color-text-dark, #0f172a);
}

.section-heading h2 span,
.solutions-heading h2 span,
.testimonials-heading h2 span,
.process-header-main h2 span,
.services-intro h2 span,
.why-intro-left h2 span,
.partnership-heading h2 span,
.faq-preview-header h2 span,
.contact-intro h2 span {
    display: block;
    color: var(--color-accent, #dc2626);
}

.section-heading>p,
.solutions-header-copy p,
.testimonials-intro p,
.process-header-copy p,
.faq-preview-intro p {
    margin: 0;
    color: var(--color-text-light, #475569);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Shared Interactive Links */
.arrow-link,
.about-link,
.service-explore,
.services-all-link,
.solutions-footer-link,
.why-bottom-link,
.hero-secondary-link,
.faq-view-all,
.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-dark, #0f172a);
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold, 600);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.arrow-link:hover,
.about-link:hover,
.service-explore:hover,
.services-all-link:hover,
.solutions-footer-link:hover,
.why-bottom-link:hover,
.hero-secondary-link:hover,
.faq-view-all:hover,
.faq-contact-link:hover {
    gap: 15px;
    color: var(--color-accent, #dc2626);
}

/* =========================================================
   02. BIDIRECTIONAL SCROLL REVEAL SYSTEM (UPDATED)
========================================================= */

[data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
}

/* Base Directions */
[data-reveal="up"],
[data-reveal]:not([data-reveal="left"]):not([data-reveal="right"]):not([data-reveal="scale"]) {
    transform: translate3d(0, 32px, 0);
}

[data-reveal="left"] {
    transform: translate3d(-36px, 0, 0);
}

[data-reveal="right"] {
    transform: translate3d(36px, 0, 0);
}

[data-reveal="scale"] {
    transform: translate3d(0, 20px, 0) scale(0.96);
}

/* Bidirectional Inversion (Scrolling back up) */
[data-reveal].reveal-from-up {
    --reveal-delay: 0s !important;
    transform: translate3d(0, -32px, 0);
}

[data-reveal="left"].reveal-from-up {
    transform: translate3d(-36px, -15px, 0);
}

[data-reveal="right"].reveal-from-up {
    transform: translate3d(36px, -15px, 0);
}

/* Active Visible State */
[data-reveal].is-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

/* HTML attribute delay mapping: data-reveal-delay="1" -> "6" */
[data-reveal-delay="1"] { --reveal-delay: 0.08s; }
[data-reveal-delay="2"] { --reveal-delay: 0.16s; }
[data-reveal-delay="3"] { --reveal-delay: 0.24s; }
[data-reveal-delay="4"] { --reveal-delay: 0.32s; }
[data-reveal-delay="5"] { --reveal-delay: 0.40s; }
[data-reveal-delay="6"] { --reveal-delay: 0.48s; }

/* Structural Grid Stagger Delays */
.services-secondary [data-reveal]:nth-child(2),
.process-timeline [data-reveal]:nth-child(2),
.solutions-list [data-reveal]:nth-child(2) {
    --reveal-delay: 0.08s;
}

.services-secondary [data-reveal]:nth-child(3),
.process-timeline [data-reveal]:nth-child(3),
.solutions-list [data-reveal]:nth-child(3) {
    --reveal-delay: 0.16s;
}

.process-timeline [data-reveal]:nth-child(4),
.solutions-list [data-reveal]:nth-child(4) {
    --reveal-delay: 0.24s;
}

.process-timeline [data-reveal]:nth-child(5) {
    --reveal-delay: 0.32s;
}

/* =========================================================
   03. HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--color-bg-dark, #0b0f19);
    color: var(--color-white, #ffffff);
    padding: clamp(60px, 6vw, 90px) 0;
}

.hero-background {
    position: absolute;
    inset: -5%;
    z-index: -4;
    background:
        linear-gradient(90deg,
            rgba(11, 15, 25, 0.98) 0%,
            rgba(11, 15, 25, 0.92) 32%,
            rgba(11, 15, 25, 0.75) 57%,
            rgba(11, 15, 25, 0.38) 82%,
            rgba(11, 15, 25, 0.2) 100%),
        url("../images/hero-bg.jpg") center right / cover no-repeat;
    transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.05);
    will-change: transform;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: radial-gradient(circle at 76% 45%, rgba(220, 38, 38, 0.15), transparent 32%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to right, transparent, black 35%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 35%, black 75%, transparent);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border: 1px solid rgba(220, 38, 38, 0.22);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: heroOrbFloat 9s ease-in-out infinite;
}

.hero-orb::after {
    content: "";
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-orb-one {
    width: 360px;
    height: 360px;
    right: 4%;
    top: -110px;
}

.hero-orb-two {
    width: 180px;
    height: 180px;
    right: 31%;
    bottom: -80px;
    opacity: 0.7;
    animation-delay: -3s;
}

@keyframes heroOrbFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
}

/* Hero Form */
.hero-form-card {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--color-text-dark, #0f172a);
    border: 1px solid #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-sm, 6px);
}

.hero-form-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.hero-form-status {
    font-size: 0.6875rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent, #dc2626);
    margin-left: auto;
}

.hero-form-heading {
    margin-bottom: 20px;
}

.hero-form-heading h2 {
    margin: 0 0 8px;
    color: var(--color-text-dark, #0f172a);
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: 1.5rem;
    font-weight: var(--weight-semibold, 600);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-form-heading p {
    margin: 0;
    color: var(--color-text-light, #475569);
    font-size: 0.875rem;
    line-height: 1.6;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: var(--color-text-dark, #0f172a);
    font-size: 0.75rem;
    font-weight: var(--weight-semibold, 600);
    line-height: 1.3;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--color-border, #cbd5e1);
    border-radius: var(--radius-sm, 4px);
    outline: none;
    background: var(--color-white, #ffffff);
    color: var(--color-text-dark, #0f172a);
    font-family: var(--font-primary, inherit);
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 42px;
    padding: 0 12px;
}

.form-group textarea {
    min-height: 80px;
    padding: 10px 12px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent, #dc2626);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.hero-submit {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 18px;
    background: var(--color-accent, #dc2626);
    color: var(--color-white, #ffffff);
    border: 1px solid var(--color-accent, #dc2626);
    border-radius: var(--radius-sm, 4px);
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold, 600);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-submit:hover {
    background: var(--color-accent-dark, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.35);
}

.hero-submit-arrow {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.hero-submit:hover .hero-submit-arrow {
    transform: translate(3px, -3px);
}

.form-note {
    margin: 4px 0 0;
    color: var(--color-text-muted, #64748b);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

/* Hero Content Area */
.hero-content {
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-inner {
    max-width: 680px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 700px;
    margin: 0 0 20px;
    color: #ffffff;
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: clamp(38px, 4.8vw, 66px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content h1 span {
    display: block;
    color: var(--color-accent, #dc2626);
}

.hero-description {
    max-width: 60ch;
    margin: 0 0 28px;
    color: #cbd5e1;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.hero-primary-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    background: var(--color-white, #ffffff);
    color: var(--color-primary, #0f172a);
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold, 600);
    border: 1px solid #ffffff;
    border-radius: var(--radius-sm, 4px);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-primary-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-trust span {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #cbd5e1;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    color: #94a3b8;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: scrollIndicatorPulse 2.8s ease-in-out infinite;
}

.hero-scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-accent, #dc2626);
    font-size: 0.75rem;
}

@keyframes scrollIndicatorPulse {

    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================================
   04. ABOUT SCIRIDGE
========================================================= */

.about-section {
    padding: clamp(75px, 7.5vw, 115px) 0;
    background: var(--color-white, #ffffff);
    overflow: hidden;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.about-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 45px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(40px, 6vw, 95px);
    align-items: stretch;
}

/* =========================================================
   ABOUT VISUAL — IMAGE ONLY
========================================================= */

.about-visual {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 620px;
    overflow: hidden;
}

.about-technology-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrap:hover .about-technology-image {
    transform: scale(1.025);
}

.about-content {
    max-width: 720px;
    align-self: center;
}

.about-lead {
    max-width: 680px;
    margin: 0 0 20px;
    color: var(--color-text-dark, #0f172a);
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.about-lead span {
    color: var(--color-accent, #dc2626);
}

.about-description {
    max-width: 62ch;
    margin: 0 0 16px;
    color: var(--color-text-light, #475569);
    font-size: 0.95rem;
    line-height: 1.75;
}

.about-principles {
    margin-top: 32px;
    border-top: 1px solid var(--color-border, #e2e8f0);
}

.about-principle {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.about-principle strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-dark, #0f172a);
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: 1rem;
    font-weight: var(--weight-semibold, 600);
}

.about-principle p {
    margin: 0;
    color: var(--color-text-light, #475569);
    font-size: 0.875rem;
    line-height: 1.65;
}

.about-link {
    margin-top: 26px;
}

/* =========================================================
   05. SERVICES SECTION
========================================================= */

.services-section {
    padding: clamp(80px, 8vw, 120px) 0;
    background: #f7f4ed;
    color: #111111;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.services-bg-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
}

.services-bg-orbit {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -350px;
    top: 8%;
    z-index: -2;
    border: 1px solid rgba(220, 38, 38, 0.14);
    border-radius: 50%;
    pointer-events: none;
    animation: servicesOrbit 16s ease-in-out infinite;
}

.services-bg-orbit::before,
.services-bg-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
}

.services-bg-orbit::before {
    inset: 80px;
}

.services-bg-orbit::after {
    inset: 175px;
}

@keyframes servicesOrbit {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-20px, 18px, 0) rotate(4deg);
    }
}

.services-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 16px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.services-top-description {
    max-width: 440px;
    margin: 0;
    color: var(--color-text-dark);
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: right;
}

.services-intro {
    max-width: 850px;
    margin-bottom: 45px;
}

.service-featured {
    min-height: clamp(380px, 36vw, 430px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    padding: clamp(28px, 3vw, 38px);
    margin-bottom: 1px;
    background: linear-gradient(135deg, #161e2e, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm, 6px);
    overflow: hidden;
    transition: border-color 0.35s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease;
}

.service-featured:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.service-featured-content {
    position: relative;
    z-index: 3;
    align-self: center;
    max-width: 620px;
}

.service-label {
    display: block;
    margin-bottom: 12px;
    color: var(--color-accent, #dc2626);
    font-size: 0.72rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-featured-content h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.service-featured-description {
    max-width: 58ch;
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.75;
}

.service-capability-list,
.service-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-capability-list span,
.service-mini-tags span {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm, 4px);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.service-featured:hover .service-capability-list span {
    border-color: rgba(220, 38, 38, 0.35);
    color: #ffffff;
}

.service-featured-visual {
    position: relative;
    min-height: 300px;
    align-self: stretch;
}

.service-data-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dataOrbit 12s linear infinite;
}

.orbit-large {
    width: 290px;
    height: 290px;
}

.orbit-medium {
    width: 205px;
    height: 205px;
    border-color: rgba(255, 255, 255, 0.1);
    animation-duration: 9s;
    animation-direction: reverse;
}

.orbit-small {
    width: 120px;
    height: 120px;
    border-color: rgba(220, 38, 38, 0.4);
    animation-duration: 7s;
}

@keyframes dataOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.service-data-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background: #1e293b;
    border: 1px solid rgba(220, 38, 38, 0.55);
    border-radius: 50%;
    color: #ffffff;
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: 19px;
    font-weight: var(--weight-medium, 500);
    box-shadow: 0 0 0 12px rgba(220, 38, 38, 0.04);
    animation: corePulse 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes corePulse {

    0%,
    100% {
        box-shadow: 0 0 0 12px rgba(220, 38, 38, 0.04);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(220, 38, 38, 0.08);
    }
}

.service-data-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-accent, #dc2626);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(220, 38, 38, 0.65);
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-one {
    top: 19%;
    left: 32%;
}

.node-two {
    right: 20%;
    top: 34%;
    animation-delay: -0.9s;
}

.node-three {
    bottom: 21%;
    left: 39%;
    animation-delay: -1.8s;
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.65;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Secondary Services Grid */
.services-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.service-secondary-card {
    position: relative;
    min-height: clamp(280px, 27vw, 310px);
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm, 6px);
    overflow: hidden;
    transition: background 0.35s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease;
}

.service-secondary-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -75px;
    bottom: -75px;
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-radius: 50%;
    transition: transform 0.6s ease;
    pointer-events: none;
}

.service-secondary-card:hover {
    transform: translateY(-5px);
    background: #1f2937;
    border-color: rgba(220, 38, 38, 0.35);
}

.service-secondary-card:hover::before {
    transform: scale(1.4);
}

.service-secondary-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: auto;
}

.service-secondary-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #94a3b8;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm, 4px);
    transition: transform 0.35s ease, border-color 0.25s ease, color 0.25s ease;
}

.service-secondary-card:hover .service-secondary-icon {
    transform: translate(2px, -2px);
    color: var(--color-accent, #dc2626);
    border-color: rgba(220, 38, 38, 0.45);
}

.service-secondary-content h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: 1.35rem;
    font-weight: var(--weight-medium, 500);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-secondary-content p {
    max-width: 320px;
    margin: 0 0 18px;
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.65;
}

.service-card-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    font-size: 0;
}

.services-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 36px;
}

.services-bottom p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.8125rem;
}

/* =========================================================
   06. WHY SCIRIDGE SECTION
========================================================= */

.why-section {
    padding: clamp(80px, 8vw, 120px) 0;
    background: var(--color-bg-light, #f8fafc);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.why-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    gap: clamp(40px, 6vw, 110px);
    align-items: end;
    margin-bottom: 60px;
}

.why-intro-right {
    max-width: 490px;
}

.why-intro-line {
    width: 38px;
    height: 2px;
    margin-bottom: 20px;
    background: var(--color-accent, #dc2626);
}

.why-intro-right p {
    margin: 0 0 16px;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.75;
}

.why-experience {
    display: grid;
    grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(40px, 5.5vw, 85px);
    align-items: stretch;
}

.why-statement {
    min-height: clamp(480px, 48vw, 590px);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3vw, 38px);
    background: #0f172a;
    color: #ffffff;
    overflow: hidden;
    border-radius: var(--radius-sm, 6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.why-statement:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.16);
}

.why-statement::before,
.why-statement::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.why-statement::before {
    width: 430px;
    height: 430px;
    right: -280px;
    bottom: -245px;
    border: 1px solid rgba(220, 38, 38, 0.25);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-statement::after {
    width: 300px;
    height: 300px;
    right: -200px;
    bottom: -180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-statement:hover::before {
    transform: scale(1.1);
}

.why-statement-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.why-statement-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: auto 0;
    padding: 32px 0;
}

.why-statement-small {
    display: block;
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-statement-content h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: var(--weight-medium, 500);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.why-statement-content h3 em {
    color: var(--color-accent, #dc2626);
    font-style: normal;
}

.why-statement-content p {
    max-width: 48ch;
    margin: 0 0 16px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.75;
}

.why-statement-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.why-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent, #dc2626);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    animation: whyPulse 2.2s ease-out infinite;
}

@keyframes whyPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Right Interactive List */
.why-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border, #cbd5e1);
}

.why-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 20px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border, #cbd5e1);
    cursor: pointer;
    transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.why-item:hover {
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.7);
}

.why-item-main {
    min-width: 0;
}

.why-item-main h3 {
    margin: 0;
    color: var(--color-text-dark, #0f172a);
    font-size: 1.15rem;
    font-weight: var(--weight-semibold, 600);
    line-height: 1.35;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.why-item-description {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.why-item-description p {
    overflow: hidden;
    margin: 0;
    padding-top: 0;
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.7;
    transition: padding-top 0.35s ease;
}

.why-item-icon {
    padding-top: 4px;
    color: #94a3b8;
    font-size: 1rem;
    opacity: 0.7;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.why-item.is-active {
    padding: 26px 16px;
    background: #ffffff;
    border-radius: var(--radius-sm, 4px);
}

.why-item.is-active .why-item-main h3 {
    color: var(--color-accent, #dc2626);
}

.why-item.is-active .why-item-description {
    grid-template-rows: 1fr;
    opacity: 1;
}

.why-item.is-active .why-item-description p {
    padding-top: 10px;
}

.why-item.is-active .why-item-icon {
    color: var(--color-accent, #dc2626);
    opacity: 1;
    transform: translate(3px, -3px);
}

.why-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border, #cbd5e1);
}

.why-bottom-copy>span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 0.6875rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.why-bottom-copy p {
    margin: 0;
    color: #334155;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* =========================================================
   07. HOW WE WORK (PROCESS)
========================================================= */

.process-section {
    padding: clamp(80px, 8vw, 120px) 0;
    background: #090d16;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.process-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -280px;
    top: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12), transparent 68%);
    filter: blur(15px);
    pointer-events: none;
    z-index: -1;
}

.process-header-line {
    width: 38px;
    height: 2px;
    margin-bottom: 20px;
    background: var(--color-accent, #dc2626);
}

.process-statement {
    display: block;
    max-width: 820px;
    margin-bottom: 60px;
}

.process-statement-content {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.process-statement-content span {
    flex: 0 0 auto;
    color: #94a3b8;
    font-size: 0.6875rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.process-statement-content p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.75;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step {
    position: relative;
    min-height: clamp(330px, 36vw, 385px);
    padding: 30px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: background 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
}

.process-step:first-child .process-step-content h3 {
    color: var(--color-accent, #dc2626);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.process-step-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.process-step-label {
    color: #94a3b8;
    font-size: 0.6875rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-left: auto;
}

.process-step-line {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 24px 0 36px;
    background: rgba(255, 255, 255, 0.12);
}

.process-step-line span {
    position: absolute;
    left: 0;
    top: -1px;
    width: 28px;
    height: 3px;
    background: var(--color-accent, #dc2626);
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .process-step-line span {
    width: 64px;
}

.process-step-content h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: var(--weight-medium, 500);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.process-step-content p {
    max-width: 230px;
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.7;
}

.process-step-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-step-content li {
    position: relative;
    padding-left: 14px;
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.5;
}

.process-step-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    background: #64748b;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.process-step:hover .process-step-content li::before {
    background: var(--color-accent, #dc2626);
}

.process-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-bottom-copy>span {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 0.6875rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.process-bottom-copy p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
}

.process-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease, transform 0.3s ease;
}

.process-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0f172a;
    gap: 16px;
    transform: translateY(-2px);
}

/* =========================================================
   08. SOLUTIONS SECTION
========================================================= */

.solutions-section {
    padding: clamp(80px, 8vw, 120px) 0;
    background: #ffffff;
    color: var(--color-text-dark, #0f172a);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.solutions-bg {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -330px;
    top: 80px;
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.solutions-list {
    width: 100%;
    border-top: 1px solid var(--color-border, #e2e8f0);
}

.solution-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px;
    gap: 28px;
    align-items: center;
    min-height: clamp(190px, 21vw, 230px);
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
    color: var(--color-text-dark, #0f172a);
    overflow: hidden;
    transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.solution-row::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent, #dc2626);
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-row:hover::before {
    width: 100%;
}

.solution-row:hover {
    padding-left: 18px;
    padding-right: 18px;
    background: var(--color-bg-light, #f8fafc);
}

.solution-row-main {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) minmax(250px, 1fr) minmax(230px, 0.8fr);
    gap: 32px;
    align-items: center;
}

.solution-row-category {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 0.6875rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.solution-row-title h3 {
    margin: 0;
    color: var(--color-text-dark, #0f172a);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.2;
    letter-spacing: -0.03em;
    transition: color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-row:hover .solution-row-title h3 {
    color: var(--color-accent, #dc2626);
    transform: translateX(4px);
}

.solution-row-description p {
    max-width: 48ch;
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.75;
}

.solution-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-row-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid var(--color-border, #cbd5e1);
    color: #334155;
    font-size: 0.6875rem;
    font-weight: var(--weight-semibold, 600);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: var(--radius-sm, 4px);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.solution-row:hover .solution-row-meta span {
    border-color: #94a3b8;
    color: #0f172a;
}

.solution-row-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.solution-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border, #cbd5e1);
    color: var(--color-text-dark, #0f172a);
    font-size: 0.875rem;
    border-radius: var(--radius-sm, 4px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.solution-row:hover .solution-arrow {
    transform: rotate(45deg);
    background: var(--color-accent, #dc2626);
    border-color: var(--color-accent, #dc2626);
    color: #ffffff;
}

.solutions-footer {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 1.7fr) auto;
    gap: 35px;
    align-items: center;
    padding-top: 42px;
}

.solutions-footer-line {
    width: 38px;
    height: 2px;
    background: var(--color-accent, #dc2626);
}

.solutions-footer-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-text-dark, #0f172a);
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold, 600);
}

.solutions-footer-content p {
    max-width: 600px;
    margin: 0;
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.65;
}

/* =========================================================
   09. TESTIMONIALS SECTION
========================================================= */

.testimonials-section {
    padding: clamp(80px, 8vw, 120px) 0;
    background: var(--color-bg-light, #f8fafc);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.testimonials-bg {
    position: absolute;
    width: 520px;
    height: 520px;
    left: -270px;
    bottom: -220px;
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    min-height: clamp(320px, 34vw, 355px);
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: var(--radius-sm, 6px);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.25s ease,
        box-shadow 0.35s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent, #dc2626);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.35);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.testimonial-card:hover::before {
    width: 100%;
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 28px;
}

.testimonial-rating {
    color: var(--color-accent, #dc2626);
    font-size: 0.8125rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    max-width: 48ch;
    margin: 0;
    color: var(--color-text-dark, #0f172a);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.testimonial-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--color-border, #f1f5f9);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--color-text-dark, #0f172a);
    font-size: 0.875rem;
    font-weight: var(--weight-semibold, 600);
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.4;
}

.testimonial-quote-mark {
    color: var(--color-accent, #dc2626);
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 0.6;
    opacity: 0.6;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 35px;
}

.testimonials-progress {
    display: none;
}

.testimonials-buttons {
    display: flex;
    gap: 8px;
}

.testimonial-button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--color-border, #cbd5e1);
    color: var(--color-text-dark, #0f172a);
    border-radius: var(--radius-sm, 4px);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.testimonial-button:hover {
    background: var(--color-accent, #dc2626);
    border-color: var(--color-accent, #dc2626);
    color: #ffffff;
    transform: translateY(-2px);
}

.testimonials-statement {
    display: block;
    max-width: 720px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border, #cbd5e1);
}

.testimonials-statement p {
    margin: 0;
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.75;
}

/* =========================================================
   10. PARTNERSHIP SECTION
========================================================= */

.partnership-section {
    position: relative;
    padding: clamp(80px, 8vw, 120px) 0;
    background: var(--color-bg-dark, #0b0f19);
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partnership-section::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    top: -310px;
    right: -310px;
    border: 1px solid rgba(220, 38, 38, 0.14);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.partnership-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    z-index: -1;
}

.partnership-orbit-one {
    width: 260px;
    height: 260px;
    top: 20%;
    right: 12%;
    border: 1px solid rgba(220, 38, 38, 0.16);
}

.partnership-orbit-two {
    width: 120px;
    height: 120px;
    top: 34%;
    right: 17%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.partnership-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.partnership-main {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(40px, 6vw, 96px);
    padding: clamp(45px, 5.5vw, 75px) 0 clamp(50px, 6vw, 85px);
    align-items: end;
}

.partnership-intro {
    max-width: 580px;
}

.partnership-lead {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: var(--weight-medium, 500);
    line-height: 1.6;
}

.partnership-intro>p:not(.partnership-lead) {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.75;
}

.partnership-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.partnership-principle {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 2.5vw, 32px);
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm, 6px);
    transition: background 0.3s ease, border-color 0.25s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.partnership-principle:hover {
    background: #1f2937;
    border-color: rgba(220, 38, 38, 0.45);
    transform: translateY(-5px);
}

.partnership-principle-content {
    margin-top: auto;
}

.partnership-principle-content h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.25;
}

.partnership-principle-content p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.7;
}

.partnership-cta {
    padding-top: clamp(40px, 5vw, 60px);
}

.partnership-cta-line {
    width: 100%;
    height: 1px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.12);
}

.partnership-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.partnership-cta-content span {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 0.6875rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.partnership-cta-content p {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: var(--weight-medium, 500);
    line-height: 1.4;
}

.partnership-cta-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 28px;
    background: var(--color-accent, #dc2626);
    color: #ffffff;
    border: 1px solid var(--color-accent, #dc2626);
    border-radius: var(--radius-sm, 4px);
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold, 600);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
}

.partnership-cta-button:hover {
    background: var(--color-accent-dark, #b91c1c);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
    gap: 16px;
    transform: translateY(-2px);
}

/* =========================================================
   11. FAQ PREVIEW SECTION
========================================================= */

.faq-preview-section {
    position: relative;
    padding: clamp(80px, 8vw, 120px) 0;
    background: var(--color-bg-light, #f8fafc);
    border-bottom: 1px solid var(--color-border, #e2e8f0);
    overflow: hidden;
    isolation: isolate;
}

.faq-preview-intro {
    max-width: 490px;
}

.faq-preview-intro p {
    margin: 0 0 16px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-list {
    width: 100%;
    border-top: 1px solid var(--color-border, #cbd5e1);
}

.faq-item {
    border-bottom: 1px solid var(--color-border, #cbd5e1);
    transition: background 0.25s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.6);
}

.faq-item summary {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 8px;
    color: var(--color-text-dark, #0f172a);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease, padding-left 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--color-accent, #dc2626);
    padding-left: 12px;
}

.faq-question {
    margin: 0;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: var(--weight-semibold, 600);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.faq-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border, #cbd5e1);
    background: #ffffff;
    color: var(--color-accent, #dc2626);
    font-size: 1.25rem;
    font-weight: 300;
    border-radius: var(--radius-sm, 4px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}

.faq-item[open] {
    background: #ffffff;
}

.faq-item[open] summary {
    padding-left: 12px;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--color-accent, #dc2626);
    border-color: var(--color-accent, #dc2626);
    color: #ffffff;
}

.faq-answer {
    max-width: 820px;
    padding: 0 48px 24px 12px;
}

.faq-answer p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 32px;
}

.faq-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 0.8125rem;
    font-weight: var(--weight-medium, 500);
}

/* =========================================================
   12. CONTACT / FINAL CONVERSION SECTION
========================================================= */

.contact-section {
    position: relative;
    padding: clamp(80px, 8vw, 120px) 0;
    background: var(--color-bg-dark, #0b0f19);
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.contact-orbit {
    position: absolute;
    border: 1px solid rgba(220, 38, 38, 0.14);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.contact-orbit-one {
    width: 720px;
    height: 720px;
    right: -360px;
    top: -160px;
}

.contact-orbit-two {
    width: 420px;
    height: 420px;
    right: -210px;
    top: -20px;
    border-color: rgba(255, 255, 255, 0.05);
}

.contact-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
    align-items: start;
    gap: clamp(40px, 6vw, 96px);
}

.contact-intro {
    max-width: 760px;
}

.contact-intro h2 {
    margin: 0 0 20px;
}

.contact-lead {
    max-width: 58ch;
    margin: 0 0 36px;
    color: #cbd5e1;
    font-size: clamp(0.95rem, 1.25vw, 1.1rem);
    line-height: 1.75;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 720px;
}

.contact-detail {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail-label {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 0.6875rem;
    font-weight: var(--weight-bold, 700);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail>span:last-child {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: var(--weight-medium, 500);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: var(--color-accent, #dc2626);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-note-line {
    width: 28px;
    height: 2px;
    flex: 0 0 28px;
    margin-top: 8px;
    background: var(--color-accent, #dc2626);
}

.contact-note p {
    max-width: 460px;
    margin: 0;
    color: #94a3b8;
    font-size: 0.8125rem;
    line-height: 1.65;
}

.contact-form-wrap {
    position: relative;
    padding: clamp(28px, 3vw, 38px);
    background: rgba(255, 255, 255, 0.98);
    color: var(--color-text-dark, #0f172a);
    border: 1px solid #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-sm, 6px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.contact-form-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.4);
}

.contact-form-top {
    display: flex;
    align-items: flex-start;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.contact-form-top h3 {
    margin: 0 0 4px;
    color: var(--color-text-dark, #0f172a);
    font-family: var(--font-display, var(--font-primary, inherit));
    font-size: 1.35rem;
    font-weight: var(--weight-semibold, 600);
    line-height: 1.25;
}

.contact-form-top p {
    margin: 0;
    color: var(--color-text-light, #475569);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form .form-group label {
    color: var(--color-text-dark, #0f172a);
    font-size: 0.75rem;
    font-weight: var(--weight-semibold, 600);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    border: 1px solid var(--color-border, #cbd5e1);
    border-radius: var(--radius-sm, 4px);
    outline: none;
    background: var(--color-white, #ffffff);
    color: var(--color-text-dark, #0f172a);
    font-family: var(--font-primary, inherit);
    font-size: 0.875rem;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-group input,
.contact-form .form-group select {
    height: 42px;
    padding: 0 12px;
}

.contact-form .form-group textarea {
    min-height: 100px;
    padding: 10px 12px;
    resize: vertical;
}

.contact-form .form-group input:hover,
.contact-form .form-group select:hover,
.contact-form .form-group textarea:hover {
    border-color: #94a3b8;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--color-accent, #dc2626);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.contact-submit {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 4px;
    padding: 0 20px;
    border: 1px solid var(--color-accent, #dc2626);
    background: var(--color-accent, #dc2626);
    color: #ffffff;
    font-family: var(--font-primary, inherit);
    font-size: 0.8125rem;
    font-weight: var(--weight-semibold, 600);
    cursor: pointer;
    border-radius: var(--radius-sm, 4px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
    background: var(--color-accent-dark, #b91c1c);
    border-color: var(--color-accent-dark, #b91c1c);
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.35);
    transform: translateY(-2px);
}

.contact-form-note {
    margin: 4px 0 0;
    color: var(--color-text-muted, #64748b);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

/* =========================================================
   13. CONSOLIDATED RESPONSIVE BREAKPOINTS
========================================================= */

/* --- TABLET / LAPTOP (Max 1024px) --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
        gap: 36px;
    }

    .service-featured {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
    }

    .service-featured-visual {
        display: none;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(4) {
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .solution-row {
        grid-template-columns: minmax(0, 1fr) 70px;
    }

    .solution-row-main {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .solution-row-meta {
        grid-column: 1 / -1;
    }

    .testimonial-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .partnership-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .partnership-principles {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-visual {
        min-height: 560px;
    }

    .about-image-wrap {
        max-width: 460px;
        min-height: 560px;
    }

}

/* --- TABLET PORTRAIT / MOBILE (Max 768px) --- */
@media (max-width: 768px) {

    .home-page .section,
    .about-section,
    .services-section,
    .why-section,
    .process-section,
    .solutions-section,
    .testimonials-section,
    .partnership-section,
    .faq-preview-section,
    .contact-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .section-heading,
    .solutions-header,
    .testimonials-header,
    .process-header,
    .why-intro,
    .faq-preview-header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
    }

    .services-top-description,
    .solutions-header-copy p {
        text-align: left;
    }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-content {
        order: 1;
        padding-top: 40px;
    }

    .hero-form-card {
        order: 2;
        max-width: 100%;
    }

    .hero-background {
        background:
            linear-gradient(180deg, rgba(11, 15, 25, 0.88), rgba(11, 15, 25, 0.98)),
            url("../images/hero-bg.jpg") center / cover no-repeat;
    }

    /* About */
    .about-grid,
    .why-experience {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Services & Process */
    .services-secondary,
    .process-timeline,
    .partnership-principles {
        grid-template-columns: 1fr;
    }

    .service-secondary-card {
        min-height: auto;
    }

    .process-step {
        min-height: auto;
        padding: 20px 0;
        border-left: 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .process-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Solutions */
    .solution-row {
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 16px;
        min-height: 0;
        padding: 22px 0;
    }

    .solution-row-main {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .solutions-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Why */
    .why-statement {
        min-height: auto;
    }

    .why-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Testimonials */
    .testimonial-card {
        flex-basis: 100%;
        min-height: auto;
    }

    /* Partnership & FAQ */
    .partnership-principle {
        min-height: auto;
    }

    .partnership-cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .partnership-cta-button {
        width: 100%;
    }

    .faq-answer {
        padding-right: 16px;
    }

    .faq-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Contact */
    .contact-details {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .about-visual {
        min-height: 480px;
    }

    .about-image-wrap {
        width: 100%;
        max-width: none;
        min-height: 480px;
    }

}


/* --- SMALL MOBILE (Max 480px) --- */
@media (max-width: 480px) {

    .container,
    .about-container,
    .services-container,
    .why-container,
    .partnership-container,
    .contact-container {
        width: calc(100% - 32px);
    }

    .form-row,
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-primary-button,
    .process-button {
        width: 100%;
    }

    .why-item {
        grid-template-columns: minmax(0, 1fr) 20px;
    }

    .solution-row {
        grid-template-columns: minmax(0, 1fr) 36px;
    }
}

/* =========================================================
   14. ACCESSIBILITY & REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal],
    [data-reveal].reveal-from-up,
    [data-reveal].reveal-from-down {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-background {
        transform: none !important;
    }

    .about-technology-image {
        transition: none;
    }

    .about-image-wrap:hover .about-technology-image {
        transform: none;
    }

}