/* ==========================================================================
   BASE
   ========================================================================== */

html {
    font-size: 16px;
}

body {
    background-color: #ffffff;
    color: #334155;
}

.page-glow {
    display: none;
}

.back-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: #4f46e5;
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.35);
    transition:
        opacity 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.back-top:hover {
    background-color: #4338ca;
    color: #ffffff;
    transform: translateY(-2px);
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.back-top i {
    font-size: 1.125rem;
    line-height: 1;
}

/* ==========================================================================
   LAYOUT CONTAINERS & SECTION WRAPPERS
   ========================================================================== */

/* Standard Page Container */
.container-page {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .container-page {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .container-page {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Light Section Padding */
.section-light {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
    scroll-margin-top: 6rem;
}
@media (min-width: 640px) {
    .section-light {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.error-page-shell {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.error-page {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-page-content {
    max-width: 56rem;
    width: 100%;
}

.error-page-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 22rem;
    padding: 3rem 1.5rem;
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.18);
}

@media (min-width: 640px) {
    .error-page-card {
        min-height: 28rem;
        padding: 5rem 2.5rem;
    }
}

.error-page .body-text {
    margin-bottom: 2rem;
}

.error-page .careers-empty-actions {
    justify-content: center;
}

.error-page .btn-primary,
.error-page .btn-secondary {
    justify-content: center;
}

/* Dark Section Padding */
.section-dark {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #0b0f19;
    color: #ffffff;
    scroll-margin-top: 6rem;
}
@media (min-width: 640px) {
    .section-dark {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Muted Section Padding */
.section-muted {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f8fafc;
    scroll-margin-top: 6rem;
}
@media (min-width: 640px) {
    .section-muted {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* ==========================================================================
     TYPOGRAPHY & HEADINGS
     ========================================================================== */

/* Section Pre-heading Tag (Light Backgrounds) */
.tag-label-light {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
    .tag-label-light {
        font-size: 0.875rem;
    }
}

/* Section Pre-heading Tag (Dark Backgrounds) */
.tag-label-dark {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #818cf8;
    margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
    .tag-label-dark {
        font-size: 0.875rem;
    }
}

/* Primary Section Headings */
.heading-section-light {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .heading-section-light {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.heading-section-dark {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .heading-section-dark {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

/* ==========================================================================
     BUTTONS & CALL-TO-ACTIONS
     ========================================================================== */

/* Primary Button (Indigo Filled) */
a.btn-primary,
button.btn-primary,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background-color: #4f46e5;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px 0 rgba(79, 70, 229, 0.2);
    text-decoration: none;
    cursor: pointer;
}
a.btn-primary:hover,
button.btn-primary:hover,
.btn-primary:hover {
    background-color: #4338ca;
    color: #ffffff;
}
.btn-primary svg {
    width: 1rem;
    height: 1rem;
}

/* Secondary Button (Outline) */
a.btn-secondary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
a.btn-secondary:hover,
.btn-secondary:hover {
    background-color: #f8fafc;
    color: #4f46e5;
}

/* Light/White Button (For Dark Banners) */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4f46e5;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
.btn-white:hover {
    background-color: #eef2ff;
}

/* Circular Arrow Navigation Controls */
.btn-nav-control {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: background-color 0.2s ease;
    cursor: pointer;
}
.btn-nav-control:hover {
    background-color: #f8fafc;
}
.btn-nav-control svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ==========================================================================
     CARDS & CONTAINERS
     ========================================================================== */

/* Dark Service Card */
.card-service-dark {
    background-color: #131b2e;
    border: 1px solid #1e293b;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease-in-out;
}
@media (min-width: 640px) {
    .card-service-dark {
        padding: 2rem;
    }
}
.card-service-dark:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-0.25rem);
}

/* Light Case Study Card */
.card-case-study {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
}
.card-case-study:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Team Profile Card */
.card-team-member {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Testimonial Card */
.card-testimonial {
    background-color: rgba(248, 250, 252, 0.7);
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (min-width: 640px) {
    .card-testimonial {
        padding: 2rem;
    }
}

/* ==========================================================================
     ICON CONTAINERS
     ========================================================================== */

/* Dark Card Icon Box */
.icon-box-dark {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.icon-box-dark svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Smaller Process Icon Box */
.icon-box-step {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background-color: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* ==========================================================================
     HEADER & NAVIGATION SPECIFICS
     ========================================================================== */

.nav-link,
.nav-link-active {
    display: inline-flex;
    align-items: center;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.25;
    text-decoration: none;
}
.nav-link {
    font-weight: 500;
    color: #475569;
    transition: color 0.15s ease;
}
.nav-link:hover {
    color: #4f46e5;
}
.nav-link-active {
    font-weight: 600;
    color: #4f46e5;
    position: relative;
}
.nav-link-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #4f46e5;
}
header nav .nav-link,
header nav .nav-link-active {
    height: 100%;
}
header .btn-primary {
    padding: 0.5rem 1.25rem;
}

/* ==========================================================================
     FOOTER SPECIFICS
     ========================================================================== */

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-link:hover {
    color: #4f46e5;
}

.footer-social-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background-color: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-social-icon:hover {
    background-color: #4f46e5;
    color: #ffffff;
}

.footer-site {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 1.75rem 1.25rem;
}
@media (min-width: 640px) {
    .footer-grid {
        gap: 2.5rem;
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copy {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #475569;
    margin: 0 0 1rem;
}

.footer-social-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-legal {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
    }
}

.footer-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-legal-text {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

/* ==========================================================================
     HERO, BODY COPY & SECTION INTROS
     ========================================================================== */

.section-hero {
    position: relative;
    overflow: hidden;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    background:
        radial-gradient(
            circle at top right,
            rgba(79, 70, 229, 0.08),
            transparent 42%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(59, 130, 246, 0.06),
            transparent 38%
        ),
        #ffffff;
    color: #0f172a;
    scroll-margin-top: 6rem;
}
@media (min-width: 640px) {
    .section-hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}
@media (min-width: 1024px) {
    .section-hero {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.75;
}

.hero-glow-primary {
    top: -8rem;
    right: -4rem;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(
        circle,
        rgba(79, 70, 229, 0.18) 0%,
        rgba(79, 70, 229, 0) 70%
    );
}

.hero-glow-secondary {
    bottom: -10rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(59, 130, 246, 0) 70%
    );
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
    opacity: 0.65;
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .hero-shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 4rem;
    }
}

.hero-copy {
    max-width: 40rem;
}

.hero-eyebrow {
    margin: 0 0 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4f46e5;
}

.hero-title {
    margin: 0 0 1.25rem;
    font-size: 2.25rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title-accent {
    display: block;
    background-image: linear-gradient(to right, #4f46e5, #6366f1, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    margin: 0 0 2rem;
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}
@media (min-width: 640px) {
    .hero-lead {
        font-size: 1.125rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}
@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}

.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease;
}
.hero-link:hover {
    color: #4f46e5;
}

.btn-primary-lg {
    padding: 0.9375rem 1.75rem;
    font-size: 0.9375rem;
}

.hero-visual {
    position: relative;
    min-height: 20rem;
}

.hero-panel {
    position: absolute;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.hero-panel-main {
    inset: 0 2.5rem 3.5rem 0;
    padding: 1rem 1.25rem 1.5rem;
}

.hero-panel-top {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.hero-panel-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    background-color: rgba(148, 163, 184, 0.35);
}

.hero-panel-line {
    height: 0.625rem;
    margin-bottom: 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(
        90deg,
        rgba(148, 163, 184, 0.35),
        rgba(226, 232, 240, 0.9)
    );
}

.hero-panel-line-wide {
    width: 72%;
}

.hero-panel-blocks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hero-panel-block {
    aspect-ratio: 1.1;
    border-radius: 0.75rem;
    background: linear-gradient(
        180deg,
        rgba(79, 70, 229, 0.12),
        rgba(59, 130, 246, 0.04)
    );
    border: 1px solid rgba(129, 140, 248, 0.16);
}

.hero-panel-code {
    right: 0;
    bottom: 1rem;
    width: 14rem;
    padding: 1rem;
}

.hero-code-line {
    height: 0.5rem;
    margin-bottom: 0.625rem;
    border-radius: 9999px;
    background: rgba(148, 163, 184, 0.28);
}

.hero-code-line:last-child {
    margin-bottom: 0;
}

.hero-code-accent {
    width: 55%;
    background: linear-gradient(90deg, #818cf8, #60a5fa);
}

.hero-code-short {
    width: 68%;
}

.hero-panel-stat {
    left: 1.5rem;
    bottom: 0;
    padding: 0.875rem 1rem;
    min-width: 9rem;
}

.hero-panel-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
}

.hero-panel-stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

.hero-stats {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.hero-stats .stat-number {
    color: #0f172a;
}

.hero-stats .stat-label {
    color: #64748b;
}

.heading-hero {
    font-size: 1.875rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 1.25rem;
}
@media (min-width: 640px) {
    .heading-hero {
        font-size: 2.25rem;
    }
}
@media (min-width: 768px) {
    .heading-hero {
        font-size: 3rem;
    }
}
@media (min-width: 1024px) {
    .heading-hero {
        font-size: 3.75rem;
        line-height: 1.1;
    }
}

.heading-hero-accent {
    background-image: linear-gradient(to right, #4f46e5, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.heading-card-light {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
@media (min-width: 640px) {
    .heading-card-light {
        font-size: 1.25rem;
    }
}

.heading-card-dark {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.body-text {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #475569;
}
@media (min-width: 640px) {
    .body-text {
        font-size: 1rem;
    }
}

.section-dark .body-text {
    color: #94a3b8;
}

.section-intro {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-intro-left {
    max-width: 42rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) {
    .section-intro-left {
        margin-bottom: 4rem;
    }
}

.section-header-split {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) {
    .section-header-split {
        margin-bottom: 4rem;
    }
}
@media (min-width: 768px) {
    .section-header-split {
        flex-direction: row;
        align-items: flex-end;
    }
}

.section-header-copy {
    max-width: 42rem;
}

.section-header-cta {
    margin-top: 1.5rem;
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.15s ease;
}
.btn-text-link:hover {
    color: #4338ca;
}
.section-dark .btn-text-link {
    color: #818cf8;
}
.section-dark .btn-text-link:hover {
    color: #c7d2fe;
}
.btn-text-link svg {
    width: 1rem;
    height: 1rem;
}

/* ==========================================================================
     BADGES, STATS & LISTS
     ========================================================================== */

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.375rem 0.5rem;
    border-radius: 9999px;
    border: 1px solid #fde68a;
    background-color: #fffbeb;
    font-size: 0.75rem;
    font-weight: 600;
    color: #92400e;
}
@media (min-width: 640px) {
    .badge-trust {
        margin-bottom: 1.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        font-weight: 700;
    }
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .stats-row-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.stats-row-ruled {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.section-dark .stats-row-ruled {
    border-top-color: #1e293b;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}
@media (min-width: 640px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.section-dark .stat-number {
    color: #ffffff;
}

.stat-label {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}
@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

.section-dark .stat-label {
    color: #94a3b8;
}

.feature-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
@media (min-width: 640px) {
    .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
}

.feature-list i {
    color: #4f46e5;
    margin-top: 0.125rem;
}

.feature-list a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.feature-list a:hover {
    color: #4f46e5;
}

/* ==========================================================================
     GRIDS
     ========================================================================== */

.card-service-dark[id] {
    scroll-margin-top: 6rem;
}

.grid-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .grid-services {
        gap: 2rem;
    }
}
@media (min-width: 768px) {
    .grid-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .grid-services {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .grid-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .grid-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.product-grid-item {
    display: flex;
    min-width: 0;
}

.grid-cards .card-case-study {
    width: 100%;
    height: 100%;
}

.grid-team {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .grid-team {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .grid-team {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }
}

.team-grid-item {
    display: flex;
    min-width: 0;
}

.grid-team .card-team-member {
    width: 100%;
    height: 100%;
}

.team-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.team-slider::-webkit-scrollbar {
    display: none;
}

.team-slide {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
}
@media (min-width: 640px) {
    .team-slide {
        flex-basis: calc((100% - 1.5rem) / 2);
    }
}
@media (min-width: 1024px) {
    .team-slide {
        flex-basis: calc((100% - 4.5rem) / 4);
    }
}

.product-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slide {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
}
@media (min-width: 768px) {
    .product-slide {
        flex-basis: calc((100% - 2rem) / 2);
    }
}
@media (min-width: 1024px) {
    .product-slide {
        flex-basis: calc((100% - 4rem) / 3);
    }
}

.split-feature {
    display: grid;
    align-items: center;
    gap: 2.5rem;
}
@media (min-width: 1024px) {
    .split-feature {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.split-feature-media img {
    width: 100%;
    height: auto;
    max-height: 36rem;
    object-fit: cover;
    border-radius: 1rem;
}

.logo-strip {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.logo-strip-heading {
    margin: 0 0 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    text-align: center;
}

.logo-strip-carousel {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 1.25rem 0;
}

.logo-strip-track {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
    will-change: transform;
    animation: logo-strip-scroll 20s linear infinite;
}

.logo-strip-carousel:hover .logo-strip-track {
    animation-play-state: paused;
}

.logo-strip-link {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-strip-link:hover {
    opacity: 1;
}

.logo-strip-logo {
    width: auto;
    height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-strip-link:hover .logo-strip-logo {
    filter: grayscale(0%);
}

.logo-strip-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-strip-link:hover .logo-strip-name {
    filter: grayscale(0%);
}

@keyframes logo-strip-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .logo-strip-track {
        gap: 2.5rem;
    }

    .logo-strip-link {
        min-width: 100px;
    }

    .logo-strip-logo {
        height: 36px;
        max-width: 120px;
    }
}

/* ==========================================================================
     CARD INTERNALS, CHIPS & TEAM
     ========================================================================== */

.card-case-study img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.card-case-study-media {
    background-color: #f1f5f9;
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.card-case-study-body {
    padding: 1.5rem 1.5rem 1rem;
}

.card-case-study-footer {
    padding: 0 1.5rem 1.5rem;
}

.card-case-study a {
    text-decoration: none;
}
.card-case-study .heading-card-light a {
    color: inherit;
}
.card-case-study .btn-text-link {
    color: #4f46e5;
}
.card-case-study .btn-text-link:hover {
    color: #4338ca;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
}

.chip {
    border-radius: 9999px;
    background-color: #eef2ff;
    color: #4338ca;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
}

.chip-success {
    background-color: #ecfdf5;
    color: #047857;
}

.chip-warning {
    background-color: #fffbeb;
    color: #92400e;
}

.chip-danger {
    background-color: #fef2f2;
    color: #b91c1c;
}

.product-slide .card-case-study {
    width: 100%;
    height: 100%;
}

a.card-case-study {
    color: inherit;
    text-decoration: none;
}

.job-meta {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.job-meta li,
.job-meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
}

.job-meta i,
.job-meta-row i {
    color: #4f46e5;
}

.job-meta-label {
    font-weight: 600;
    color: #0f172a;
}

.job-detail-back {
    margin-bottom: 1.5rem;
}

.job-detail-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.18);
}

@media (min-width: 640px) {
    .job-detail-card {
        padding: 3rem;
    }
}

.job-detail-header {
    margin-bottom: 1.5rem;
}

.job-detail-header .heading-section-light {
    margin-bottom: 0.5rem;
}

.job-detail-facts {
    display: grid;
    gap: 1rem;
    margin: 0 0 2rem;
}

@media (min-width: 640px) {
    .job-detail-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .job-detail-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.job-detail-fact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background-color: #f8fafc;
}

.job-detail-fact .icon-box-light {
    flex-shrink: 0;
    margin-bottom: 0;
}

.job-detail-fact-label {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
}

.job-detail-fact-value {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
}

.job-detail-image {
    width: 100%;
    height: auto;
    max-height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.job-detail-actions {
    justify-content: flex-start;
    margin-top: 2rem;
}

.job-prose {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.job-prose p,
.job-prose li,
.job-prose span {
    color: #475569;
}

.job-prose h1,
.job-prose h2,
.job-prose h3,
.job-prose h4 {
    color: #0f172a;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.job-prose a {
    color: #4f46e5;
}

.job-prose ul,
.job-prose ol {
    margin: 0 0 1rem 1.25rem;
}

.card-team-photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #f1f5f9;
}

.card-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.card-team-meta {
    min-width: 0;
}

.card-team-socials {
    margin-top: auto;
    padding-top: 0.75rem;
}

.card-team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.card-team-position {
    margin: 0.125rem 0 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.card-team-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4f46e5;
    margin: 0 0 0.25rem;
}

.card-team-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.icon-box-light {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-contact {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
}

.card-contact a {
    color: #475569;
    text-decoration: none;
}
.card-contact a:hover {
    color: #4f46e5;
}

.card-contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.card-contact-info:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.card-contact-info a {
    color: #475569;
    text-decoration: none;
}
.card-contact-info a:hover {
    color: #4f46e5;
}

.card-contact-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.card-contact-info p,
.card-contact p {
    margin-bottom: 0;
}

.card-contact-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 0.25rem;
}

.careers-empty {
    display: grid;
    gap: 2.5rem;
}

.careers-empty-panel {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px -20px rgba(15, 23, 42, 0.35);
}
@media (min-width: 640px) {
    .careers-empty-panel {
        padding: 2.5rem;
    }
}

.careers-empty-badge {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    border-radius: 1rem;
    background-color: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.careers-empty-title {
    margin-bottom: 0.75rem;
}

.careers-empty-copy {
    max-width: 34rem;
    margin: 0 auto 1.5rem;
}

.careers-empty-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .careers-empty-actions {
        flex-direction: row;
        align-items: center;
    }
}

.careers-empty-note {
    margin: 1.25rem 0 0;
    font-size: 0.875rem;
    color: #64748b;
}

.careers-empty-note a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
}
.careers-empty-note a:hover {
    color: #4338ca;
}

.careers-empty-benefits-title {
    margin: 0 0 1.25rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.careers-empty-benefits-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .careers-empty-benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.careers-empty-benefit {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: left;
}

.careers-empty-benefit .icon-box-light {
    margin-bottom: 0.875rem;
}

.careers-empty-benefit-title {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.careers-empty-benefit .body-text {
    margin: 0;
    font-size: 0.875rem;
}

.icon-box-contact {
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    border-radius: 0.75rem;
    background-color: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.icon-box-contact svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-panel {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) {
    .contact-panel {
        padding: 3rem;
    }
}

.contact-layout {
    display: grid;
    align-items: stretch;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    }
}

.contact-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.contact-card-stack {
    display: grid;
    gap: 1rem;
}

.contact-form-column {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
}
@media (min-width: 1024px) {
    .contact-form-column {
        padding: 2rem;
    }
}

/* ==========================================================================
     FORMS
     ========================================================================== */

.form-stack {
    display: grid;
    gap: 1.25rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-column .form-stack {
    gap: 1.25rem;
    max-width: none;
    width: 100%;
    margin: 0;
}

.contact-form-column .form-success {
    max-width: none;
    margin: 0 0 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.375rem;
}

.form-actions {
    padding-top: 0.25rem;
}

.btn-primary-block {
    width: 100%;
}

input.form-input,
textarea.form-input,
textarea.form-textarea {
    width: 100%;
    height: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: inherit;
    font-weight: 400;
    color: #0f172a;
    background-color: #ffffff;
    outline: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
}

input.form-input:focus,
textarea.form-input:focus,
textarea.form-textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background-color: #ffffff;
    color: #0f172a;
}

input.form-input::placeholder,
textarea.form-input::placeholder,
textarea.form-textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

textarea.form-textarea {
    min-height: 7.5rem;
    resize: none;
}

.form-success {
    max-width: 48rem;
    margin: 0 auto 1.25rem;
    border-radius: 0.75rem;
    background-color: #ecfdf5;
    color: #047857;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

h1.heading-hero,
h2.heading-section-light,
h3.heading-card-light,
h3.card-team-name,
h3.card-contact-title,
h4.footer-heading {
    color: #0f172a;
}

/* ==========================================================================
   PRODUCT DETAIL & CHECKOUT
   ========================================================================== */

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .product-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .product-features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.product-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .product-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .product-pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.pricing-card.is-popular {
    border-color: #6366f1;
    box-shadow: 0 10px 25px -10px rgba(79, 70, 229, 0.35);
}

.pricing-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 9999px;
    background-color: #eef2ff;
    color: #4338ca;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.pricing-card-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-card-price-current {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.pricing-card-price-old {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.pricing-card-interval,
.pricing-card-note,
.pricing-option-interval {
    font-size: 0.875rem;
    color: #64748b;
}

.pricing-card-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.pricing-card-features li {
    position: relative;
    padding-left: 1.25rem;
    color: #475569;
}

.pricing-card-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #6366f1;
}

.product-pricing-picker {
    max-width: 42rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    background-color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.pricing-option:hover,
.pricing-option.is-selected {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.pricing-option-name {
    font-weight: 600;
    color: #0f172a;
}

.pricing-option-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 700;
    color: #0f172a;
}

.pricing-option-price-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.product-pricing-quantity {
    max-width: 12rem;
}

.checkout-layout {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
        align-items: start;
    }
}

.checkout-form-panel,
.checkout-summary {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background-color: #ffffff;
    padding: 1.5rem;
}
@media (min-width: 640px) {
    .checkout-form-panel,
    .checkout-summary {
        padding: 2rem;
    }
}

.checkout-form-panel .form-row + .form-row,
.checkout-form-panel .form-row + .checkout-payment-element {
    margin-top: 1rem;
}

.checkout-payment-element {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-payment-message {
    margin-top: 1rem;
    border-radius: 0.75rem;
    background-color: #fef2f2;
    color: #b91c1c;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.checkout-summary-list {
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-summary-list div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-summary-list dt {
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

.checkout-summary-list dd {
    margin: 0;
    text-align: right;
    color: #0f172a;
    font-weight: 600;
}

.checkout-summary-total {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.checkout-summary-total dd {
    font-size: 1.25rem;
}

.checkout-price-old {
    margin-right: 0.5rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.checkout-price-current {
    color: #0f172a;
    font-weight: 700;
}

.checkout-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 9999px;
    animation: checkout-spin 0.8s linear infinite;
}

@keyframes checkout-spin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-success-panel {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0 4rem;
}

.checkout-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 9999px;
    background-color: #ecfdf5;
    color: #059669;
    font-size: 1.75rem;
}

.checkout-is-hidden {
    display: none;
}

h2.heading-section-dark,
h3.heading-card-dark {
    color: #ffffff;
}
