@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

ul,
ol {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

body,
a,
p,
span,
strong,
div {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    font-size: 1rem;
    line-height: 1.6;
    color: #3c4a47;
    background: #ffffff;
    min-width: 320px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: #12181a;
    font-weight: 700;
    line-height: 1.2;
}

/* All section headings (h2) resolve to the SAME computed size regardless
   of section, so heading rhythm stays consistent site-wide. */
h1 {
    font-size: clamp(2rem, 1.35rem + 2.6vw, 3.25rem);
}

h2 {
    font-size: clamp(1.6rem, 1.3rem + 1.3vw, 2.25rem);
}

h3 {
    font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.375rem);
}

h4 {
    font-size: 1.05rem;
}

p {
    color: #6b7876;
}

/* ---- Layout utilities ---- */
.container-custom {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 40px);
}

.section-custom {
    padding-block: clamp(48px, 7vw, 96px);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: clamp(32px, 5vw, 56px);  
}

.section-head p {
    margin-top: 12px;
}

.section-sub {
    color: #6b7876;
    font-size: 1rem;
    max-width: 640px;
}

.section-head-eyebrow {
    color: #000000;
    font-weight: 600;
    margin-top: 0 !important;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-custom:focus-visible {
    outline: 3px solid #eb5a20;
    outline-offset: 2px;
}

.btn-custom:hover {
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 8px 20px rgba(47, 189, 124, 0.35);
}

.btn-primary-custom:hover {
    background: #ffffff;
    color: #000000;
}

.btn-outline-custom {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.btn-dark-custom {
    background: #063b2c;
    color: #ffffff;
}

.btn-dark-custom:hover {
    background: #0c5a3e;
    color: #ffffff;
}

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

/* ---- Reusable card ---- */
.card-custom {
    background: #ffffff;
    border: 1px solid #e4e7e5;
    border-radius: 14px;
    padding: clamp(20px, 3vw, 28px);
}
.card-custom i {
    background-image: linear-gradient(0deg, rgb(113, 136, 223), rgb(17, 213, 207));
    color: rgb(255, 255, 255);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 14px;
    gap: 14px;
    border-radius: 5px;
}

.icon-badge {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: #e7f7ee;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.icon-badge svg {
    width: 18px;
    height: 18px;
}

/* ---- Shared rainbow gradient background (hero + comparison table head) ---- */
.gradient-rainbow-bg {
    background:
        radial-gradient(circle, rgba(255, 255, 255, .18) 1.5px, transparent 1.5px) 0 0 / 20px 20px,
        linear-gradient(145deg, rgba(232, 87, 237, .12) 0%, rgba(109, 137, 69, .08) 100%),
        conic-gradient(from 210deg, #00f1b5 0deg, #00e8bc 30deg, #00dcc2 60deg, #12cfc1 90deg, #1ebec0 120deg, #218ab8 150deg, #3c79c2 180deg, #655fd3 210deg, #9158df 240deg, #b656e7 270deg, #d956eb 300deg, #e857ed 330deg, #00f1b5 360deg);
}

/* ---- Skip link (a11y, works with JS off too) ---- */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: #063b2c;
    color: #fff;
    padding: 10px 16px;
    z-index: 1000;
    border-radius: 8px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* =========================================================================
   HEADER / NAVIGATION
   Sits transparent over the hero; JS adds .is-scrolled once the page
   scrolls past the hero for a solid white bar (cosmetic only — with JS
   off, the header simply stays on the hero gradient, which still reads
   correctly against the reference design).
   ========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    width: 100%;
    background: transparent;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(6, 59, 44, 0.08);
}

.nav-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
}

.nav-logo img {
    width: 180px;
    height: auto;
}

/* ---- Primary nav ---- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-link-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    padding: 8px 2px;
    transition: color 0.2s ease;
}

.is-scrolled .nav-link-custom {
    color: #3c4a47;
}

.nav-link-custom:hover,
.nav-link-custom:focus-visible {
    color: #000000;
}

.nav-link-custom .caret {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
}

.has-dropdown[aria-expanded="true"] .caret {
    transform: rotate(180deg);
}

.nav-contact {
    display: none;
}
.blog-nav-menu .nav-link-custom {
    color: #1e1b2e;
}

.blog-nav-menu .nav-link-custom:hover {
    color: #7C3AED;
}

/* ---- Dropdown ----
   No-JS fallback: dropdown is a plain CSS :hover/:focus-within panel,
   so keyboard and mouse users get it even with JavaScript disabled. */
.dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(6, 59, 44, 0.08);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-menu>li:hover>.dropdown-panel,
.nav-menu>li:focus-within>.dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3c4a47;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-panel a:hover {
    background: #e7f7ee;
    color: #0c5a3e;
}

/* ---- Mega menu variant (Solutions: Delivery / Booking / Ecommerce) ---- */
.dropdown-panel.mega-panel {
    min-width: 640px;
    left: 0;
    transform: translateX(0) translateY(6px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 18px;
}

.nav-menu>li:hover>.dropdown-panel.mega-panel,
.nav-menu>li:focus-within>.dropdown-panel.mega-panel {
    transform: translateX(0) translateY(0);
}

.mega-panel .mega-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a6b0ae;
    padding: 8px 12px 4px;
}

.mega-panel .mega-col+.mega-col {
    border-left: 1px solid #e4e7e5;
}

@media (max-width: 768px) {
    .dropdown-panel.mega-panel {
        min-width: 0;
        grid-template-columns: 1fr;
        padding: 0 0 10px 12px;
    }

    .mega-panel .mega-col+.mega-col {
        border-left: none;
        border-top: 1px solid #e4e7e5;
        padding-top: 8px;
    }
}

/* ---- Right actions ---- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-cta {
    background: #000000;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: #000000;
    transform: translateY(-2px);
    color: #ffffff;
}

/* ---- Mobile toggle ----
   Checkbox-driven menu: works with zero JavaScript.
   js/nav.js only enhances (closes on link click, aria-sync). */
.nav-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle {
    display: none;
    width: 26px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    z-index: 20;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.is-scrolled .nav-toggle span {
    background: #12181a;
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 9px;
}

.nav-toggle span:nth-child(3) {
    top: 18px;
}

.nav-toggle-input:checked~.nav-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle-input:checked~.nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-input:checked~.nav-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== Responsive breakpoints: 320-480 / 480-768 / 768-1024 / 1024-1280 / 1280+ ===== */
@media (max-width: 1280px) {
    .container-custom {
        max-width: 1140px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .nav-toggle, .nav-contact {
        display: block;
    }

    .nav-menu {
        position: fixed;
        inset: 0 0 0 30%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        padding: 100px 28px 28px;
        background: #ffffff;
        box-shadow: -12px 0 40px rgba(6, 59, 44, 0.15);
        transform: translateX(100%);
        transition: transform 0.2s ease;
        overflow-y: auto;
        z-index: 500;
    }

    .nav-toggle-input:checked ~ .nav-menu {
        transform: translateX(0);
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #e4e7e5;
    }

    .nav-link-custom,
    .is-scrolled .nav-link-custom {
        color: #3c4a47;
        width: 100%;
        justify-content: space-between;
        padding: 14px 4px;
    }

    .dropdown-panel {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 0 0 10px 12px;
        min-width: 0;
    }

    .has-dropdown[aria-expanded="true"] + .dropdown-panel,
    .nav-menu > li:focus-within > .dropdown-panel {
        display: block;
    }

    .nav-logo img {
        padding-left: 10px;
        padding-top: 0px;
    }

    /* --- Nav actions (Contact Us + hamburger) --- */
    .nav-actions {
        position: fixed;
        top: 7px;
        right: 25px;
        z-index: 999;
        gap: 0;
        padding-top:8px;
       
    }

    .nav-actions .nav-cta {
        padding: 10px 18px;
        display:none;
        /* no display:none here — button stays visible when menu is closed */
    }

    .nav-toggle-input:checked ~ .nav-actions .nav-cta {
        display: none;   /* hide Contact Us ONLY while menu is open */
    }

    .nav-toggle {
        position: relative;
        z-index: 999;
    }

    .nav-toggle-input:checked ~ .nav-actions .nav-toggle span {
        background: #12181a;
    }

    .nav-toggle-input:checked ~ .nav-actions .nav-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-toggle-input:checked ~ .nav-actions .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle-input:checked ~ .nav-actions .nav-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


@media (max-width: 480px) {
    .nav-menu {
        inset: 0;
        padding-top: 90px;
    }
}

/* =========================================================================
   SHARED PAGE COMPONENTS
   Used identically across more than one page (Home, Delivery, Booking,
   Ecommerce, …). Kept here once so page-specific stylesheets never have to
   redefine them — only the content/copy changes per page.
   ========================================================================= */

/* ---- Hero button row ---- */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Logo strip ("Trusted by Brands") ---- */
.logo-strip {
    padding-top: 65px;
}

.logo-strip .section-head {
    margin-bottom: 32px;
}

.logo-track {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    opacity: 0.6;
    animation: logo-scroll 22s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
    .logo-row {
        animation: none;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .logo-row [aria-hidden="true"] {
        display: none;
    }
}

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

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

.logo-placeholder {
    font-size: 1.1rem;
    color: #000000;
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: auto;
}

.logo-placeholder img {
    max-width: 100px;
    height: auto;
}

/* ---- Alternating feature block (copy + visual, colored panel) ---- */
.feature-block {
    padding: 60px;
    border-radius: 15px;
}

.feature-block+.feature-block {
    margin-top: clamp(48px, 7vw, 88px);
}

.feature-copy h3 {
    margin-bottom: 12px;
    font-size: 30px;
    color: #ffffff;
}

.feature-copy p {
    margin-bottom: 18px;
    font-size: 14px;
    color: #fff;
}

.feature-block ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
}

.feature-block ul svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
    margin-top: 3px;
    flex-shrink: 0;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    margin-top: 35px;
    color: #ffffff;
    gap: 8px;
    background: #000;
    padding: 10px 20px;
    text-align: center;
    border-radius: 50px;
    transition: background 0.2s ease, color 0.2s ease;
}

.explore-link:hover {
    color: #000000;
    background: #ffffff;
}

.explore-link svg {
    width: 16px;
    height: 16px;
}

.feature-visual img {
    border-radius: 12px;
    width: 100%;
}

/* ---- Stat cell grid ("X businesses trust ManageTeamz") ---- */
.results-copy h2 {
    text-align: left;
}

.stat-cells {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 4vw, 48px) clamp(40px, 6vw, 72px);
}

.stat-big {
    font-size: clamp(2.4rem, 2rem + 2vw, 3.75rem);
    font-weight: 800;
    color: #12181a;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.stat-big span {
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 4px;
    align-self: flex-start;
    margin-top: 6px;
}

.stat-cell p {
    font-size: 0.875rem;
    margin-top: 6px;
    max-width: 20ch;
}

/* ---- Step cards ("How it works" / "Why one platform") ---- */
.why-platform-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.why-platform-head h2 {
    text-align: left;
}

.why-platform-note {
    max-width: 40%;
    font-size: 0.875rem;
    text-align: right;
}

.why-step-card {
    background: #f8f8f8;
    border-radius: 14px;
    padding: clamp(20px, 3vw, 26px);
    height: 100%;
}

.why-step-index {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.why-step-index i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #eb5a20;
    display: inline-block;
}

.why-step-card h4 {
    margin-bottom: 6px;
}

.why-step-card p {
    font-size: 0.875rem;
}

/* ---- Trusted-by logo grid with spanning center CTA cell ---- */
.integration-grid-section .container-custom {
    max-width: 1280px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 1px;
    background: #e4e7e5;
    border: 1px solid #e4e7e5;
    border-radius: 14px;
    overflow: hidden;
}

.integration-cell {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.integration-cell .logo-placeholder {
    font-size: 1.05rem;
    opacity: 0.85;
    height: auto;
}

.integration-cell-text {
    grid-column: 3 / span 2;
    grid-row: 2 / span 2;
    flex-direction: column;
    gap: 22px;
    padding: 24px;
    text-align: center;
}

.integration-cell-text h3 {
    font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.375rem);
}

.integration-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #12181a;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.integration-book-btn:hover {
    background: #063b2c;
    transform: translateY(-2px);
    color: #fff;
}

.integration-book-btn svg {
    width: 16px;
    height: 16px;
}
/* ---- Comparison table ("Why ManageTeamz over other tools") ---- */
.why-us-table {
    border: 1px solid #e4e7e5;
    overflow: hidden;
    border-radius: 14px;
}

.compare-row {
    display: grid;
    grid-template-columns: 0.6fr 1fr 1fr;
    align-items: center;
}

.compare-row>div {
    padding: 30px 20px;
    font-size: 0.875rem;
}

.compare-row.head {
    font-weight: 700;
    color: #ffffff;
}

.compare-row:not(.head)>div:first-child {
    color: #12181a;
    font-weight: 600;
}

.compare-row:not(.head):not(:last-child) {
    border-bottom: 1px solid #e4e7e5;
}
@media (max-width: 768px) {

    .why-us-table {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .why-us-table table {
        min-width: 900px; /* Ensures all 3 columns fit */
        width: 900px;
        border-collapse: collapse;
    }

    .why-us-table th,
    .why-us-table td {
        min-width: 250px;
        padding: 16px;
        vertical-align: top;
    }

    .why-us-table th:first-child,
    .why-us-table td:first-child {
        min-width: 180px;
    }
}
/* ---- Awards / recognition cards ---- */
.awards-grid {
    text-align: center;
}

.award-card {
    border: 1px solid #e4e7e5;
    border-radius: 14px;
    padding: clamp(24px, 3vw, 32px) 20px;
    height: 100%;
}

.award-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #e7f7ee;
    color: #0c5a3e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.award-badge svg {
    width: 26px;
    height: 26px;
}

.award-card .stars {
    justify-content: center;
    display: flex;
    margin-bottom: 10px;
    color: #f4b740;
    font-size: 0.85rem;
}

.award-card h4 {
    margin-bottom: 2px;
}

.award-card p {
    font-size: 0.875rem;
    color: #6b7876;
}

/* ---- FAQ ("Got questions?") — native <details>/<summary>, matches the
   original design exactly and works with zero JavaScript. ---- */
.faq-section .faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

.faq-section h2 {
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #e4e7e5;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    padding-block: 18px;
    font-weight: 700;
    color: #12181a;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
    content: "";
    position: absolute;
    background: #0c5a3e;
    border-radius: 2px;
}

.faq-question .faq-icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-question .faq-icon::after {
    width: 2px;
    height: 100%;
    left: 9px;
    top: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding-bottom: 18px;
    font-size: 0.875rem;
    color: #6b7876;
    max-width: 68ch;
}

.faq-answer a {
    text-decoration: underline;
    color: #2d2d2d;
}

@media (max-width: 1024px) {
    .faq-section .faq-layout {
        grid-template-columns: 1fr;
    }
}

/* ---- Partner CTA banner (reused across solution pages) ---- */
.partner-banner {
    background: #12181a;
    border-radius: 18px;
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: clamp(40px, 6vw, 64px);
}

.partner-banner h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 6px;
    max-width: 480px;
}

.partner-banner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    max-width: 480px;
}

@media (max-width: 640px) {
    .partner-banner {
        align-items: flex-start;
    }
}

/* ---- Final CTA (black, centered) ---- */
.final-cta {
    background: #000;
    text-align: center;
}

.final-cta h2,
.final-cta p {
    color: #fff;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 46ch;
    margin: 12px auto 28px;
}

/* =========================================================================
   LEGAL DOCUMENT TEMPLATE
   Shared by Privacy Policy and Terms & Conditions: a simple hero, a sticky
   table-of-contents sidebar, and an article column. Each page's own CSS
   file only needs to exist for page-specific tweaks (usually none).
   ========================================================================= */
.legal-hero {
    margin-top: -84px;
    padding: calc(84px + 48px) 0 48px;
    background: #f5f7f8;
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: 8px;
}

.legal-hero .effective-date {
    font-size: 0.85rem;
    color: #6b7876;
}

.legal-body {
    padding: clamp(48px, 7vw, 80px) 0;
}

.legal-toc {
    position: sticky;
    top: 100px;
    border-right: 1px solid #e4e7e5;
    padding-right: 20px;
}

.legal-toc .toc-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a6b0ae;
    margin-bottom: 14px;
}

.legal-toc ol {
    counter-reset: toc;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-toc li {
    counter-increment: toc;
}

.legal-toc a {
    display: block;
    font-size: 0.85rem;
    color: #3c4a47;
    padding: 6px 0;
}

.legal-toc a::before {
    content: counter(toc) ". ";
    color: #a6b0ae;
    font-weight: 700;
}

.legal-toc a:hover {
    color: #0c5a3e;
}

.legal-article h2 {
    font-size: 1.25rem;
    margin-top: 40px;
    margin-bottom: 12px;
    scroll-margin-top: 100px;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article p {
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.legal-article ul {
    margin: 0 0 14px;
    padding-left: 0;
}

.legal-article ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: #6b7876;
    margin-bottom: 8px;
}

.legal-article ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1a9d63;
}

.legal-article a {
    color: #0c5a3e;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .legal-toc {
        position: static;
        border-right: none;
        border-bottom: 1px solid #e4e7e5;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .legal-toc ol {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px 16px;
    }
}

/* =========================================================================
   SOLUTION PAGE TEMPLATE
   Shared by every solution parent page (Booking / Delivery / Ecommerce —
   and their industry subpages). Re-platformed 1:1 from the original
   page1.css ("Online Booking System for Sports Facilities" / mt-booking.png)
   which is the actual reference template for this page type. Each page
   only overrides its own gradient color via 2-3 lines in its own
   <page>.css file; the structure below never changes.
   ========================================================================= */

/* ---- Hero ---- */
.hero-solution {
    margin-top: -84px;
    padding-top: 84px;
    padding-bottom: clamp(60px, 9vw, 120px);
}

.hero-solution .hero-inner {
    text-align: center;
    padding-top: clamp(40px, 6vw, 72px);
}

.hero-solution h1 {
    color: #fff;
    max-width: 70%;
    margin-inline: auto;
}

.hero-solution p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 56ch;
    margin: 20px auto 32px;
}

.hero-solution .hero-actions {
    margin-bottom: clamp(36px, 6vw, 64px);
}

.hero-shot {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(4, 30, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-shot img {
    width: 100%;
}

/* ---- Feature grid ---- */
.features-grid .card-custom {
    border: none;
    padding: 0;
}

.features-grid h3 {
    margin-bottom: 8px;
    font-weight: 400;
}

.features-grid p {
    font-size: 0.875rem;
}

/* ---- Stats bar ---- */
.stats-bar {
    padding: 45px 0;
    text-align: center;
}

.stat-num {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.875rem;
    color: #fff;
    margin-top: 4px;
}

/* ---- "Who can use this" vertical tiles ---- */
.vertical-use-section .use-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(28px, 5vw, 56px);
}

.vertical-use-section .eyebrow,
.vertical-use-section h2,
.vertical-use-section p {
    text-align: left;
}

.vertical-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border-radius: 14px;
    overflow: hidden;
}

