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

    :root {
        --navy: #0a1628;
        --navy-mid: #0f2040;
        --orange: #7fd349;
        --orange-light: #7fd349;
        --white: #ffffff;
        --gray-100: #f8fafc;
        --gray-200: #f1f5f9;
        --gray-300: #e2e8f0;
        --gray-500: #64748b;
        --gray-700: #334155;
        --text-dark: #0f172a;
        --text-mid: #475569;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text-dark);
        background: #fff;
        overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
        background: var(--navy);
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .logo {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        font-size: 1.4rem;
        color: var(--white);
        letter-spacing: 2px;
    }

    .logo span {
        color: var(--orange);
    }

    nav ul {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    nav ul a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: color .2s;
    }

    nav ul a:hover {
        color: var(--orange);
    }

    .nav-cta {
        background: var(--orange);
        color: #fff !important;
        padding: 8px 20px;
        border-radius: 6px;
        font-weight: 600 !important;
    }

    .nav-cta:hover {
        background: var(--orange-light);
        color: #fff !important;
    }

    /* ─── HERO ─── */
    .hero {
        background: linear-gradient(135deg, var(--navy) 0%, #0d1f3c 60%, #1a1040 100%);
        padding: 80px 5% 70px;
        display: flex;
        align-items: center;
        gap: 60px;
        min-height: 480px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 60%);
    }

    .hero-text {
        flex: 1;
        z-index: 1;
    }

    .hero-badge {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--orange);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-family: 'Sora', sans-serif;
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero h1 span {
        color: var(--orange);
    }

    .hero p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 480px;
        margin-bottom: 32px;
    }

    .btn-primary {
        display: inline-block;
        background: var(--orange);
        color: #fff;
        padding: 13px 28px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        margin-right: 14px;
        transition: transform .2s, box-shadow .2s;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgb(34 249 22 / 40%);
    }

    .btn-outline {
        display: inline-block;
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        color: #fff;
        padding: 13px 28px;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        transition: border-color .2s, background .2s;
    }

    .btn-outline:hover {
        border-color: var(--orange);
        background: rgb(22 249 118 / 10%);
    }

    .hero-visual {
        flex: 0 0 45%;
        z-index: 1;
    }

    .hero-card {
        background: linear-gradient(145deg, #1e3a5f, #0f2040);
        border: 1px solid rgba(249, 115, 22, 0.3);
        border-radius: 16px;
        padding: 28px;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .hero-card::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), #7fd349);
        border-radius: 16px 16px 0 0;
    }

    .card-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--orange);
        font-weight: 600;
        margin-bottom: 12px;
    }

    .card-title {
        font-family: 'Sora', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .card-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .card-stat:last-child {
        border-bottom: none;
    }

    .stat-name {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .stat-val {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--orange);
    }

    .stat-bar {
        width: 50%;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
    }

    .stat-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--orange), #7fd349);
        border-radius: 4px;
    }

    /* ─── SECTION BASE ─── */
    section {
        padding: 70px 5%;
    }

    .section-tag {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--orange);
        text-transform: uppercase;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
    }

    .section-title {
        font-family: 'Sora', sans-serif;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .section-title span {
        color: var(--orange);
    }

    .section-sub {
        color: var(--text-mid);
        font-size: 0.93rem;
        line-height: 1.7;
    }

    .text-center {
        text-align: center;
    }

    .text-center .section-sub {
        margin: 0 auto;
    }

    /* ─── GROWING FAST ─── */
    .growing {
        background: var(--gray-100);
    }

    .growing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 48px;
    }

    .grow-card {
        background: #fff;
        border-radius: 12px;
        padding: 28px;
        border: 1px solid var(--gray-300);
        transition: transform .2s, box-shadow .2s;
    }

    .grow-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

    .grow-icon {
        width: 44px;
        height: 44px;
        background: rgb(68 249 22 / 10%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    .grow-icon svg {
        width: 22px;
        height: 22px;
        color: var(--orange);
    }

    .grow-card h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .grow-card p {
        font-size: 0.85rem;
        color: var(--text-mid);
        line-height: 1.6;
    }

    /* ─── BUILT FOR FUTURE ─── */
    .built {
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .built-text {
        flex: 1;
    }

    .built-grid {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .built-item {
        background: var(--gray-100);
        border-radius: 10px;
        padding: 20px;
        border-left: 3px solid var(--orange);
    }

    .built-item h4 {
        font-family: 'Sora', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .built-item p {
        font-size: 0.8rem;
        color: var(--text-mid);
        line-height: 1.5;
    }

    /* ─── PLATFORM ─── */
    .platform {
        background: var(--gray-100);
    }

    .platform-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 48px;
    }

    .plat-card {
        background: #fff;
        border-radius: 12px;
        padding: 26px;
        border: 1px solid var(--gray-300);
        transition: all .2s;
    }

    .plat-card:hover {
        border-color: var(--orange);
        box-shadow: 0 8px 32px rgba(249, 115, 22, 0.1);
    }

    .plat-icon {
        font-size: 2.6rem;
        margin-bottom: 14px;
    }

    .plat-card h3 {
        font-family: 'Sora', sans-serif;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .plat-card p {
        font-size: 16px;
        color: var(--text-mid);
        line-height: 1.6;
    }

    /* ─── DARK BANNER ─── */
    .dark-banner {
        background: linear-gradient(135deg, var(--navy) 0%, #1a1040 100%);
        padding: 70px 5%;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .dark-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgb(114 249 22 / 10%) 0%, transparent 70%);
    }

    .dark-banner h2 {
        font-family: 'Sora', sans-serif;
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 800;
        color: #fff;
        z-index: 1;
        position: relative;
        margin-bottom: 16px;
    }

    .dark-banner h2 span {
        color: var(--orange);
    }

    .dark-banner p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        max-width: 560px;
        margin: 0 auto 32px;
        z-index: 1;
        position: relative;
    }

    .banner-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 48px;
        z-index: 1;
        position: relative;
    }

    .bstat {
        text-align: center;
    }

    .bstat-num {
        font-family: 'Sora', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: var(--orange);
    }

    .bstat-label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 4px;
    }

    /* ─── TAILORED ─── */
    .tailored {
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .tailored-text {
        flex: 1;
    }

    .tailored-list {
        list-style: none;
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .tailored-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.88rem;
        color: var(--text-mid);
        line-height: 1.5;
    }

    .tailored-list li::before {
        content: '✓';
        color: var(--orange);
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .tailored-badge {
        flex: 0 0 45%;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 350px;
    }

    .tailored-badge span {
        font-family: 'Sora', sans-serif;
        font-size: 4rem;
        font-weight: 800;
        color: #fff;
    }

    .tailored img {
        border-radius: 20px;
        width: 100%;
        padding: 10px;
    }

    /* ─── SECTORS ─── */
    .sectors {
        background: var(--gray-100);
        text-align: center;
    }

    .sector-tabs {
        display: flex;
        gap: 12px;
        margin-bottom: 36px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sector-tab {
        padding: 8px 20px;
        display: flex;
        align-items: center;
        border-radius: 24px;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: all .2s;
        border: 1.5px solid var(--gray-300);
        background: #fff;
        color: var(--text-mid);
    }

    .sector-tab.active {
        background: var(--orange);
        color: #fff;
        border-color: var(--orange);
    }

    .sector-content {
        background: #fff;
        border-radius: 14px;
        padding: 36px;
        border: 1px solid var(--gray-300);
    }

    .sector-content h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .sector-content p {
        font-size: 0.88rem;
        color: var(--text-mid);
        line-height: 1.7;
    }

    .text-secondary {
        color: #7fd349
    }

    .sector-tab span {
        padding: 5px 10px;
    }


    /* ─── WHY PARTNER ─── */
    .why-partner {
        background: linear-gradient(135deg, var(--navy) 0%, #0d1f3c 100%);
        padding: 70px 5%;
        text-align: center;
    }

    .why-partner h2 {
        font-family: 'Sora', sans-serif;
        font-size: clamp(1.4rem, 2.5vw, 1.8rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
    }

    .why-partner h2 span {
        color: var(--orange);
    }

    .why-partner p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.88rem;
        max-width: 70%;
        margin: 0 auto 36px;
    }

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

    .why-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 24px;
        text-align: left;
    }

    .why-item h4 {
        font-family: 'Sora', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
    }

    .why-item p {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.5;
        max-width: 100%;
    }


    /* ─── COMPLEXITY TO CLARITY ─── */
    .clarity {
        text-align: center;
    }

    .clarity-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 48px;
        position: relative;
    }

    .clarity-steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: linear-gradient(90deg, var(--orange), #7fd349);
        z-index: 0;
    }

    .cstep {
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 16px;
    }

    .cstep-num {
        width: 56px;
        height: 56px;
        background: var(--orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Sora', sans-serif;
        font-size: 1.1rem;
        font-weight: 800;
        color: #fff;
        margin: 0 auto 16px;
        box-shadow: 0 4px 16px rgb(22 249 33 / 30%);
    }

    .cstep h4 {
        font-family: 'Sora', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .cstep p {
        font-size: 0.8rem;
        color: var(--text-mid);
        line-height: 1.5;
    }

    /* ─── TESTIMONIAL ─── */
    .testimonial {
        background: var(--gray-100);
        text-align: center;
    }

    .testi-box {
        background: #fff;
        border-radius: 16px;
        padding: 48px;
        max-width: 700px;
        margin: 36px auto 0;
        border: 1px solid var(--gray-300);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
    }

    .testi-stars {
        color: var(--orange);
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .testi-box blockquote {
        font-size: 1rem;
        font-style: italic;
        color: var(--text-mid);
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .testi-author {
        font-family: 'Sora', sans-serif;
        font-weight: 700;
        font-size: 0.88rem;
        color: var(--text-dark);
    }

    .testi-role {
        font-size: 0.8rem;
        color: var(--text-mid);
    }

    .testi-wrapper {
        position: relative;
        overflow: hidden;
        width: 700px;
        margin: auto;
    }

    .testi-slider {
        display: flex;
        transition: transform 0.5s ease;
    }

    .testi-box {
        min-width: 100%;
        box-sizing: border-box;
    }

    /* NAV BUTTONS */
    .nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 20px;
        z-index: 10;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    /* ─── AI PROCESS ─── */
    .ai-process {
        background: var(--navy);
        padding: 70px 5%;
    }

    .ai-process .section-title {
        color: #fff;
    }

    .ai-process .section-title span {
        color: var(--orange);
    }

    .ai-process .section-sub {
        color: rgba(255, 255, 255, 0.6);
    }

    .ai-process p {
        color: #fff;
    }

    .ai-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 48px;
    }

    .ai-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 24px;
        transition: all .2s;
    }

    .ai-card:hover {
        background: rgb(22 249 151 / 8%);
        border-color: rgb(197 249 22 / 30%);
    }

    .ai-card-icon {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .ai-card h4 {
        font-family: 'Sora', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
    }

    .ai-card p {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.5;
    }

    /* ─── CTA ─── */
    .cta-section {
        background: linear-gradient(135deg, var(--navy) 0%, #1a1040 100%);
        padding: 80px 5%;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgb(114 249 22 / 10%) 0%, transparent 70%);
    }

    .cta-section h2 {
        font-family: 'Sora', sans-serif;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
        z-index: 1;
        position: relative;
    }

    .cta-section h2 span {
        color: var(--orange);
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        max-width: 70%;
        margin: 0 auto 36px;
        z-index: 1;
        position: relative;
    }

    .cta-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        z-index: 1;
        position: relative;
    }

    /* ─── CONTACT FORM ─── */
    .contact {
        background: var(--gray-100);
    }

    .contact-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group label {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        border: 1.5px solid var(--gray-300);
        border-radius: 8px;
        font-size: 0.85rem;
        font-family: 'Inter', sans-serif;
        color: var(--text-dark);
        background: #fff;
        outline: none;
        transition: border-color .2s;

    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--orange);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-submit {
        background: var(--orange);
        color: #fff;
        border: none;
        padding: 13px 32px;
        border-radius: 8px;
        font-family: 'Sora', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: transform .2s, box-shadow .2s;
        margin-top: 8px;
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
    }

    /* ─── FAQ ─── */
    .faq-list {
        max-width: 80%;
        margin: 36px auto 0;
        display: flex;
        flex-direction: row;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .faq-item {
        border: 1px solid var(--gray-300);
        border-radius: 10px;
        overflow: hidden;
        margin: 10px;
    }

    .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 22px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.88rem;
        background: #fff;
        transition: background .2s;
        user-select: none;
    }

    .faq-q:hover {
        background: var(--gray-100);
    }

    .faq-toggle {
        color: var(--orange);
        font-size: 1.2rem;
        line-height: 1;
        transition: transform .3s;
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        background: #fff;
    }

    .faq-a-inner {
        padding: 0 22px 18px;
        font-size: 0.84rem;
        color: var(--text-mid);
        line-height: 1.7;
    }

    .faq-item.open .faq-a {
        max-height: 200px;
    }

    .faq-item.open .faq-toggle {
        transform: rotate(45deg);
    }

    /* ─── FOOTER ─── */
    footer {
        background: var(--navy);
        padding: 60px 5% 30px;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2.5fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 48px;
    }

    .footer-brand .logo {
        display: block;
        margin-bottom: 16px;
    }

    .footer-brand p {
        font-size: 0.83rem;
        line-height: 1.7;

    }

    .footer-col h5 {
        font-family: 'Sora', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
    }

    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        font-size: 0.82rem;
        transition: color .2s;
    }

    .footer-col ul a:hover {
        color: var(--orange);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.78rem;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        transition: color .2s;
    }

    .footer-links a:hover {
        color: var(--orange);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

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

    .hero-text {
        animation: fadeUp .7s ease both;
    }

    .hero-visual {
        animation: fadeUp .7s .2s ease both;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 450px) {

        .growing-grid,
        .platform-grid {
            grid-template-columns: 1fr !important;
        }
    }

    @media (max-width: 900px) {
        .hero {
            flex-direction: column;
            text-align: center;
        }

        .hero p {
            margin: 0 auto 32px;
        }

        .hero-visual {
            flex: unset;
            width: 100%;
        }

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

        .built {
            flex-direction: column;
        }

        .tailored {
            flex-direction: column;
        }

        .grow-cards {
            grid-template-columns: 1fr 1fr;
        }

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

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

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

        .contact-wrap {
            grid-template-columns: 1fr;
        }

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

        .clarity-steps {
            grid-template-columns: 1fr 1fr;
        }

        .clarity-steps::before {
            display: none;
        }

        .banner-stats {
            gap: 30px;
            flex-wrap: wrap;
        }

        nav ul {
            display: none;
        }

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

        .testi-wrapper {
            width: 100%;
        }

        .faq-list {
            max-width: 100%;
            flex-direction: column;
        }
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /* Image */
    .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 20px;
    }

    .webinar-sec {
        width: 100%;
        float: left;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .webinar-sec img {
        width: 100%;

    }


        .tech-services-section {
            width: 100%;
            max-width: 85%;
            margin: auto;
        }
    
        /* ===== HEADING ===== */
        .services-heading {
            text-align: center;
            margin-bottom: 32px;
        }
    
        .services-heading h2 {
            font-weight: 700;
            font-size: 32px;
            color: #121212;
            line-height: 1.2;
        }
    
        .services-heading h2 span {
            color: #7fd349;
        }
    
        .services-heading p {
            font-size: 16px;
            color: #999;
            margin-top: 6px;
        }
    
        /* ===== TOP TABS ===== */
        .top-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 28px;
        }
    
        .top-tab-btn {
            padding: 11px 32px;
            border-radius: 50px;
            border: 2px solid #e0dbd4;
            background: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }
    
        .top-tab-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255, 107, 44, 0.12) 0%, transparent 70%);
            opacity: 0;
            transform: scale(0.6);
            transition: opacity 0.3s ease, transform 0.4s ease;
            pointer-events: none;
        }
    
        .top-tab-btn:hover::before {
            opacity: 1;
            transform: scale(1.3);
        }
    
        .top-tab-btn:hover {
            border-color: #7fd349;
            color: #7fd349;
            transform: translateY(-2px);
        }
    
        .top-tab-btn.active {
            background: #7c7c7c;
            border-color: #7c7c7c;
            color: #fff !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
            transform: translateY(0);
        }
    
        .top-tab-btn.active::before {
            display: none;
        }
    
        /* ===== MAIN WRAPPER ===== */
        .services-wrapper {
            display: flex;
            gap: 20px;
            height: 520px;
        }
    
        /* ===== SIDEBAR ===== */
        .sidebar {
            width: 330px;
            flex-shrink: 0;
            background: #f3fbff;
            border-radius: 20px;
            padding: 22px 14px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            overflow-y: auto;
        }
    
        .sidebar-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            padding: 0 8px 14px;
            margin-bottom: 2px;
            border-bottom: 1px solid #ede8e0;
        }
    
        /* Sidebar section — hidden by default */
        .sidebar-section {
            display: none;
            flex-direction: column;
            gap: 4px;
        }
    
        .sidebar-section.active {
            display: flex;
            background: #fff;
        }
    
        .sidebar-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 14px;
            border-radius: 14px;
            border: none;
            background: transparent;
            cursor: pointer;
            width: 100%;
            text-align: left;
            font-family: 'DM Sans', sans-serif;
            font-size: 13.5px;
            font-weight: 500;
            color: #555;
            transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
            position: relative;
            overflow: hidden;
        }
    
        .sidebar-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255, 107, 44, 0.13) 0%, transparent 70%);
            opacity: 0;
            transform: scale(0.5);
            transition: opacity 0.3s ease, transform 0.4s ease;
            border-radius: inherit;
            pointer-events: none;
        }
    
        .sidebar-btn:hover::before {
            opacity: 1;
            transform: scale(1.2);
        }
    
        .sidebar-btn:hover {
            background: #ffffff;
            color: #1a1a1a;
            transform: translateX(3px);
        }
    
        .sidebar-btn:active {
            transform: translateX(3px) scale(0.98);
        }
    
        .sidebar-btn.active {
            background: #7c7c7c;
            color: #fff !important;
            font-weight: 600;
            transform: translateX(0);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
        }
    
        .sidebar-btn.active::before {
            display: none;
        }
    
        .sidebar-btn .btn-icon {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: #ede8e0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 16px;
            transition: background 0.25s ease, transform 0.25s ease;
        }
    
        .sidebar-btn:hover .btn-icon {
            transform: scale(1.1) rotate(-5deg);
        }
    
        .sidebar-btn.active .btn-icon {
            background: #7be13e;
            transform: none;
        }
    
        .sidebar-btn .arrow {
            margin-left: auto;
            font-size: 15px;
            opacity: 0.35;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
    
        .sidebar-btn:hover .arrow {
            transform: translateX(3px);
            opacity: 0.8;
        }
    
        .sidebar-btn.active .arrow {
            opacity: 1;
            color: #fff;
        }
    
        /* ===== CONTENT PANEL ===== */
        .content-panel {
            flex: 1;
            background: #fff;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }
    
        /* ===== TAB PANES ===== */
        .tab-pane {
            display: none;
            flex-direction: column;
            flex: 1;
            height: 100%;
        }
    
        .tab-pane.active {
            display: flex;
            background-color: #f3fbff;
            animation: fadeSlideIn 0.28s ease forwards;
        }
    
        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
    
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
        /* Panel Header */
        .panel-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 22px 26px 18px;
            border-bottom: 1.5px solid #f0ebe4;
            flex-shrink: 0;
        }
    
        .panel-icon {
            width: 50px;
            height: 50px;
            background: #83ea40ba;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }
    
        .panel-title-wrap h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.2;
        }
    
        .panel-title-wrap p {
            font-size: 13px;
            color: #999;
            margin-top: 3px;
        }
    
        /* Scroll area */
        .cards-scroll-wrapper {
            flex: 1;
            display: flex;
            overflow: hidden;
            padding: 18px 0 18px 26px;
        }
    
        .cards-scroll {
            flex: 1;
            overflow-y: auto;
            padding-right: 10px;
            scrollbar-width: none;
        }
    
        .cards-scroll::-webkit-scrollbar {
            display: none;
        }
    
        /* Orange scrollbar */
        .orange-scrollbar {
            width: 5px;
            background: #e4f0ea;
            border-radius: 10px;
            flex-shrink: 0;
            margin: 0 14px;
            position: relative;
            overflow: hidden;
        }
    
        .orange-scrollbar-thumb {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: #7fd349;
            border-radius: 10px;
            height: 35%;
            transition: top 0.1s;
        }
    
        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
    
        .service-card {
            background: #ffffff;
            border: 1.5px solid #eeebe6;
            border-radius: 14px;
            padding: 18px 12px 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            position: relative;
            overflow: hidden;
        }
    
        .service-card::after {
            content: '';
            position: absolute;
            top: -60%;
            left: -80%;
            width: 40%;
            height: 220%;
            background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
            transform: skewX(-15deg);
            transition: left 0.5s ease;
            pointer-events: none;
        }
    
        .service-card:hover::after {
            left: 140%;
        }
    
        .service-card:hover {
            border-color: #7fd349;
            background: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(255, 107, 44, 0.12);
        }
    
        .service-card:active {
            transform: translateY(-1px) scale(0.97);
        }
    
        .card-icon {
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
    
        .service-card:hover .card-icon {
            transform: scale(1.18) translateY(-2px);
        }
    
        .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(1);
            transition: filter 0.25s ease;
        }
    
        /* .service-card:hover .card-icon img {
            filter: brightness(0) sepia(1) hue-rotate(345deg) saturate(4) brightness(0.7);
        } */
    
        .card-name {
            font-size: 12px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
        }
    
        /* Footer */
        .panel-footer {
            padding: 14px 26px;
            border-top: 1.5px solid #f0ebe4;
            display: flex;
            justify-content: flex-end;
            flex-shrink: 0;
        }
    
        .explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #7fd349;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 11px 24px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
    
        .explore-btn:hover {
            background: #e85a1f;
            transform: translateX(3px);
        }
    
        .explore-btn svg {
            width: 16px;
            height: 16px;
        }
    
        /* Responsive */
        @media (max-width: 900px) {
            .services-wrapper {
                flex-direction: column;
                height: auto;
            }
    
            .sidebar {
                width: 100%;
            }
    
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }