:root {
    --font-family-base: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --color-base-900: #1f1f1f;
    --color-base-700: #474747;
    --color-base-500: #8f8f8f;
    --color-surface: #ffffff;
    --color-border: #e3e3e3;
    --color-nav-link: #038593;
    --color-brand: #00a3a1;
    --color-brand-strong: #0078a9;
    --color-primary-base: #038593;
    --color-primary-text: #f5fefe;
    --header-height: 88px;
    --header-outer-height: 120px;
    --container-width: 1120px;
    --radius-main: 0.9rem;
    --radius-pill: 999px;
    --radius-card: 24px;
    --shadow-soft: 0 16px 48px rgba(23, 23, 23, 0.08);
    --button-padding-y: 0.81rem;
    --button-padding-x: 1.86rem;
    --hero-gap-title-subtitle: 24px;
    --hero-gap-subtitle-actions: calc(var(--hero-gap-title-subtitle) * 3.05);
    --hero-lift-offset: -12%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-base-900);
    background-color: var(--color-surface);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* 2) Layout helpers */

.page {
    min-height: 100vh;
    background-color: var(--color-surface);
}

.container {
    width: min(100% - 48px, var(--container-width));
    margin-inline: auto;
}

/* 3) Base components */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: var(--button-padding-y) var(--button-padding-x);
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-main);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button__icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.button:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}

.button--primary {
    color: var(--color-primary-text);
    background-color: var(--color-primary-base);
    box-shadow: inset 0 0 1rem #09c6db;
    position: relative;
}

.button--secondary {
    color: var(--color-base-900);
    border: 1px solid var(--color-border);
    background-color: transparent;
}

.button--secondary:hover {
    border-color: var(--color-base-700);
}

.button--ghost {
    padding: 10px 18px;
    font-size: 15px;
    border-radius: var(--radius-main);
    border: 1px solid transparent;
    color: var(--color-base-700);
}

.button--ghost:hover {
    border-color: var(--color-border);
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--color-base-900);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 1rem;
    background-color: #fff;
    color: var(--color-nav-link);
    font-size: 28px;
    font-weight: 600;
}

.section-label__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
}


/*
 * Header
 *
 * Persistent top navigation placeholder.
 */

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 10px 0;
    background: transparent;
}

.header__inner {
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 14px 30px;
    border-radius: 1rem;
    background-color: rgba(241, 246, 250, 0.34);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.049);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    font-size: 20.7px;
    font-weight: 600;
    color: var(--color-base-900);
}

.header__logo-placeholder {
    width: 1.64em;
    height: 1.64em;
    border-radius: 9px;
    background-image: linear-gradient(135deg, var(--color-brand), var(--color-brand-strong));
}

.header__logo-text {
    font-size: 16px;
    font-weight: 400;
}

.header__logo-img {
    width: 44px;
    height: 44px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__link {
    color: var(--color-nav-link);
    font-size: 19px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 0.9rem;
}


/* Hide normal desktop header on mobile */
@media (max-width: 768px) {
    .header__inner {
        display: none;
    }
}

/* MOBILE HEADER */
.mobile-header {
    display: none;
}

@media (max-width: 768px) {
    .mobile-header {
        display: block;
        padding: 12px 0;
    }

    .mobile-header__inner {
        background: #fff;
        padding: 14px 20px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-header__logo {
        width: 40px;
        height: 40px;
    }

    .mobile-header__burger {
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-header__burger span {
        display: block;
        width: 22px;
        height: 3px;
        background: #333;
        border-radius: 4px;
    }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999;
    padding: 20px;
    display: flex;
    flex-direction: column;

    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-menu--open {
    transform: translateX(0);
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #fff;
    padding: 12px 18px;
    border-radius: 16px;
}

.mobile-menu__logo {
    width: 42px;
    height: 42px;
}

.mobile-menu__close {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu__nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu__nav a {
    font-size: 32px;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-menu__footer {
    margin-top: auto;
    font-size: 14px;
    color: #555;
}






.overview {
    padding-block: 120px;
}

.overview__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.overview__title {
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 71px;
    margin: 24px 0;
}

.overview__subtitle {
    font-size: 20px;
    color: #3D3D3D;
    margin: 0 0 3rem;
    line-height: 24px;
}

.overview__image-wrapper {
    margin-top: 60px;
}


.methods {
    padding-block: 120px;
    text-align: center;
}

.methods__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Label */
.methods__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #fff;
    color: var(--color-nav-link);
    font-weight: 600;
    font-size: 16px;
}

.methods__label-text {
    font-size: 16px;
}

/* Title */
.methods__title {
    margin: 0;
    font-size: clamp(32px, 2.8vw, 44px);
    font-weight: 600;
}

/* Subtitle */
.methods__subtitle {
    margin: 0;
    color: var(--color-base-500);
    font-size: 18px;
    line-height: 1.6;
}

/* Options row */
.methods__options {
    display: flex;
    gap: 80px;
    margin-top: 32px;
}

.methods__option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.methods__option-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-base-900);
}

.methods__option img {
    width: 56px;
    height: 56px;
}

/* --- MOBILE: METHODS SECTION --- */
@media (max-width: 768px) {
    .methods {
        padding-block: 60px;
        /* smaller for mobile */
    }

    .methods__inner {
        gap: 24px;
        text-align: center;
    }

    .methods__label {
        font-size: 14px;
        padding: 6px 14px;
    }

    .methods__title {
        font-size: 28px;
        line-height: 1.25;
    }

    .methods__subtitle {
        font-size: 15px;
        line-height: 1.45;
        max-width: 90%;
    }

    .methods__options {
        flex-direction: column;
        /* stack vertically */
        gap: 40px;
        /* space between items */
        margin-top: 20px;
    }

    .methods__option img {
        width: 64px;
        /* slightly larger icons */
        height: 64px;
    }

    .methods__option-label {
        font-size: 17px;
    }
}



/* 2) steps */



/* Label */
.steps__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #fff;
    color: var(--color-nav-link);
    font-weight: 600;
    font-size: 16px;
}

.steps__inner {
    gap: 40px;
    align-items: center;
    text-align: center;
}

.steps__label-text {
    font-size: 16px;
}

/* Title */
.steps__title {
    margin: 0;
    margin-bottom: 100px;
    font-size: clamp(32px, 2.8vw, 44px);
    font-weight: 600;
}

/* Step row */
.steps__item {
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 80px;
}

/* Big numbers inside bg block */

.steps__image-wrapper img {
    width: 60%;
    height: auto;
}

.steps__image-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

/* Text column */
.steps__content {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.steps__step-label {
    font-size: 14px;
    color: var(--color-base-500);
}

.steps__step-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.steps__step-text {
    margin: 0;
    font-size: 16px;
    color: var(--color-base-500);
}

/* Button */
.steps__cta {
    margin-top: 20px;
}



/* --- MOBILE: STEPS SECTION --- */
@media (max-width: 768px) {

    .steps {
        padding-block: 60px;
        background-color: #FAFAFA;
    }

    .steps__inner {
        gap: 60px;
        align-items: flex-start;
        text-align: left;
    }

    /* Step block */
    .steps__item {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    /* Image wrapper */
    .steps__image-wrapper {
        justify-content: center;
    }

    .steps__image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    /* Text content */
    .steps__content {
        width: 100%;
        gap: 6px;
    }

    .steps__step-label {
        font-size: 13px;
        color: #7A7A7A;
    }

    .steps__step-title {
        font-size: 20px;
        margin: 0;
        font-weight: 600;
    }

    .steps__step-text {
        font-size: 15px;
        line-height: 1.45;
        color: #777;
    }

    /* CTA button spacing */
    .steps__cta {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

    .steps {
        background: #fff;
        padding: 40px 0 80px;
    }

    /* FULL CARD with rounded corners */
    .steps__item {
        width: 100%;
        flex-direction: column;
        border-radius: 28px;
        padding: 0;
        background: #fff;
        overflow: hidden;
        gap: 20px;
    }

    /* Colored block with step number + image */
    .steps__image-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .steps__image-wrapper img {
        width: 100%;
        max-width: 420px;
        border-radius: 20px;
        z-index: 2;
    }

    .steps__content {
        text-align: left;
        padding: 0 6px;
        gap: 8px;
    }

    .steps__step-label {
        font-size: 14px;
        color: #333;
    }

    .steps__step-title {
        margin: 0;
        font-size: 28px;
        font-weight: 600;
        color: #111;
    }

    .steps__step-text {
        margin: 0;
        font-size: 17px;
        color: #666;
        line-height: 1.5;
    }
}


/* process */
.process {
    padding-block: 140px;
    text-align: center;
}

.process__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.process__title {
    margin: 0;
    font-size: clamp(32px, 2.8vw, 44px);
    font-weight: 600;
}

.process__subtitle {
    margin: 0;
    font-size: 18px;
    color: var(--color-base-500);
}

.process__grid {
    display: flex;
    gap: 60px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

/* Left image */
.process__image-wrapper {
    flex: 0 0 50%;
    border-radius: 24px;
    overflow: hidden;
}

.process__image-wrapper img {
    width: 100%;
    display: block;
}

/* Right side list */
.process__list {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process__item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background-color: #fafafa;
    align-items: flex-start;
}

.process__item img {
    width: 32px;
    height: 32px;
}

.process__item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.process__item-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.process__item-text {
    margin: 0;
    font-size: 14px;
    color: var(--color-base-500);
}

@media (max-width: 768px) {
    .process__grid {
        display: flex;
        flex-direction: column;
        gap: 60px;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
    }
}

/* Companies Section */
.companies {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

.companies-container {
    max-width: 1200px;
    margin: 0 auto;
}

.companies-title {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 400;
}

.companies-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.companies-slider {
    width: 100%;
    overflow: hidden;
}

.companies-slider-track {
    display: flex;
    gap: 4rem;
    animation: slide 30s linear infinite;
    width: fit-content;
}

.companies-slider-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 1;
}


.companies-slider-item img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}


@keyframes slide {
    0% {
        transform: translateX(0);
    }

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

/* Pause animation on hover */
.companies-slider-wrapper:hover .companies-slider-track {
    animation-play-state: paused;
}


.pricing {
    padding-block: 140px;
    text-align: center;
}

.pricing__label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    color: var(--color-nav-link);
    font-weight: 600;
    background: #fff;
}

.pricing__title {
    margin: 24px 0 12px;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 600;
}

.pricing__subtitle {
    margin: 0 0 40px;
    color: var(--color-base-500);
    font-size: 18px;
    line-height: 1.6;
}

/* Wrapper */
.pricing__toggle {
    position: relative;
    width: 320px;
    height: 60px;
    background: #f7f7f7;
    border-radius: 40px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
}

/* Buttons */
.pricing__switch-btn {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    z-index: 2;
}

.pricing__switch-btn.active {
    color: #000;
    font-weight: 600;
}

/* Sliding indicator */
.pricing__switch-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* When Yearly is active */
.pricing__toggle.yearly-active .pricing__switch-indicator {
    transform: translateX(100%);
}


.pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.pricing-card {
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card--featured {
    background: linear-gradient(180deg, #2d8c95 0%, #5ab7c8 40%, #9face6 100%);
    color: #fff;
    position: relative;
    border: none;
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.15);
}

.pricing-card__name {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.pricing-card__signatures {
    color: var(--color-primary-base);
    font-weight: 600;
    font-size: 14px;
}

.pricing-card--featured .pricing-card__signatures {
    color: #fff;
}

.pricing-card__price {
    font-size: 42px;
    font-weight: 700;
}

.pricing-card__price span {
    font-size: 20px;
    font-weight: 400;
}

.pricing-card__per-user {
    margin: 4px 0 0;
    color: var(--color-base-500);
    font-size: 14px;
}

.pricing-card--featured .pricing-card__per-user {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card__include-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* List */
.pricing-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--color-base-700);
}

.pricing-card__list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
}

.pricing-card__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary-base);
}

.pricing-card--featured .pricing-card__list li::before {
    color: #fff;
    opacity: 0.9;
}

.pricing-card--featured .pricing-card__list {
    color: #fff;
}

/* Default dark glossy pricing buttons (Basic + Professional) */
/* Default dark glossy pricing buttons (Basic + Professional) */
.pricing-card__cta {
    background: linear-gradient(180deg, #4b4b4b 0%, #2f2f2f 100%);
    color: #dcdcdc;
    border-radius: 12px;
    padding: 14px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pricing-card__cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* White glowing button for FEATURED plan */
.pricing-card__cta--featured {
    background: linear-gradient(180deg, #fdfdff 0%, #dfe5ff 100%);
    color: #000;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 0 16px rgba(255, 255, 255, 0.7);
}

.pricing-card__cta--featured:hover {
    transform: translateY(-2px);
}

/* Prevent default .button styling from overriding */
.pricing-card__cta,
.pricing-card__cta--featured {
    margin-top: auto;
    border: none !important;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .pricing__toggle {
        width: 100%;
        background: #f5f5f5;
        padding: 6px;
        border-radius: 40px;
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .pricing__switch-btn {
        flex: 1;
        padding: 12px 0;
        border-radius: 40px;
        font-size: 16px;
        z-index: 2;
        background: transparent;
    }

    .pricing__switch-indicator {
        width: 50%;
        height: 45px;
        background: #ffffff;
        border-radius: 40px;
        position: absolute;
        top: 4px;
        left: 4px;
        transition: left 0.25s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .pricing__toggle.yearly-active .pricing__switch-indicator {
        left: calc(50% + 4px);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 20px;
    }

    .pricing-card--featured {
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .pricing-card__cta {
        width: 100%;
        margin-top: auto;
        /* stick to bottom */
    }
}


@media (max-width: 768px) {
    .pricing__cards {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}







.faq {
    padding-block: 140px;
}

.faq__inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE */
.faq__left {
    flex: 0 0 40%;
}

.faq__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    background-color: #fff;
    color: var(--color-nav-link);
    font-size: 16px;
    font-weight: 600;
}

.faq__title {
    margin-top: 20px;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 600;
    color: var(--color-base-900);
}

/* RIGHT SIDE */

.faq__right {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq__item {
    padding: 24px;
    border-radius: 16px;
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.faq__item--open {
    background-color: #ffffff;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.faq__toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
    color: var(--color-base-900);
    font-size: 18px;
    line-height: 1;
}

.faq__answer {
    margin-top: 10px;
    font-size: 15px;
    color: var(--color-base-500);
    line-height: 1.5;
}

/* Hide native checkbox */
.faq__checkbox {
    display: none;
}

/* Icon (plus / minus) */
.faq__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-base-900);
    position: relative;
}

/* Plus symbol */
.faq__icon::before {
    content: "+";
    font-size: 20px;
    position: relative;
    top: -1px;
}

/* When checkbox is checked → show minus */
.faq__checkbox:checked+.faq__question .faq__icon::before {
    content: "−";
    top: -2px;
}

/* Show/hide answer */
.faq__answer {
    max-height: 0;
    overflow: hidden;
    color: var(--color-base-500);
    font-size: 15px;
    line-height: 1.5;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    padding-right: 20px;
}

/* Expand when checked */
.faq__checkbox:checked~.faq__answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* Hover effect for items */
.faq__question:hover {
    opacity: 0.85;
}


/* Responsive */
@media (max-width: 900px) {
    .faq__inner {
        flex-direction: column;
        gap: 40px;
    }

    .faq__left,
    .faq__right {
        width: 100%;
        flex: none;
    }
}


.tech-banner {
    padding-block: 80px;
    /* outer spacing */
}

.tech-banner__box {
    width: 100%;
    padding: 90px 40px;
    border-radius: 24px;
    background: linear-gradient(180deg, #2d8c95 0%, #9face6 100%);
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.tech-banner__title {
    margin: 0;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 600;
    color: #fff;
}

.tech-banner__subtitle {
    margin: 16px auto 40px;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.9);
}

.tech-banner__button {
    background: #fff;
    color: #1f1f1f;
    padding: 12px 26px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}



/*
 * Footer
 *
 * Multi-column layout with brand description and CTA.
 */

.footer {
    padding: 120px 0 80px;
    background-color: #fff;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: flex-start;
}

.footer__brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7em;
}

.footer__logo-row {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
}

.footer__logo-img {
    width: 44px;
    height: 44px;
}

.footer__logo-text {
    font-size: 1.4rem;
    font-weight: 700;
}

.footer__description {
    margin: 0;
    color: var(--color-base-500);
    line-height: 1.6;
}

.footer__socials {
    margin-top: 2em;
    display: inline-flex;
    gap: 12px;
}

.footer__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3d3d3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-base-900);
}

.footer__social img {
    width: 22px;
    height: 22px;
}

.footer__links {
    flex: 1.2;
    min-width: 60%;
    display: flex;
    gap: 1em;
}

.footer__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.footer__title {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-base-900);
    font-weight: 600;
}

.footer__link {
    color: var(--color-nav-link);
    font-weight: 600;
    font-size: 1.05rem;
}

.footer__column--cta {
    gap: 0.7em;
    flex: 0 0 40%;
}

.footer__cta-text {
    margin: 0 0 2em;
    color: var(--color-base-500);
    line-height: 1.5;
}

@media (max-width: 960px) {
    .footer__inner {
        flex-direction: column;
    }

    .footer__links {
        flex-direction: column;
    }
}

.overview__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* THUMBNAIL */
.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    border-radius: 28px;
}

/* Play button */
.video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 36px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Video iframe hidden by default */
.video-embed {
    display: none;
    width: 100%;
    height: 620px;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 28px;
}

/* Mobile */
@media (max-width: 768px) {
    .video-embed {
        height: 220px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

/* ===================== */
/* SCROLL REVEAL ANIMATE */
/* ===================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Optional variants */
.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal--active.reveal-left,
.reveal--active.reveal-right {
    transform: translateX(0);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
.modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.close-btn:hover {
    background: #f5f5f5;
}

.modal-body {
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    color: #1a1a1a;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    outline: none;
    border-color: #00a8a8;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 24px;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #00a8a8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #008c8c;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Demo Trigger Buttons */
.demo-section {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
}

.trigger-btn {
    padding: 16px 32px;
    background: #00a8a8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin: 10px;
}

.trigger-btn:hover {
    background: #008c8c;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #00a8a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
}

.error-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.error-message.active {
    display: block;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: 32px 32px 24px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.modal-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.modal-body {
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #00a99d;
    box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.1);
}

.form-input::placeholder {
    color: #aaa;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.checkbox-input {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    line-height: 1.5;
}

.error-message {
    background: #fee;
    color: #c00;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}

.error-message.active {
    display: block;
}

.success-message {
    text-align: center;
    display: none;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #00a99d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

@media (max-width: 640px) {
    .modal {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 24px 20px 20px;
    }

    .modal-body {
        padding: 24px 20px;
    }

    .modal-title {
        font-size: 24px;
    }
}