.vertical-tile {
    background: transparent;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.vertical-tile:hover {
    background: rgba(0, 0, 0, 0.04);
}

.vertical-tile svg {
    width: 22px;
    height: 22px;
}

.vertical-tile span {
    font-size: 15px;
    font-weight: 500;
}
.vertical-use-section .use-layout ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap:2px;
  grid-template-columns: repeat(4, 1fr);
}
.vertical-use-section .use-layout li {
 border-right: 1px solid #e5e7eb;   
}

.vertical-use-section .use-layout ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  color: #634cb1;
  white-space: nowrap;
}

.vertical-use-section .use-layout ul li i {
  font-size: 1.4rem;
  line-height: 1;
  color: #374151;
  margin-bottom: 14px;
  font-style: normal;
}
/* ---- Business size grid ---- */
.biz-size-grid .card-custom {
    text-align: left;
}

.biz-size-grid h3 {
    margin-bottom: 8px;
    font-weight: 400;
}
.biz-size-grid i{
    background-image: linear-gradient(0deg, rgb(113, 136, 223), rgb(17, 213, 207));
    color: rgb(255, 255, 255);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 14px;
    gap: 14px;
    border-radius: 5px;
}
.biz-size-grid-p {
    font-size: 0.875rem;
}

.biz-size-card {
    background: #ffffff;
    border-radius: 14px;
    padding: clamp(20px, 3vw, 28px);
}
.biz-size-card p{
    margin-bottom: 0px;
}

/* ---- Integrations ---- */
.integrations-grid {
    border: 1px solid #e4e7e5;
    border-radius: 14px;
    overflow: hidden;
}

.integration-cell {
    padding: 50px clamp(18px, 3vw, 32px);
    border-right: 1px solid #e4e7e5;
    border-bottom: 1px solid #e4e7e5;
}

.integration-cell:nth-child(3n) {
    border-right: none;
}

.integration-cell img,
.integration-cell .int-mark {
    height: 28px;
    margin-bottom: 14px;
}

.int-mark {
    width: 28px;
    border-radius: 6px;
    background: #e7f7ee;
    color: #0c5a3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.integration-cell h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.integration-cell p {
    font-size: 0.875rem;
    width: 80%;
}

/* ---- Trust points ("Safe, reliable, and built for business") ---- */
.trust-points .trust-layout {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
}

.trust-points h2 {
    margin-bottom: 14px;
}

.trust-points .trust-layout>div:first-child {
    text-align: left;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    gap: 14px;
}

.trust-item .icon-badge {
    margin-bottom: 0;
}

.trust-item h4 {
    margin-right: 10px;
    vertical-align: start;
}
.trust-item i {
   background-image: linear-gradient(0deg, rgb(113, 136, 223), rgb(17, 213, 207));
    color: rgb(255, 255, 255);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 14px;
    gap: 14px;
    border-radius: 5px;
}


/* ---- Testimonials (with mini result stats) ---- */
.testimonials-section .card-custom {
    border-radius: 14px;
    padding: clamp(20px, 3vw, 28px);
}

.avatar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-meta {
    display: flex;
    flex-direction: column;
}

.avatar-meta strong {
    font-size: 1.05rem;
}

.avatar-meta span {
    font-size: 0.78rem;
    color: #6b7876;
}

.stars {
    color: #f4b740;
    font-size: 0.85rem;
}

.quote-body, .testimonial-card p {
    font-size: 0.875rem;
   
}

.testimonials-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    
}
.testimonials-stats ul{
    display: flex;
    gap: 20px;
    margin-bottom:0px;
    padding-left:0px;
    
    
}
.testimonials-stats li:first-child{
    border-right: 1px solid #6591dd;
    padding-right: 30px;
}


.testimonials-stats>div {
    flex: 1;
}
 .testimonials-stats h3{
font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size:1rem;
font-weight: bold;
 }

.testimonials-stats strong {
    color: #12181a;
}

.stat-01 {
    border-right: 1px solid #6591dd;
    padding-right: 20px;
}

/* ---- Pricing ---- */
.pricing .section-head {
    margin-bottom: 28px;
}

.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: clamp(28px, 4vw, 44px);
    font-size: 0.875rem;
    font-weight: 700;
}

.switch {
    position: relative;
    width: 46px;
    height: 26px;
    background: #063b2c;
    border-radius: 999px;
    padding: 3px;
    display: inline-block;
}

.switch input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.switch-knob {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
    display: block;
}

.switch input:checked~.switch-knob {
    transform: translateX(20px);
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.plan-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e4e7e5;
}

.plan-card.is-featured {
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(255, 106, 47, 0.3);
}

.plan-card.is-featured h3,
.plan-card.is-featured .plan-price,
.plan-card.is-featured .plan-feature,
.plan-card.is-featured .plan-desc {
    color: #fff;
}

.plan-name {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.plan-price {
    font-size: clamp(1.6rem, 1.3rem + 1.3vw, 2.25rem);
    font-weight: 800;
    color: #12181a;
    margin-bottom: 4px;
}

.plan-price span {
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-desc {
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.plan-feature {
    display: flex;
    gap: 8px;
    font-size: 0.875rem;
    color: #3c4a47;
}

.plan-custom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: #f7f4ee;
    margin-top: 8px;
}

/* ---- Insights / blog cards ---- */
.insights-grid {
    grid-template-columns: repeat(3, 1fr);
}

.insight-thumb {
    /* aspect-ratio: 16/10;
    border-radius: 8px;
    background: linear-gradient(135deg, #e7f7ee, #f7f4ee); */
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a9d63;
    font-size: 0.875rem;
    font-weight: 700;
}

.insight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-card time {
    font-size: 0.78rem;
    color: #a6b0ae;
}

.insight-card h4 {
    margin: 8px 0;
}

.insight-card p {
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.read-more {
    font-size: 0.875rem;
    font-weight: 700;
}

/* ===== Responsive (solution page template) ===== */
@media (max-width: 1024px) {

    .vertical-use-section .use-layout,
    .trust-points .trust-layout {
        grid-template-columns: 1fr;
    }

    .trust-list,
    .insights-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .integration-cell:nth-child(3n) {
        border-right: 1px solid #e4e7e5;
    }

    .integration-cell:nth-child(2n) {
        border-right: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .plan-card.is-featured {
        transform: none;
    }
     .why-platform-note {
        text-align: left;
        max-width: 100%;
    }

    .compare-row {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .integration-cell-text {
        grid-column: 2;
        grid-row: 2 / span 2;
    }

    .feature-block {
        text-align: left;
    }
}

@media (max-width: 992px) {
  .vertical-use-section .use-layout ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .vertical-use-section .use-layout ul li {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .vertical-use-section .use-layout ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .vertical-use-section .use-layout ul li {
    padding: 24px 10px;
    font-size: 0.9rem;
  }
  .vertical-use-section .use-layout ul li i {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
    .vertical-tiles {
        grid-template-columns: repeat(3, 1fr);
    }
    .stat-cells {
        grid-template-columns: 1fr ;
    }
}

@media (max-width: 640px) {

    .trust-list,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .vertical-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .integration-cell {
        border-right: none !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .plan-custom {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 640px) {
    .compare-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .compare-row>div {
        border-bottom: 1px solid #e4e7e5;
        padding: 16px 20px;
    }

    .compare-row>div:last-child {
        border-bottom: none;
    }

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

    .integration-cell-text {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .hero-actions .btn-custom {
        width: 100%;
    }

    .feature-block {
        padding: 32px 24px;
    }
}

/* Footer */

.site-footer {
    position: relative;
    background: #000000;
    color: rgba(255, 255, 255, 0.72);
    overflow: hidden;
    padding-top: clamp(56px, 8vw, 96px);
}

.footer-inner {
    position: relative;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.footer-logo .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #eb5a20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    max-width: 30ch;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 0
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    background: #eb5a20;
    border-color: #eb5a20;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #8dff55;
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 22px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-brand {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
  .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
  .btn-primary-custom {
    padding: 15px 16px;
  }
  .btn-custom {
    width: 100%;
  }
 .hero-solution h1 {
    max-width: 56ch;
    margin-inline: auto;
 }
.stat-num {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: -6px;
 }
  .hero-solution .hero-actions .btn-custom {
        width: 100%;
    }

.stat-label {
    margin-top: 0px;
    margin-bottom: 12px;
}
 .hero-shot {
     width: 100%;
     max-width: 100%;
     margin: 0 auto;
     border-radius: 5px;
  }
  .hero-shot img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.vertical-use-section p,
.vertical-use-section h2 {
    text-align: center;
}
.vertical-use-section {
    text-align: center;
}
.trust-points .trust-layout>div:first-child {
    text-align: center;
}
.section-custom .eyebrow {
    display: block;
    text-align: center;
  }
  .features-grid p {
    width:100%;
  }
  .footer-brand img{
    padding-left: 0px;
  }
.testimonials-stats ul {
        display: block;
}
.testimonials-stats ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0px;
    padding-left: 0px;
}
.vertical-use-section .use-layout ul {
    grid-template-columns: repeat(2, 1fr);
  }
.testimonials-stats li:first-child {
    border-right: none;
    border-bottom: 1px solid #6591dd;
    padding-right: 0;
}
.testimonials-stats p br {
    display: none;
  }
  .vertical-use-section .use-layout ul li:nth-child(2n) {
    border-right: none;
}
.deliver-card p{
    margin-bottom: 0px;
}
.site-footer{
    padding-top: 0px;
}
.footer-inner {
    padding-bottom: 16px;

}
}

/* Pricing */
.pricing-section {
    --teal: #0f9d8a;
    --teal-dark: #0c8677;
    --ink: #16211c;
    --muted: #6b7280;
    --line: #ececec;
    --dark-btn: #1c2230;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

/* ── Tabs ── */
.pricing-section .tabs {
    display: inline-flex;
    background: #e9eaec;
    padding: 4px;
    border-radius: 12px;
    margin: 0 auto 40px;
    gap: 4px;
}

.pricing-section .container {
    text-align: center;
}

.pricing-section .tab-button {
    border: none;
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 26px;
    border-radius: 9px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}

.pricing-section .tab-button.active {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

/* ── Plans grid ── */
.plans-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    text-align: left;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .plans-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .plans-container {
        grid-template-columns: 1fr;
    }
}

.pricing-section .loading,
.pricing-section .error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--muted);
}

.pricing-section .error {
    color: #b3541e;
}

.plan-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
}

.plan-name {
    color: var(--teal);
    font-size: 20px;
    margin-bottom: 10px;
}

.plan-description {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
    min-height: 34px;
    margin-bottom: 16px;
}

.price {
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
}

.price .tax {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.price .interval {
    display: block;
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.cta-button {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 22px;
    transition: opacity .15s ease;
}

.cta-button.primary {
    background: var(--dark-btn);
    color: #fff;
}

.cta-button.secondary {
    background: var(--dark-btn);
    color: #fff;
}

.cta-button:hover {
    opacity: .88;
}

.features-header {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.35;
}

.checkmark {
    width: 16px;
    height: 16px;
    flex: none;
    margin-top: 2px;
    color: var(--teal);
}

.show-more {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--teal);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0 0;
}

/* ── Enterprise / corporate card ── */
.plan-card.corporate {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.plan-card.corporate .plan-name,
.plan-card.corporate .price {
    color: #fff;
}

.plan-card.corporate .plan-description {
    color: rgba(255, 255, 255, .85);
}

.plan-card.corporate .cta-button.primary,
.plan-card.corporate .cta-button.secondary {
    background: #fff;
    color: var(--teal-dark);
}

.plan-card.corporate .features-header {
    color: rgba(255, 255, 255, .75);
}

.plan-card.corporate .feature-item {
    color: #fff;
}

.plan-card.corporate .checkmark {
    color: #fff;
}

.plan-card.corporate .show-more {
    color: #fff;
}

/* ── Enterprise contact modal ── */
.pricing-section .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 18, .55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.pricing-section .modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 32px 28px;
    position: relative;
    text-align: left;
}

.pricing-section .modal-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--ink);
}

.pricing-section .modal-content p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.pricing-section .modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: none;
    font-size: 22px;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
}

.pricing-section .modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-section .modal-form input,
.pricing-section .modal-form textarea {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.pricing-section .modal-form input:focus,
.pricing-section .modal-form textarea:focus {
    outline: 2px solid var(--teal);
    outline-offset: 1px;
}

