/* Figtree Font */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Light.woff2') format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-SemiBold.woff2') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-ExtraBold.woff2') format('woff2');
    font-weight: 800;
}

/* Open Sans Font */
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Light.woff2') format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-ExtraBold.woff2') format('woff2');
    font-weight: 800;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    color: var(--text-dark);

}

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

a {
    text-decoration: none;
    color: inherit;
}
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

[type=button]:not(:disabled):focus-visible,
[type=reset]:not(:disabled):focus-visible,
[type=submit]:not(:disabled):focus-visible,
button:not(:disabled):focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}   

:root {
    --primary: #0057e7;
    --primary-light: #e8f0fe;
    --primary-dark: #0041b0;
    --accent: #00c2a8;
    --text-dark: #0f1b2d;
    --text-gray: #5a6a85;
    --bg-light: #f0f4ff;
    --bg-white: #ffffff;
    --border: #e2e8f5;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(0, 87, 231, 0.10);
}

/* ========== NAVBAR ========== */
.navbar {

    position: fixed !important;
    top: 50px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: 1380px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0px !important;
    display: block !important;
    transition: top 0.25s ease;
}

.navbar.is-sticky {
    top: 0 !important;
}

.navbar-inner {
    background: #fff !important;
    max-width: 1380px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 20px;
    box-shadow: 0px 0px 10px 0px #073DC71A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navbar height compensate - page content push down */
#page-wrapper {
    padding-top: 65px;
}

.navbar-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand span {
    color: var(--text-dark);
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    font-family: 'Figtree', sans-serif;
    gap: 15px;
}

.nav-item {
    position: relative;
}

.nav-item-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: none;
    transition: color .2s, background .2s;
    white-space: nowrap;
    font-family: inherit;
}

.nav-item-btn:hover {
    color: #0069FF;
    background: #EFF4FF;
}
.nav-item-btn:hover svg path {
    stroke: #0069FF;
}

.nav-item.open .nav-item-btn {
    color: #0069FF;
    background: #EFF4FF;
}
.nav-item.open .nav-item-btn svg path {
    stroke: #0069FF;
}

.nav-chevron {
    transition: transform .25s;
    display: inline-block;
}

.nav-item.open .nav-chevron {
    transform: rotate(180deg);
}

/* Desktop Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 25px);
    left: -100px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 3px 3px 10px 0px #073DC71A;
    min-width: 315px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .22s cubic-bezier(.4, 0, .2, 1);
    z-index: 999;
    pointer-events: none;
}
.c-width-adjust{
    min-width: 385px !important;
}
.c-width-tool-adjust{
    min-width: 430px !important;
}

.nav-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.nav-dd-item {
    display: flex;
    font-family: 'Open Sans';
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .18s;
    text-decoration: none;
}

.nav-dd-item:hover {
    background-color: #EFF4FF;
}
.nav-dd-item:hover svg rect {
    fill: #0069FF;
}
.nav-dd-item:hover svg path {
    stroke: #ffffff;
}

.nav-dd-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.nav-dd-text {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    font-family: 'Open Sans';
    font-size: 18px;
    color: #0069FF;
    padding: 7px 22.5px;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid #0069FF;
    background-color: #fff;
    cursor: pointer;
    transition: all .2s;
}

.btn-login:hover {
    background-color: #EFF4FF;
}

.btn-book {
    background: #0069FF;
    font-family: 'Open Sans';
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 9px 23.5px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.btn-book:hover {
    background: #1B69D9;
    color: #fff;
}

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== MOBILE DRAWER OVERLAY ========== */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    transition: opacity .3s;
}

.drawer-overlay.active {
    display: block;
    opacity: 1;
    backdrop-filter: blur(2px);
}

/* ========== MOBILE DRAWER ========== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 10001;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.drawer-close svg {
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}


/* Drawer Nav */
.drawer-nav {
    flex: 1;
    padding: 8px 0;
}

.drawer-nav-item {
    border-bottom: 1px solid var(--border);
}

.drawer-nav-title {
    display: flex;
    align-items: center;
    font-family: 'Figtree';
    justify-content: space-between;
    padding: 15px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: color .2s;
    user-select: none;
}

.drawer-nav-title.active {
    color: var(--primary);
}

.drawer-nav-title.link-item {
    cursor: pointer;
}

a.drawer-nav-title {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

.drawer-arrow {
    font-size: 18px;
    color: var(--text-gray);
    transition: transform .3s;
}

.drawer-nav-item.open .drawer-arrow {
    transform: rotate(180deg);
}

.drawer-nav-item.open .drawer-nav-title {
    color: #0069FF;
}

/* Drawer Submenu */
.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #fafbff;
}

.drawer-nav-item.open .drawer-submenu {
    max-height: 400px;
}

.drawer-submenu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Open Sans';
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    transition: background .2s;
}

.drawer-submenu-item:hover {
    background: var(--primary-light);
}

/* Drawer Footer Buttons */
.drawer-footer {
    padding: 20px 24px calc(32px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border);
}

@supports (-webkit-touch-callout: none) {
    .mobile-drawer {
        min-height: -webkit-fill-available;
    }
}

.drawer-btn-login {
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    padding: 14px;
    border: 2px solid #0069FF;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #0069FF;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}

.drawer-btn-login:hover {
    background: var(--primary-light);
}

.drawer-btn-demo {
    display: block;
    width: 100%;
    font-family: 'Open Sans';
    padding: 14px;
    background-color: #0069FF;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background .2s;
}
.c-header-gap{
    column-gap: 40px;
}
.drawer-btn-demo:hover {
    background: var(--primary-dark);
}


/* ========== HERO ========== */
.hero {
    background: linear-gradient(180deg, rgba(232, 238, 255, 0.3) 0%, #E8EEFF 100%);
    padding: 130px 0px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    right: 0;
    z-index: 0;
    top: 35%;
    transform: translate(-70%, -50%);
}
.c-hero-bg-layer{
    position: absolute;
    left: 0%;
    z-index: 0;
    transform: translate(70%, -50%) rotate(330deg);
    top: 27%;
}

.hero .section-inner {
    position: relative;
    z-index: 1;
}
.c-hero-content{
    padding-top: 80px;
}
.c-hero-content-about{
    padding-bottom: 80px;
}

.main-heading-text {
    font-size: 55px;
    font-family: 'Open Sans';
    font-weight: 700;
    color: #000000;
}

.main-heading-text span {
    color: #0069ff;
}

.main-heading-description {
    font-size: 18px;
    color: #565656;
    margin: 15px auto 30px;
    font-family: 'Figtree';
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-demo-book {
    background: #0069ff;
    font-family: 'Open Sans';
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 11px 34px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .4s;
}

.cta-demo-book:hover {
    scale: 1.05;
    transition: all .4s;
}

.cta-start-free-trial {
    background: transparent;
    color: #0069ff;
    font-size: 20px;
    font-family: 'Open Sans';
    font-weight: 700;
    padding: 11px 30px;
    border-radius: 10px;
    border: 2px solid #0069ff;
    cursor: pointer;
    transition: all .4s;
}

.cta-start-free-trial:hover {
    scale: 1.05;
    transition: all .4s;
}

/* .hero-img {
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 87, 231, 0.15);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    min-height: 0;
    display: block;
} */

.hero-video-wrap {
    position: relative;
    display: inline-block;
    width: 101%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    filter: drop-shadow(0 0 8.1px rgba(49, 107, 255, 0.50));
    background: linear-gradient(180deg, rgba(49, 107, 255, 0.87) 0%, rgba(9, 67, 215, 0.95) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
}

.hero-play-btn::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 105, 255, 0.28) 0%, rgba(0, 105, 255, 0) 72%);
    z-index: -1;
    pointer-events: none;
}

.hero-play-btn svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

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

@media (max-width: 575px) {
    .hero-play-btn {
        width: 50px;
        height: 50px;
        padding-left: 4px;
    }

    .hero-play-btn svg {
        width: 18px;
        height: 18px;
    }
}

.hero-play-btn.hidden {
    display: none;
}

.hero-dashboard-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Uncommented સાથે <video> માટે (hero માં image ની જગ્યાએ video) */
.hero-dashboard-video {
    max-height: min(70vh, 560px);
    object-fit: contain;
    background: #0f1b2d;
}

/* ========== SECTION COMMON ========== */
.section {
    padding: 80px 32px;
}

.section-inner {
    max-width: 1380px;
    margin: 0 auto;
}

/* ========== PROBLEM SECTION ========== */
.problem {
    background: #fff;
}

/* ========== SPECIALIST SECTION ========== */
.c-extra-top-margin{
    margin: 80px 0px 0px;
}

/* ========== STATS STRIP ========== */

/* ========== SETUP ONCE CTA ========== */

/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: var(--bg-light);
}

.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========== WHAT YOU GET ========== */

/* ========== AFTER USING ========== */

/* ========== CALCULATOR ========== */

.calc-left h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.calc-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* ========== PRICING ========== */
.pricing {
    background: #fff;
}

/* ========== SECURITY ========== */

/* ========== FAQ ========== */

.faq-item {
    background: #FBFAFA;
    border: 1px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* ========== FOOTER ========== */
.footer {
    background: #0a0f1e;
    color: #fff;
    padding: 60px 32px 30px;
}

/* ========== HIDE SCROLLBAR ========== */
html,
body {
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE / Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    /* Chrome / Safari */
    width: 0 !important;
}

/* ========== SCROLL LOCK ========== */
html.scroll-locked,
html.scroll-locked body {
    overflow: hidden !important;
}


@media (max-width: 1400px) {
    .c-section-padding{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .hero-bg-layer {
        transform: translate(-10%, -50%);
    }
    .c-hero-bg-layer{
        transform: translate(10%, -50%) rotate(330deg);
    }
}
@media (max-width: 1390px) {
    .navbar {
    padding: 0 15px !important;
}
}
@media (max-width: 1310px) {
    .main-heading-text {
        font-size: 46px;
}
}
@media (max-width: 1200px) {
    .navbar-brand svg{
        width: 180px;
    }
    .btn-book{
        font-size: 15px;
    }
    .btn-login{
        font-size: 15px;
    }
    .nav-item-btn{
        font-size: 16px;
    }
    .nav-links {
        gap: 10px;
    }
    .c-header-gap{
        column-gap: 20px;
    }
    .hero-bg-layer {
        display: none;
    }
    .c-hero-bg-layer{
        display: none;
    }
}
@media (max-width: 1050px) {
    .navbar-brand svg{
        width: 170px;
    }
    .btn-book{
        padding: 9px 17px;
    }
    .btn-login{
        padding: 7px 17px;
    }
    .nav-item-btn{
        font-size: 15px;
    }
}


@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
    .navbar-brand svg{
        width: 190px;
    }
    .navbar{
        top: 0px !important;
        width: 100vw !important;
        padding: 0 !important;
    }
    .navbar-inner{
        border-radius: 0 !important;
    }
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }
    .hero{
        padding: 80px 0px 60px;
    }
    .c-hero-content{
        padding-top: 40px;
    }
    .c-hero-content-about{
        padding-bottom: 40px;
    }
}

/* ========== SCROLL TO TOP (circular scroll progress) ========== */
.scroll-top-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #0069FF;
    cursor: pointer;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* box-shadow: 0 4px 14px rgba(7, 19, 45, 0.12); */
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-top-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-top-track {
    fill: none;
    stroke: #E8EDF5;
    stroke-width: 2.5;
}

.scroll-top-progress {
    fill: none;
    stroke: #0069FF;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 150.796;
    stroke-dashoffset: 150.796;
    transition: stroke-dashoffset 0.12s linear;
}

.scroll-top-icon {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.scroll-top-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 18px rgba(0, 105, 255, 0.2); */
}

.scroll-top-btn:focus-visible {
    outline: 2px solid #0069FF;
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .scroll-top-btn {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }
}

/* ========== SHARED FOOTER ========== */
.site-footer {
    background: #07132d;
    color: #d8e2ff;
    margin-top: 80px;
}

.site-footer-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 0px 40px;
}

.site-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.4fr 1.4fr;
    gap: 18px;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.site-footer-logo-svg {
    display: block;
    width: 215px;
    height: auto;
}

.site-footer-tagline {
    margin: 14px 0 16px;
    color: #cfd1d4;
    font-size: 18px;
    max-width: 230px;
    font-family: 'Figtree';
    font-weight: 500;
}

.site-footer-socials {
    display: flex;
    gap: 12px;
}

.site-footer-social {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #d8e2ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer-social svg {
    width: 35px;
    height: 35px;
    display: block;
}

.site-footer-social svg rect {
    transition: fill-opacity 0.2s ease;
}

.site-footer-social:hover svg rect:first-child {
    fill-opacity: 1;
}

.site-footer-links-col h4 {
    color: #ffffff;
    margin: 4px 0 25px;
    font-size: 26px;
    font-family: 'Open Sans';
    line-height: 1.1;
    font-weight: 700;
}

.site-footer-links-col a {
    display: block;
    color: #cfd1d4;
    text-decoration: none;
    margin-bottom: 12px;
    font-family: 'Figtree';
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

.site-footer-links-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer-bottom-wrap {
    border-top: 1px solid #343a48;
}

.site-footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.site-footer-bottom p {
    margin: 0;
    color: #cfd1d4;
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .site-footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .site-footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer-links-col h4 {
        font-size: 20px;
    }

    .site-footer-links-col a {
        font-size: 15px;
    }

    .site-footer-bottom {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .main-heading-text {
        font-size: 36px;
}
.site-footer-inner{
    padding: 40px 0px 40px;
}
}
@media (max-width: 575px) {
    .main-heading-text {
        font-size: 30px;
    }
    .main-heading-description{
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .hero-btns {
        display: grid;
        justify-content: unset !important;
        gap: 15px;
        margin-bottom: 30px;
    }
    .hero{
        padding: 80px 0px 30px;
    }
    .cta-demo-book{
        font-size: 16px;
        border-radius: 5px;
    }
    .cta-start-free-trial{
        font-size: 16px;
        padding: 9px 30px;
        border-radius: 5px;
    }
    .site-footer-tagline {
        font-size: 14px;
    }
}

/* ============================================================
   PROBLEM vs SOLUTION SECTION
   ============================================================ */
.pvs-section {
    background: #fff;
    padding: 80px 0 0;
}

/* Heading */
.pvs-heading {
    text-align: center;
    margin-bottom: 40px;
}

.pvs-heading-title {
    font-family: 'Open Sans';
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.pvs-heading-description {
    font-family: 'Figtree';
    font-size: 18px;
    color: #565656;
    line-height: 1.6;
    margin: 0 auto;
    font-weight: 500;
}

/* Cards row */
.pvs-cards {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

/* Individual card */
.pvs-card {
    flex: 1;
    border-radius: 16px;
    max-width: 558px;
    overflow: hidden;
    position: relative;
    padding: 24px 24px 0;
}

.pvs-card--problems {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    margin-top: 45px;
}

.pvs-card--solutions {
    border: 1px solid #E0EAFF;
    background: linear-gradient(180deg, rgba(239, 244, 255, 0.00) 35%, #EFF4FF 100%);
    box-shadow: 0 0 10px 0 rgba(7, 61, 199, 0.10);
}

/* Badge */
.pvs-badge {
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 16px;
    font-family: 'Open Sans';
    font-weight: 600;
    padding: 7px 10px;
    border-radius: 10px;
    white-space: nowrap;
}

.pvs-badge--problems {
    background: #F0F0F0;
    color: #000000;
}

.pvs-badge--solutions {
    background: #0069FF;
    color: #fff;
}

/* Row */
.pvs-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
}

/* Icon wrapper */
.pvs-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}   
/* Text block */
.pvs-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}

.pvs-item-title {
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.pvs-item-desc {
    font-family: 'Figtree';
    font-size: 18px;
    color: #565656;
    line-height: 1.4;
    font-weight: 500;
}

/* Divider */
.pvs-divider {
    height: 1px;
    background: #e4e9f0;
    margin: 0;
}

.pvs-card--solutions .pvs-divider {
    background: #EFF4FF;
}

/* Bottom image area */
.pvs-card-img {
    margin: 0px -24px 0;
    /* height: 305px; */
    overflow: hidden;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
}

.pvs-card-photo {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

/* Arrow between cards */
.pvs-arrow {
    flex-shrink: 0;
    width: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    transform: translate(16px, 180px);
    z-index: 2;
    position: absolute;
}

.pvs-arrow svg {
    width: 96px;
    height: auto;
    display: block;
}

/* ---- Responsive ---- */

@media (max-width: 1200px) {
    .pvs-item-title{
        font-size: 18px;
    }
    .pvs-item-desc{
        font-size: 16px;
    }
    .pvs-badge{
        font-size: 14px;
    }
}
@media (max-width: 1200px){
    .pvs-heading-title{
        font-size: 38px;
    }
}
@media (max-width: 992px) {
    .pvs-section {
        padding: 60px 0 0;
    }

    .pvs-cards {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .pvs-arrow {
        display: none;
    }

    .pvs-card {
        width: 100%;
    }
    .pvs-heading-title{
        font-size: 35px;
    }
    .pvs-heading-description{
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .pvs-heading-title{
        font-size: 25px;
    }
    .pvs-heading-description{
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    .pvs-item-title {
        font-size: 13px;
    }
    .pvs-item-desc {
        font-size: 12px;
    }
    .pvs-icon{
        width: 40px;
        height: 40px;
    }
    .pvs-badge{
        font-size: 10px;
    }
    .pvs-card {
        padding: 20px 16px 0;
    }
    .pvs-card--problems{
        margin-top: 0px;
    }
    .wf-card{
        border-radius: 10px !important;
    }
    .pvs-card-photo {
        max-width: 100%;
    }
    .pvs-card-img {
        margin: 0 -16px 0;
    }
}
@media (max-width: 390px){
    .pvs-item-title {
        font-size: 12px;
    }
    .pvs-item-desc {
        font-size: 11px;
    }
    .pvs-icon{
        width: 30px;
        height: 30px;
    }
}

/* ============================================================
   WORKFLOW COMPARISON SECTION (Section 3)
   ============================================================ */
.wf-section {
    background: #ffffff;
    padding: 68px 0 84px;
}
.extra-margin-section{
    margin-top: 80px;
}

.wf-heading {
    text-align: center;
    max-width: 910px;
    margin: 0 auto 30px;
}

.wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.wf-flex-grid{
    display: flex;
    justify-content: center;
}

.wf-card {
    border: 1px solid #e7ebf2;
    border-radius: 26px;
    padding: 25px 25px 15px;
    box-shadow: 0 1px 2px rgba(14, 30, 62, 0.03), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.wf-card--old {
    background: #ffffff;
}
.update-wf-card{
    max-width: 558px;
}

.wf-card--new {
    background: #EFF4FF;
    border-color: #E0EAFF;
    box-shadow: 0px 0px 10px 0px #073DC71A;
}
.bg-wf-card--new{
    background: linear-gradient(180deg, rgba(239, 244, 255, 0.00) 35%, rgba(239, 244, 255, 0.60) 100%);
}

.wf-card-body {
    background: #FBFAFA;
    border: 1px solid #F2F2F2;
    border-radius: 20px;
    padding: 10px 27px;
    overflow: hidden;
}
.c-remove-background{
    background: transparent !important;
    border: none;
    padding: 0px 0px 0px 8px;
}

.wf-card-title {
    margin: 0 0 20px;
    font-family: 'Open Sans';
    font-size: 22px;
    line-height: 1.24;
    font-weight: 700;
    color: #000000;
}

.wf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0;
    border-bottom: 0;
    padding: 15px 0;
    gap: 10px;
}

.wf-card-body .wf-row + .wf-row {
    border-top: 1px solid #e8edf3;

}

.wf-row-left {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.wf-tool-icon-svg {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wf-tool-icon-svg svg {
    width: 40px;
    height: 40px;
    display: block;
}

.wf-copy {
    min-width: 0;
}

.wf-tool-name {
    margin: 0;
    font-family: 'Figtree';
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    color: #000000;
}

.wf-tool-desc {
    margin: 2px 0 0;
    font-family: 'Figtree';
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    color: #565656;
    white-space: normal;
}

.wf-time {
    font-family: 'Figtree';
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 999px;
}

.wf-time--old {
    color: #FF7272;
    background: #fbf2f2;
}

.wf-time--new {
    color: #0069ff;
    background: #eff4ff;
}

.wf-summary {
    margin-top: 30px;
    border: 1px solid #dce8fb;
    border-radius: 16px;
    display: flex;
    /* background: linear-gradient(180deg, rgba(213, 230, 255, 0.24) 0%, #0069FF 900%); */
    background: linear-gradient(180deg, rgba(232, 238, 255, 0.30) 0%, rgba(232, 238, 255, 0.70) 100%);
    align-items: center;
    justify-content: space-around;
    gap: 18px;
    padding: 22px 130px;
}

.wf-summary-item {
    text-align: center;
}

.wf-summary-value {
    margin: 0;
    font-family: 'Open Sans';
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.wf-summary-value--red {
    color: #EF382A;
}

.wf-summary-value--blue {
    color: #0069ff;
}

.wf-summary-value--green {
    color: #00A73D;
}

.wf-summary-label {
    margin: 8px 0 0;
    font-family: 'Figtree';
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #565656;
}

.wf-summary-arrow {
    font-size: 42px;
    color: #0d7cff;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 6px;
}

@media (max-width: 1200px) {
    .wf-summary-value {
        font-size: 30px;
    }

    .wf-summary-arrow {
        font-size: 34px;
    }
    .wf-summary{
        justify-content: space-between;
    }
}
@media (max-width: 1150px) {
    .wf-tool-name{
        font-size: 17px;
    }
    .wf-tool-desc{
        font-size: 15px;
    }
    .wf-row-left{
        gap: 10px;
    }
    .wf-card-body{
        padding: 10px 15px;
    }
}

@media (max-width: 992px) {

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

    .wf-summary {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 30px;
        padding: 25px 15px;
        text-align: center;
    }

    .wf-summary-item {
        text-align: center;
        width: 100%;
    }

    .wf-summary-arrow {
        transform: rotate(90deg);
        padding-bottom: 0;
        line-height: 0.8;
    }
}
@media (max-width: 768px) {
    .wf-flex-grid{
        display: grid !important;
        grid-auto-flow: row;
        align-content: center;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }
}
@media (max-width: 575px) {
    .wf-section {
        padding: 54px 0 68px;
    }
    .extra-margin-section{
        margin-top: 40px;
    }
    .wf-summary-arrow svg{
        width: 30px;
    }

    .wf-card {
        padding: 14px 14px 12px;
    }

    .wf-card-title {
        font-size: 14px;
    }

    .wf-tool-name {
        font-size: 14px;
    }

    .wf-tool-desc {
        font-size: 12px;
    }

    .wf-time {
        font-size: 14px;
    }

    .wf-summary {
        padding: 25px 15px;
    }

    .wf-summary-value {
        font-size: 25px;
    }

    .wf-summary-label {
        font-size: 16px;
    }
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
    background: linear-gradient(180deg, rgba(232, 238, 255, 0.3) 0%, rgba(232, 238, 255, 0.7) 100%);
    padding: 80px 0 32px;
}

.final-cta-content {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-buttons {
    margin-top: 30px;
}

@media (max-width: 992px) {
    .final-cta-section {
        padding: 70px 0 64px;
    }
}

@media (max-width: 575px) {
    .c-extra-top-margin{
        margin: 40px 0px 0px;
    }
    .final-cta-section {
        padding: 56px 0 1px;
    }
    .hiw-image-wrap{
        border-radius: 10px !important;
    }
    .hiw-step{
        border-radius: 10px !important;
    }

    .final-cta-buttons {
        margin-top: 24px;
    }
}


/* ============================================================
   TRUST SECTION
   ============================================================ */
   .trust-section {
    padding: 80px 0 0;
    background: #ffffff;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    background: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.trust-card:hover{
    box-shadow: 4px 6px 10px 0px #073DC714;

}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-card-title {
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 13px;
    line-height: 1.3;
}

.trust-card-desc {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: #565656;
    line-height: 1.5;
    margin: 0 0 auto;
    padding-bottom: 20px;
}

.trust-badge {
    display: inline-block;
    background: #EFF4FFCC;
    color: #0069FF;
    font-family: 'Open Sans';
    font-size: 16px;
    border: 1px solid #E0EAFFB2;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    margin-top: 8px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .trust-section {
        padding: 40px 0;
    }
    .trust-badge{
        font-size: 14px;
    }
    .trust-card-title{
        font-size: 18px;
    }
    .trust-cards {
        grid-template-columns: 1fr;
    }
    .trust-card {
        padding: 15px;
        border-radius: 10px;
    }
    .trust-card-desc{
        font-size: 14px;
    }
}


/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
   .hiw-section {
    padding: 80px 0;
    background: #ffffff;
}

.hiw-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Steps */
.hiw-steps {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 25px;
}

.hiw-step {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #ffffff;
}

.hiw-step.active {
    border-color: #E0EAFF;
    box-shadow: 0px 0px 10px 0px #073DC71A;
}
.hiw-step.active .hiw-step-num {
    color: #000;
}
.hiw-step.active .hiw-step-title {
    color: #000;
}
.hiw-step.active .hiw-step-header{
    padding: 16px 20px 6px;
}

.hiw-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
}

.hiw-step-num {
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 700;
    color: #565656;
}

.hiw-step-title {
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 700;
    color: #565656;
}

.hiw-step-body {
    display: none;
    padding: 0 22px 0;
}

.hiw-step.active .hiw-step-body {
    display: block;
}

.hiw-step-body p {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: #565656;
    line-height: 1.5;
    margin: 0 0 20px;
}

/* Progress bar — only while step is active; hidden after complete */
.hiw-progress-bar {
    display: none;
    width: 100%;
    height: 6px;
    background: transparent;
    border-radius: 0 0 14px 14px;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    left: 0;
}

.hiw-step.active .hiw-progress-bar {
    display: block;
}

.hiw-progress-fill {
    height: 100%;
    width: 0%;
    background: #0069FF;
    border-radius: 0 6px 6px 0;
    display: block;
}

.hiw-step.active .hiw-progress-fill.running {
    animation: hiwFill var(--hiw-fill-duration, 5s) linear forwards;
}

@keyframes hiwFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Right image */
.hiw-image-wrap {
    position: sticky;
    top: 100px;
    background: #f0f4ff;
    border-radius: 20px;
    overflow: hidden;
    height: 560px;
    padding: 40px;
    display: flex;
    width: 675px;
    align-items: center;
    justify-content: center;
}

.hiw-img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

.hiw-img.fade {
    opacity: 0;
}

/* Responsive */
@media (max-width: 1300px) {
    .hiw-image-wrap {
        height: 500px;
        width: 550px;
    }
    .hiw-img{
        height: 91%;
    }
    
}
@media (max-width: 992px) {
    .hiw-layout {
        grid-template-columns: 1fr;
    }
    .hiw-image-wrap {
        position: static;
        margin: auto;
        height: 300px !important;
        order: 1;
    }
    .hiw-img{
        height: 100%;
    }
    .hiw-layout{
        gap: 50px;
    }
    .hiw-steps{
        order: 2;
    }
}

@media (max-width: 575px) {
    .hiw-section {
        padding: 40px 0;
    }
    .hiw-step-header {
        padding: 16px 18px;
    }
    .hiw-step-body p{
        font-size: 16px;
    }
    .hiw-step-title,
    .hiw-step-num {
        font-size: 18px;
    }
    .hiw-image-wrap {
        height: auto;
        width: 100%;
        padding: 15px;
    }
    .hiw-layout{
        gap: 30px;
    }
}


/* ============================================================
   ROI PROOF SECTION
   ============================================================ */
   .roi-section {
    padding: 0px 0px 60px;
    background: #ffffff;
}

.roi-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.roi-card {
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.roi-card:hover{
    box-shadow: 4px 6px 10px 0px #073DC714;
}

/* Blue card */
.roi-card--blue   { background: #CFDFFF66; border: 1.5px solid #9CB3E6; }
.roi-card--purple { background: #EFE0FF66; border: 1.5px solid #CFAEF4; }
.roi-card--green  { background: #DAFFD366; border: 1.5px solid #00A73D; }
.roi-card--teal   { background: #CBF0FF66; border: 1.5px solid #9AD1E8; }

/* Icons */
.roi-icon {
    margin-bottom: 15px;
}

/* Stats */
.roi-stat {
    font-family: 'Open Sans';
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.roi-stat--blue   { color: #0069FF; }
.roi-stat--purple { color: #641CB5; }
.roi-stat--green  { color: #00A73D; }
.roi-stat--teal   { color: #1D6989; }

/* Label */
.roi-label {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: #565656;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .roi-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .roi-section {
        padding: 40px 0;
    }
    .roi-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .roi-label{
        font-size: 14px;
    }
    .roi-stat {
        font-size: 25px;
    }
    .roi-card {
        padding: 15px;
        border-radius: 10px;
        align-items: center;

    }
}


/* ============================================================
   BEFORE AFTER SECTION
   ============================================================ */
   .ba-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(232, 238, 255, 0.3) 0%, rgba(232, 238, 255, 0.7) 100%);
}

.ba-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: auto;
    max-width: 1145px;
    align-items: start;
}

.ba-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Labels */
.ba-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 600;
}

.ba-label--before { color: #FF2E38; }
.ba-label--after  { color: #00A73D; }

/* Cards */

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

/* Captions */
.ba-caption {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.ba-caption--before { color: #565656; }
.ba-caption--after  { color: #565656; }

/* Responsive */
@media (max-width: 768px) {
    .ba-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 575px) {
    .ba-section {
        padding: 40px 0;
    }
    .ba-caption{
        font-size: 16px;
    }
}


/* ============================================================
   WHY SECTION
   ============================================================ */
   .why-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
}
.our-core-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 29px;
}

.why-card {
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffff;
    transition: box-shadow 0.2s ease;
}

.why-card:hover {
    box-shadow: 4px 6px 10px 0px #073DC714;
    border: 1px solid #E5E5E5;
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.why-card-title {
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.why-card-desc {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: #565656;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .why-card-title {
        font-size: 18px !important;
    }
    .why-cards{
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .why-section {
        padding: 60px 0;
    }
    .why-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-card {
        padding: 15px;

    }
    .why-card-desc {
        font-size: 14px;
    }
}


/* ============================================================
   CALCULATOR SECTION
   ============================================================ */
   .calc-section {
    padding: 0px 0 80px;
    background: #ffffff;
}

.calc-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 30px;
    padding: 30px;
    align-items: start;
}

/* Left sliders */
.calc-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calc-slider-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-label {
    font-family: 'Open Sans';
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.calc-val {
    color: #0069FF;
    font-weight: 700;
}

.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    background: #e8edf5;
    outline: none;
    cursor: pointer;
    position: relative;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #0069FF;
    cursor: pointer;
}

.calc-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid #0069FF;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 105, 255, 0.25);
}

.calc-range-limits {
    display: flex;
    justify-content: space-between;
    font-family: 'Figtree';
    font-size: 20px;
    color: #565656;
    font-weight: 600;
}

.calc-note {
    background: #EFF4FF99;
    border: 1px solid #E0EAFF;
    border-radius: 10px;
    padding: 10px 16px;
    font-family: 'Figtree';
    font-size: 16px;
    color: #565656;
    font-weight: 500;
}

/* Right results */
.calc-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 30px;
    padding: 30px;
    background: #F8FAFF;
}

.calc-result-card {
    border-radius: 20px;
    padding: 20px;
    border: 1px solid transparent;
}

.calc-result-card--blue   { background: #CFDFFF4D; border-color: #9CB3E680; }
.calc-result-card--purple { background: #EFE0FF4D; border-color: #CFAEF480; }
.calc-result-card--green  { background: #DAFFD34D; border-color: #00A73D4D; }
.calc-result-card--teal   { background: #CBF0FF4D; border-color: #9AD1E880; }

.calc-result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.calc-result-label {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.calc-result-value {
    font-family: 'Open Sans';
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    /* margin-bottom: 15px; */
}

.calc-result-value--blue   { color: #0069FF; }
.calc-result-value--purple { color: #7C3AED; }
.calc-result-value--green  { color: #16A34A; }
.calc-result-value--teal   { color: #0369A1; }

.calc-result-sub {
    font-family: 'Figtree';
    font-size: 16px;
    color: #565656;
    margin-top: 15px;
    font-weight: 500;
}

/* CTA */
.calc-cta {
    background: #0069FF;
    border-radius: 20px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.calc-cta-text {
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.calc-cta-btn {
    background: #ffffff;
    border: none;
    outline: none;
    color: #0069FF;
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.calc-cta-btn:hover {
    background: #f0f5ff;
    color: #0069FF;
}

/* Responsive */
@media (max-width: 1200px) {
    .calc-label{
        font-size: 18px;
    }
    .calc-range-limits{
        font-size: 16px;
    }
    .calc-range{
        height: 10px;
    }
    .calc-right{
        padding: 20px;
        gap: 20px;
    }
    .calc-result-card{
        padding: 15px;
    }
    .calc-result-label{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .calc-result-value{
        font-size: 26px;
    }
    .calc-result-sub{
        font-size: 14px;
        margin-top: 10px;
    }
    .calc-cta{
        padding: 16px 15px;
    }
    .calc-cta-text{
        font-size: 16px;
    }
    .calc-cta-btn{
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .calc-wrap{
        border: none;
        grid-template-columns: 1fr;
        padding: 0px;
        gap: 20px;
    }
    .c-calc-wrap {
        display: grid;
        background: #ffffff;
        border: 1px solid #E5E5E5;
        border-radius: 30px;
        padding: 30px;
        align-items: start;
    }
    
}

@media (max-width: 575px) {
    .calc-section {
        padding: 0px 0 40px;
    }
    .calc-right{
        padding: 15px;
        border-radius: 10px;
    }
    .calc-result-card{
        border-radius: 10px;
    }
    .c-calc-wrap {
        padding: 15px;
        border-radius: 10px;
        gap: 24px;
    }
    .calc-result-value {
        font-size: 28px;
    }
    .calc-result-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .calc-cta {
        border-radius: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .calc-cta-btn {
        width: 100%;
        text-align: center;
    }

    .calc-label{
        font-size: 16px;
    }
    .calc-range-limits{
        font-size: 14px;
    }
    .calc-result-label{
        font-size: 14px;
    }
    .calc-result-value{
        font-size: 24px;
    }
    .calc-result-sub{
        font-size: 13px;
    }
    .calc-cta-text{
        font-size: 14px;
    }
    .calc-cta-btn{
        font-size: 14px;
        border-radius: 10px;
    }
}
@media (max-width: 430px) {
    .calc-note {
        font-size: 12px;
    }
}


/* ============================================================
   PRICING SECTION
   ============================================================ */
   .pricing-section {
    padding: 80px 0;
    scroll-margin-top: 96px;
    background: linear-gradient(180deg, rgba(232, 238, 255, 0.3) 0%, rgba(232, 238, 255, 0.7) 100%);
}

/* Toggle */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 10px;
    padding: 10px 15px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 10px 0px #073DC71A;
}

.pricing-toggle-label {
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
    cursor: pointer;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-slider {
    position: absolute;
    inset: 0;
    background: #E9E9EA;
    border-radius: 26px;
    transition: background 0.3s ease;
}

.pricing-toggle-switch input:checked + .pricing-toggle-slider {
    background: #0069FF;
}

.pricing-toggle-slider::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    left: 2px;
    top: 2px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.pricing-toggle-switch input:not(:checked) + .pricing-toggle-slider::before {
    transform: translateX(0px);
}

.pricing-toggle-switch input:checked + .pricing-toggle-slider::before {
    transform: translateX(20px);
}

.pricing-save-badge {
    background: #DAFFD380;
    color: #00A73D;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Cards grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 32px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-card--featured {
    border: 2px solid #0069FF;
    box-shadow: 0 8px 32px rgba(0, 105, 255, 0.12);
}

.pricing-card-top {
    display: flex;
    flex-direction: column;
    /* gap: 6px; */
}

.pricing-plan-name {
    font-family: 'Open Sans';
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px;
}

.pricing-plan-desc {
    font-family: 'Figtree';
    font-size: 18px;
    color: #565656;
    margin: 0 0 15px;
}

.pricing-price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'Open Sans';
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.pricing-price--custom {
    font-size: 44px;
}

.pricing-per {
    font-family: 'Figtree';
    font-size: 18px;
    color: #565656;
    font-weight: 500;
}

.pricing-billed {
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 500;
    color: #565656;
    margin: 0 0 15px;
}

/* Buttons */
.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px;
    border-radius: 10px;
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    margin-bottom: 15px;
}
.pricing-divider {
    border: none;
    border: 1px solid #dddddd;
    margin: 15px 0 0;
}

.pricing-btn--primary {
    background: #0069FF;
    color: #ffffff;
}

.pricing-btn--primary:hover {
    background-color: #1B69D9;
}

.pricing-btn--outline {
    background: transparent;
    color: #0069FF;
    outline: 1px solid #0069FF;
}

.pricing-btn--outline:hover {
    background: #EFF4FF;
    color: #0069FF;
}

.pricing-btn--coming {
    background: #F2F2F2;
    color: #565656;
    cursor: not-allowed;
    width: 100%;
}

.pricing-trial-note {
    font-family: 'Figtree';
    font-size: 16px;
    color: #565656;
    font-weight: 500;
    text-align: left;
    margin: 0;
}

/* Features */
.pricing-features-label {
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 600;
    color: #565656;
    margin: 0 0 20px;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-feature-list li {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-feature-list li::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    min-width: 22px;
    /* border: 1px solid #0069ff; */
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
}

.feat-active {
    color: #000000;
}

.feat-active::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iMTAuNTQxNyIgZmlsbD0iI0VGRjRGRiIgc3Ryb2tlPSIjMDA2OUZGIiBzdHJva2Utd2lkdGg9IjAuOTE2NjY3Ii8+CjxwYXRoIGQ9Ik0xNi45MjczIDcuMTk2MjJMOC44NTIwMSAxNS4yNzE1TDUuMDA3ODEgMTEuNDI3MyIgc3Ryb2tlPSIjMDA2OUZGIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
    /* background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%230069FF' fill-opacity='0.12'/%3E%3Cpath d='M5 9L7.5 11.5L13 6.5' stroke='%230069FF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); */
}

.feat-inactive {
    color: #999999 !important;
}

.feat-inactive::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC41Ij4KPGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iMTAuNTQxNyIgZmlsbD0iI0ZCRkNGRiIgc3Ryb2tlPSIjNTY1NjU2IiBzdHJva2Utd2lkdGg9IjAuOTE2NjY3Ii8+CjxwYXRoIGQ9Ik0xNi45MjczIDcuMTk2MjJMOC44NTIwMSAxNS4yNzE1TDUuMDA3ODEgMTEuNDI3MyIgc3Ryb2tlPSIjNTY1NjU2IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8L3N2Zz4K);
    
}

/* Savings badge */
.pricing-savings-badge {
    display: flex;
    align-items: center;
    justify-content: left;
    background: #DAFFD34D;
    border: 1px solid #00A73D1A;
    border-radius: 6px;
    padding: 10px 20px;
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: #00A73D;
    line-height: 1.4;
    max-height: 72px;
    height: 72px;
}
.pricing-savings-badge span:first-child {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px dashed #00A73D80;
    align-self: stretch;
    display: flex;
    align-items: center;
}
/* Trust row */
.pricing-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Figtree';
    font-size: 18px;
    border: 1px solid #0069FF33;
    border-radius: 30px;
    padding: 4.5px 15px;
    font-weight: 500;
    color: #565656;
}

/* Responsive */

@media (max-width: 1200px) {
    .pricing-plan-desc{
        font-size: 16px;
    }
    .pricing-price {
        font-size: 36px;
    }
    .pricing-per {
        font-size: 16px;
    }
    .pricing-card{
        padding: 15px;
    }
    .pricing-btn{
        font-size: 18px;
    }
    .pricing-trial-note{
        font-size: 14px;
    }
    .pricing-billed {
        font-size: 14px;
    }
    .pricing-feature-list{
        gap: 15px;
    }
    .pricing-feature-list li {
        font-size: 16px;
    }
    .pricing-savings-badge {
        font-size: 14px;
    }
    .pricing-trust-item {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-trust-row {
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .pricing-section {
        padding: 40px 0;
    }
    .pricing-price {
        font-size: 30px;
    }
    .pricing-card{
        border-radius: 10px;
    }
    .pricing-features-label{
        font-size: 12px;
    }
    .pricing-plan-name{
        font-size: 16px;
    }
    .pricing-plan-desc{
        font-size: 14px;
    }
    .pricing-per{
        font-size: 14px;
    }
    .pricing-feature-list li{
        font-size: 14px;
    }
    .pricing-trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

}
@media (max-width: 430px){
    .pricing-toggle-label{
        font-size: 15px;
    }
    .pricing-toggle-wrap{
        gap: 8px;
        padding: 10px 10px;
    }
    .pricing-save-badge{
        font-size: 12px;
        padding: 6px 5px;
    }
    .pricing-toggle-switch{
        width: 50px;
    }
    .pricing-toggle-switch input:checked + .pricing-toggle-slider::before {
        transform: translateX(20px);
    }
}
@media (max-width: 360px){
    .pricing-toggle-label{
        font-size: 14px;
    }
    .pricing-toggle-switch{
        width: 40px;
    }
    .pricing-toggle-switch input:checked + .pricing-toggle-slider::before {
        transform: translateX(10px);
    }
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
   .faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #FBFAFA;
    border: 1px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    background: #EFF4FF80;
    border: 1px solid #E0EAFF;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    line-height: 1.35;
    transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question {
    color: #000000;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.faq-answer p {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: #565656;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
}

@media (max-width: 575px) {
    .faq-section {
        padding: 40px 0;
    }
    .faq-question {
        font-size: 15px;
        padding: 16px;
    }
    .faq-answer {
        padding: 0 16px;
    }
    .faq-answer p {
        font-size: 14px;
    }
}



/* ============================================================
   BLUE BANNER CTA SECTION
   ============================================================ */
 
.blue-cta-inner {
    border-radius: 20px;
    background: linear-gradient(90deg, #0069FF 0%, #004AB4 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
 
.blue-cta-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}
 
.blue-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.blue-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
 
.blue-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
 
.blue-cta-trust-item svg {
    flex-shrink: 0;
}
 
/* Responsive */
@media (max-width: 992px) {
    .blue-cta-inner {
        padding: 50px 30px;
    }
}
 
@media (max-width: 575px) {
 
    .blue-cta-inner {
        padding: 40px 20px;
        border-radius: 14px;
    }
 
    .blue-cta-trust {
        gap: 16px;
        display: grid;
        justify-content: flex-start;
    }
 
    .blue-cta-trust-item {
        font-size: 16px;
    }
}

/* ==========================================================
   HOW-IT-WORKS PAGE – HERO SECTION
   ========================================================== */
/* Inner two-column grid */
.hiw-hero-inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.04fr;
    gap: 60px;
}

/* ---- Left column ---- */
.hiw-hero-left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.hiw-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hiw-diagram-card {
    position: relative;
    width: 675px;
    background: transparent;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 0px #073DC726;
    flex-shrink: 0;
    overflow: hidden;
    padding: 20px;
}

/* Lottie animation container — matches JSON viewport 677×530 */
.hiw-lottie-player {
    width: 100%;
    aspect-ratio: 677 / 530;
    display: block;
    border-radius: 40px;
}

/* ---- Responsive ---- */
@media (max-width: 1300px) {
    .hiw-diagram-card{
        width: 550px;
    }
}
@media (max-width: 1150px) {
    .hiw-diagram-card{
        width: 400px;
    }
}
@media (max-width: 992px) {
    .hiw-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hiw-hero-right {
        justify-content: center;
    }
    .hiw-diagram-card{
        border-radius: 30px;
    }
}

@media (max-width: 900px) {
    .hiw-diagram-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 500px) {
    .hiw-diagram-card {
        width: 100%;
        max-width: 100%;
        padding: 8px;
    }
}

/* ============================================================
   WHY HARD SECTION
   ============================================================ */
   .why-hard-section {
    padding: 80px 0 0;
    background: #ffffff;
}

.why-hard-layout {
    display: grid;
    grid-template-columns: 1fr .98fr;
    gap: 29px;
    align-items: center;
}

.why-hard-diagram {
    border-radius: 20px;
    overflow: hidden;
}

.why-hard-problems-label {
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .why-hard-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .why-hard-left{
        order: 2;
    }
    .why-hard-right{
        order: 1;
    }
    .why-hard-diagram {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .why-hard-section {
        padding: 60px 0 0;
    }
}
/* ============================================================
   ONE TOOL SECTION
   ============================================================ */
   .onetool-section {
    padding: 80px 0;
    margin-bottom: 80px;
    background: linear-gradient(180deg, rgba(232, 238, 255, 0.3) 0%, rgba(232, 238, 255, 0.7) 100%);
}

.step-card {
    border-radius: 10px;
    border: 1px solid #E0EAFF;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(60,100,240,.07);
    transition: box-shadow .2s, transform .18s;
  }
  .step-card:hover { box-shadow: 0 6px 24px rgba(60,100,240,.15); transform: translateY(-2px); }

  .s-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .s-icon svg { width: 50px; height: 50px; }

  .s-label { font-size: 20px; font-weight: 600; color: #000000; line-height: 1.3;font-family: 'Open Sans', sans-serif; }

  /* ─── HeyGrowth badge ─── */
  .hg-badge {
    width: 84px; height: 84px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .hg-badge svg { width: 84px; height: 84px; }

  .hg-label { font-size: 22px; font-weight: 700; color: #000000; text-align: left; line-height: 1.4;font-family: 'Figtree'; }

  /* ═══════════════════════════════════
     DESKTOP ≥ 992px
  ════════════════════════════════════ */
  .dt-wrap { display: none; }
  @media (max-width: 1300px) {
    .dt-steps .step-card{
        min-width: 130px !important;
        max-width: 160px !important;
        padding: 15px !important;
    }
    .dt-arrow{
        padding: 0 6px !important;
    }
    .s-label{
        font-size: 16px;
    }
  }

  @media (min-width: 992px) {
    .mb-wrap { display: none !important; }
    .dt-wrap  { display: block; }

    .dt-steps {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dt-steps .step-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
      min-width: 160px;
      max-width: 160px;
      gap: 10px;
    }
    .dt-arrow { color: #3b6ef5; padding: 0 15px; flex-shrink: 0; }
    .dt-arrow svg { width: 25px; height: 25px; display: block; }
  }

  /* ═══════════════════════════════════
     MOBILE ≤ 991px
  ════════════════════════════════════ */
  .mb-wrap {
    display: flex;
    align-items: flex-start;
    position: relative;
    max-width: 380px;
    margin: 0px 180px;
  }

  .mb-steps-col {
    display: flex;
    flex-direction: column;
    flex: 1;    
  }

  .mb-arrow-v {
    display: flex;
    align-items: center;
    color: #3b6ef5;
    padding-bottom: 8px;
    justify-content: center;
  }

  .mb-right-col {
    width: 96px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .mb-badge-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    writing-mode: lr;
    position: relative;
    z-index: 2;
    left: 130px;
  }
  .mb-badge-inner .hg-badge { width: 50px; height: 50px;}
  .mb-badge-inner .hg-label { font-size: 14px; min-width: 150px; }

  @media (max-width: 768px) {
    .mb-wrap {
        margin: 0px 80px;
      }
      .onetool-section{
      margin-bottom: 40px;
      padding: 40px 0px;  
      }
  }
  @media (max-width: 675px) {
    .mb-wrap {
        margin: 0px 0px;
      }
  }
  @media (max-width: 600px) {
    .mb-wrap {
        margin: 0px 0px;
        max-width: 300px;
      }
  }
  @media (max-width: 525px) {
    .mb-badge-inner .hg-label{
        font-size: 12px;
        min-width: 80px;
    }
    .mb-badge-inner .hg-badge {
        width: 40px;
        height: 40px;
    }
    .mb-badge-inner{
        left: 90px !important;
    }
  }
  @media (max-width: 450px) {
    .s-label {
        font-size: 12px;
    }
    .s-icon{
        width: 30px;
        height: 30px;
    }
    .step-card{
        padding: 10px;
    }
    .mb-wrap{
        max-width: 240px;
    }
  }
  @media (max-width: 370px) {
    .mb-badge-inner {
        left: 60px !important;
    }
}
  @media (max-width: 340px) {
    .step-card {
        padding: 5px;
    }
    #mbSvg{
        left: 8px !important;
    }
    .mb-badge-inner {
        left: 50px !important;
    }
}

/* ========== About page — Story Behind HeyGrowth ========== */

.about-story-figure {
    margin: 0 0 48px;
    text-align: center;
}

.about-story-team-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    vertical-align: middle;
}

.custom-query-prose {
    max-width: 1200px;
    margin: 0 auto 30px;
}

.custom-query-prose p {
    margin: 0 0 1.1em;
}

.custom-query-prose p:last-child {
    margin-bottom: 0;
}

.about-story-link {
    color: #0069ff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-story-link:hover {
    color: #0052cc;
}

.about-story-pullquote {
    margin: 28px 0;
    padding: 12px 15px;
    border-left: 4px solid #0069ff;
    font-size: 18px;
    line-height: 1.7;
    font-family: 'Figtree';
    font-style: italic;
    color: #000;
}

.about-story-quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.about-story-quote-card {
    position: relative;
    overflow: hidden;
    background: #EFF4FF;
    border-radius: 10px;
    padding: 28px 24px 28px 30px;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.about-story-quote-card::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 30px;
    width: 83px;
    height: 60px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODMiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA4MyA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMzLjY4NjQgMEgyLjQzMTY1QzEuMDg4NTcgMCAwIDEuMDk2NjIgMCAyLjQ0OTYzVjMzLjkzNTZDMCAzNS4yODg4IDEuMDg4NTcgMzYuMzg1MiAyLjQzMTY1IDM2LjM4NTJIMTUuNjI3MVY1Ny41NTA0QzE1LjYyNzEgNTguOTAyOSAxNi43MTU2IDYwIDE4LjA1ODcgNjBIMjUuODczQzI2LjM4MzMgNjAgMjYuODgwNyA1OS44MzgyIDI3LjI5NDYgNTkuNTM3NkMyNy43MDg1IDU5LjIzNjkgMjguMDE4IDU4LjgxMjcgMjguMTc5MiA1OC4zMjQ5TDM1Ljk5MjkgMzQuNzEwMkMzNi4wNzU3IDM0LjQ2MDggMzYuMTE4MiAzNC4xOTkyIDM2LjExODIgMzMuOTM1N1YyLjQ0OTYzQzM2LjExODIgMS4wOTY2MiAzNS4wMjk1IDAgMzMuNjg2NCAwWk04MC41Njg1IDBINDkuMzEzOEM0Ny45NzA1IDAgNDYuODgyMSAxLjA5NjYyIDQ2Ljg4MjEgMi40NDk2M1YzMy45MzU2QzQ2Ljg4MjEgMzUuMjg4OCA0Ny45NzA1IDM2LjM4NTIgNDkuMzEzOCAzNi4zODUySDYyLjUwOThWNTcuNTUwNEM2Mi41MDk4IDU4LjkwMjkgNjMuNTk4MiA2MCA2NC45NDE1IDYwSDcyLjc1NDhDNzMuMjY1MiA1OS45OTk5IDczLjc2MjYgNTkuODM4MSA3NC4xNzY2IDU5LjUzNzVDNzQuNTkwNiA1OS4yMzY5IDc0LjkwMDIgNTguODEyNyA3NS4wNjE2IDU4LjMyNDlMODIuODc1MyAzNC43MTAyQzgyLjk1NzUgMzQuNDYwOCA4MyAzNC4xOTkyIDgzIDMzLjkzNTdWMi40NDk2M0M4MyAxLjA5NjYyIDgxLjkxMTQgMCA4MC41Njg0IDBIODAuNTY4NVoiIGZpbGw9IiMwMDY5RkYiIGZpbGwtb3BhY2l0eT0iMC4wNiIvPgo8L3N2Zz4K);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
}

.about-story-quote-text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Figtree';
    line-height: 1.45;
    color: #000000;
    max-width: 85%;
}

.about-story-born-banner {
    background: #0069ff;
    color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.about-story-born-meta {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Figtree';
    text-transform: uppercase;
    color: #cce1ff;
}

.about-story-born-title {
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Figtree';
    color: #ffffff;
}

.about-story-born-desc {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.45;
    color: #cce1ff;
    font-family: 'Figtree';
    font-weight: 300;
}

.about-story-founders {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: #EFF4FF;
    border-radius: 10px;
    padding: 28px;
    gap: 20px;
    margin-bottom: 30px;
}

.about-story-founder-text {
    text-align: center;
}

@media (min-width: 576px) {
    .about-story-founder-text {
        text-align: left;
    }
}

.about-story-founder-names {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    font-family: 'Figtree';
}

.about-story-founder-role {
    margin: 0;
    font-size: 18px;
    color: #565656;
    font-family: 'Figtree';
    font-weight: 500;
}

.about-story-vision-mission {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.about-story-vm-heading {
    margin: 0 0 15px;
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    font-family: 'Figtree';
}
@media (max-width: 525px){
    .about-story-founders{
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .about-story-quotes {
        grid-template-columns: 1fr;
    }

    .about-story-quote-card {
        min-height: auto;
    }

    .about-story-born-banner {
        padding: 32px 20px 36px;
    }
}


.cta-banner {
    background-color: #DBEFFF; /* Light blue background */
    border-radius: 20px;       /* Smooth rounded corners */
    padding: 45px;        /* Spacing inside the box */
    border: none;
}
.cta-title {
    font-family: "Open Sans";
    font-weight: 700;
    font-size: 35px;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-weight: 500;
    font-family: Figtree;
    font-size: 18px;
    color: #565656;
    margin-bottom: 0;
}
@media (max-width: 1240px) {
    .cta-title {
        font-size: 28px;
    }
    .cta-subtitle {
        font-size: 16px;
    }
}
@media (max-width: 1100px) {
    .cta-title {
        font-size: 25px;
    }
    .cta-subtitle {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .cta-title {
        font-size: 25px;
    }
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
}



/* ============================================================
   COMPARE SECTION
   ============================================================ */
   .cmp-section {
    padding: 60px 0;
    background: #ffffff;
}

.cmp-table-wrap {
    position: relative;
    margin: 0 auto;
    padding-top: 120px;
    overflow: visible;
}

/* Crown — floats above the top-left of the HeyGrowth column */
.cmp-crown {
    position: absolute;
    top: -96px;
    left: -85px;
    z-index: 10;
    pointer-events: none;
}

/* Table — column-wise layout */
.cmp-table {
    width: 100%;
    display: flex;
    align-items: stretch;
}

/* Each column */
.cmp-column {
    display: flex;
    flex-direction: column;
}

.cmp-column--feature {
    flex: 1.4;
}

.cmp-column--hey {
    flex: 1.6;
    position: relative;
    overflow: visible;
    margin-bottom: -50px;
    margin-top: -60px;
    background: linear-gradient(165deg, #1B79FF -5.13%, #084CAE 116.17%);
    border-radius: 20px;
    box-shadow: 7px 7px 15px 0 rgba(7, 61, 199, 0.10), 10px 10px 20px 0 rgba(7, 61, 199, 0.10);
}

.cmp-column--other {
    flex: 1.65;
}

/* Cell base */
.cmp-col {
    padding: 16px 45px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

/* Dividers between cells within each column */
.cmp-column--feature .cmp-col + .cmp-col,
.cmp-column--other .cmp-col + .cmp-col {
    border-top: 1px solid #E5E5E559;
}

.cmp-column--hey .cmp-col + .cmp-col {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Feature column */
.cmp-col--feature {
    color: #000;
    font-family: "Open Sans";
    font-size: 22px;
    max-height: 100px;
    min-height: 100px;
    font-style: normal;
    background-color: #FBFBFB;
    font-weight: 600;
}

/* HeyGrowth column — blue */
.cmp-col--hey {
    color: #ffffff;
    font-size: 22px;
    max-height: 100px;
    min-height: 100px;
    font-weight: 600;
    font-family: "Open Sans";
    border-left: none;
    border-right: none;
}

/* Other column */
.cmp-col--other {
    color: #000;
    font-family: "Open Sans";
    font-size: 22px;
    max-height: 100px;
    min-height: 100px;
    font-style: normal;
    font-weight: 600;
    background: #FBFBFB;
}

/* Header cells */
.cmp-col--header-cell {
    padding: 20px 50px 16px;
}

.cmp-col--header-cell.cmp-col--feature {
    font-size: 35px;
    font-weight: 700;
    border-radius: 20px 0 0 0;
}

.cmp-col--header-cell.cmp-col--other {
    border-radius: 0 20px 0 0;
}

.cmp-hey-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: "Open Sans";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
}

.cmp-other-header {
    color: #000;
    font-family: "Open Sans";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Check / Cross icons */
.cmp-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: #00A73D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.cmp-cross {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: #FF2E38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

/* HeyGrowth column — blue card rounded top & bottom */
.cmp-column--hey .cmp-col--hey:first-child {
    border-radius: 20px 20px 0 0;
}

.cmp-column--hey .cmp-col--hey:last-child {
    border-radius: 0 0 20px 20px;
    padding-bottom: 28px;
}

/* Responsive */
@media (max-width: 1400px) {
    .cmp-col--feature {
        font-size: 20px;
    }
    .cmp-col{
        padding: 16px 20px;
    }
    
    /* HeyGrowth column — blue */
    .cmp-col--hey {
        font-size: 20px;
    }
    .col-extra-padding{
        padding: 90px 20px 25px !important;
    }
    
    /* Other column */
    .cmp-col--other {
        font-size: 20px;
    }
}
@media (max-width: 1170px){
    .cmp-col--other {
        font-size: 18px;
    }
    .cmp-col--hey {
        font-size: 18px;
    }
    .cmp-col--feature {
        font-size: 18px;
    }
}
@media (max-width: 992px){
    .cmp-col--other {
        font-size: 16px;
    }
    .cmp-col--hey {
        font-size: 16px;

    }
    .cmp-col--feature {
        font-size: 16px;
    }
    .cmp-col--header-cell.cmp-col--feature{
        font-size: 25px;
    }
    .cmp-hey-header img{
        max-width: 230px;
    }
    .cmp-other-header img{
        max-width: 230px;
    }
}
@media (max-width: 768px) {
    /* .cmp-crown{
        display: none;
    } */
    .cmp-table-wrap {
        padding-top: 50px;
    }
    .cmp-other-header img {
        max-width: 120px;
    }
    .cmp-hey-header img {
        max-width: 150px;
    }


    .cmp-col {
        padding: 12px 10px;
        font-size: 13px;
        align-items: flex-start;
        gap: 10px;
    }

    .cmp-col--feature {
        font-size: 13px;
        max-height: 70px;
        min-height: 70px;
        display: flex;
        align-items: center;
    }

    .cmp-col--hey {
        font-size: 13px;
        max-height: 70px;
        min-height: 70px;
        display: flex;
        align-items: center;
    }

    .cmp-col--other {
        font-size: 13px;
        max-height: 70px;
        min-height: 70px;
        display: flex;
        align-items: center;
    }

    .cmp-col--header-cell {
        padding: 14px 10px 12px;
    }

    .cmp-hey-header {
        font-size: 15px;
        gap: 6px;
    }

    .cmp-column--hey {
        margin-top: -30px;
        margin-bottom: -30px;
    }

    .cmp-check,
    .cmp-cross {
        width: 18px;
        height: 18px;
        min-width: 18px;
        font-size: 10px;
    }
    .cmp-check svg{
        height: 9px;
        width: 9px;
    }
    .cmp-cross svg{
        height: 9px;
        width: 9px;
    }

    .cmp-column--hey .cmp-col--hey:first-child {
        border-radius: 12px 12px 0 0;
    }

    .cmp-column--hey .cmp-col--hey:last-child {
        border-radius: 0 0 12px 12px;
        padding-bottom: 16px;
    }

    .cmp-col--header-cell.cmp-col--feature {
        border-radius: 12px 0 0 0;
        display: flex;
        align-items: center;
    }
    .col-extra-padding {
        padding: 60px 20px 25px !important;
        min-height: 100px !important;
    }

    .cmp-col--header-cell.cmp-col--other {
        border-radius: 0 12px 0 0;
        display: flex;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .cmp-col--header-cell.cmp-col--feature {
        font-size: 18px;
    }
    .cmp-crown {
        top: -69px;
        left: -60px;
    }
    .cmp-crown img{
        max-width: 160px;
    }

    .cmp-other-header img {
        max-width: 100px;
    }
    .cmp-hey-header img {
        max-width: 120px;
    }
    .cmp-col--hey{
        max-height: 90px;
        min-height: 90px;
    }
    .cmp-col--feature{
        max-height: 90px;
        min-height: 90px;
    }
    .cmp-col--other{
        max-height: 90px;
        min-height: 90px;
    }
    .col-extra-padding {
        padding: 60px 16px 25px !important;
        min-height: 120px !important;
    }
    .cmp-check{
        display: none;
    }
    .cmp-cross{
        display: none;
    }
}

@media (max-width: 400px) {
    .cmp-col {
        padding: 10px 8px;
        font-size: 12px;
    }
    .cmp-crown {
        top: -60px;
        left: -50px;
    }
    .cmp-crown img{
        max-width: 130px;
    }

    .cmp-col--feature {
        font-size: 12px;
    }

    .cmp-hey-header {
        font-size: 13px;
    }

    .cmp-other-header {
        font-size: 12px;
    }
    .cmp-hey-header img {
        max-width: 90px;
    }
    .cmp-other-header img {
        max-width: 80px;
    }
}

@media (max-width: 575px) {
    .cmp-section {
        padding: 40px 0;
    }
}
.pp-meta-bar {
    margin-bottom: 25px;
}
.pp-meta-bar p { margin: 0; }
.pp-meta-bar .pp-effective { 
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: #565656; 
    margin-bottom: 25px !important;
}
.pp-effective-span {
    color: #0069FF;
}
.pp-card-title {
    text-align: center;
    color: #000000;
    font-family: "Open Sans";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    margin: 0 0 25px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
.pp-card-text{
    margin-bottom: 25px;
    margin-top: 25px;
}
.border-liner{
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
.pp-summary-intro {
    font-size: 28px;
    color: #000000;
    margin: 0 0 0px !important;
    font-family: "Figtree";
    font-weight: 600;
}
.pp-category { padding: 20px 0 0;}
.pp-category:last-of-type { border-bottom: none; padding-bottom: 0; }
.pp-cat-name {
    font-size: 22px;
    color: #000000;
    margin: 0 0 20px !important;
    font-family: "Figtree";
    font-weight: 600;
}
.pp-items { display: flex; flex-direction: column; gap: 20px; }
.pp-item { 
    font-size: 18px; 
    color: #565656; 
    line-height: 1.6; 
    padding-left: 30px; 
    position: relative; 
    font-family: "Figtree";
    font-weight: 500;
}
.pp-item::before { content: "•"; position: absolute; left: 10px; color: #565656; font-weight: 900; }
.pp-contact-cta { margin-top: 50px; margin-bottom: 50px; display: flex; justify-content: center; }

.custom-query-prose p{
    margin: 0px !important;
}
@media (max-width: 575px) {
.pp-card-title{
    font-size: 25px;
}
.pp-meta-bar .pp-effective{
    font-size: 16px !important;
    margin-bottom: 15px !important;
}
.pp-summary-intro{
    font-size: 22px !important;
}
.pp-cat-name{
    font-size: 20px !important;
    margin-bottom: 15px !important;
}
.pp-item{
    font-size: 16px !important;
}
}
.badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(0, 105, 255, 0.20);
    border-radius: 30px;
    padding: 5px 12px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: #565656;
    white-space: nowrap;
}

.badge-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #0069FF;
    border-radius: 50%;
}
/* ========== MORE FREE TOOLS SECTION ========== */

.mft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin-top: 40px;
}

.mft-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #E8EDF5;
    border-radius: 14px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.mft-card:hover {
    box-shadow: 0 4px 16px rgba(0, 105, 255, 0.08);
    border-color: #D0DFFF;
    text-decoration: none;
    color: inherit;
}

.mft-arrow {
    flex-shrink: 0;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 0;
}

.mft-arrow rect {
    transition: fill 0.2s ease;
}

.mft-arrow path {
    transition: stroke 0.2s ease;
}

.mft-card:hover .mft-arrow rect {
    fill: #0069FF;
}

.mft-card:hover .mft-arrow path {
    stroke: #ffffff;
}

.mft-icon {
    flex-shrink: 0;
    line-height: 0;
}

.mft-icon svg {
    display: block;
    width: 50px;
    height: 50px;
}

.mft-content {
    flex: 1;
    min-width: 0;
}

.mft-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px;
    line-height: 1.35;
    font-family: "Open Sans";
}

.mft-desc {
    font-size: 18px;
    color: #565656;
    margin: 0;
    line-height: 1.5;
    font-family: "Figtree";
    font-weight: 500;
}

.mft-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EFF4FF;
    border: 1px solid rgba(224, 234, 255, 0.5);
    border-radius: 10px;
    line-height: 0;
}

@media (max-width: 767px) {
    .mft-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mft-card {
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-areas:
            "icon title"
            "desc desc"
            "arrow arrow";
        align-items: center;
        row-gap: 12px;
        column-gap: 14px;
        padding: 20px;
    }

    .mft-icon {
        grid-area: icon;
        align-self: start;
    }

    .mft-icon svg {
        width: 44px;
        height: 44px;
    }

    .mft-content {
        display: contents; /* title & desc ne direct grid children banave */
    }

    .mft-title {
        grid-area: title;
        font-size: 17px;
        align-self: center;
        margin: 0;
    }

    .mft-desc {
        grid-area: desc;
        font-size: 15px;
    }

    .mft-arrow {
        grid-area: arrow;
        justify-self: start;
        width: 44px;
        height: 44px;
    }
}

/* =========================================
   IDEA GENERATOR TOOL SECTION
   ========================================= */

.tools-generator-section {
    padding: 80px 0 80px;
    background: #fff;
}

.tools-inner {
    max-width: 1145px;
    margin: 0 auto;
}

.tool-chat-card {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(7, 61, 199, 0.06), 0 10px 20px 0 rgba(7, 61, 199, 0.15);
    border: 1px solid #dfe7f8;
    border-radius: 20px;
    overflow: hidden;
}

.chat-header {
    background: #0069FF;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-name {
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.chat-header-status {
    color: rgba(255, 255, 255, 0.80);
    font-family: Figtree;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ADE80;
    flex-shrink: 0;
}

.chat-progress {
    padding: 16px 28px 8px;
}

.progress-label {
    font-family: Figtree;
    font-size: 16px;
    color: #565656;
    margin-bottom: 10px;
    font-weight: 500;
}

.progress-track {
    height: 4px;
    background: #f2f2f2;
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #0069FF;
    border-radius: 100px;
    transition: width 0.4s ease;
    width: 0;
}

.chat-messages {
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 280px;
    max-width: 100%;
    max-height: 480px;
    overflow-y: auto;
}

.msg-ai {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}


.msg-ai-bubble {
    background: rgba(242, 242, 242, 0.90);
    border: 1px solid rgba(224, 234, 255, 0.50);
    border-radius: 4px 16px 16px 16px;
    padding: 15px;
    max-width: 62%;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}

.msg-ai-bubble strong {
    color: #0069ff;
    font-weight: 600;
}

.msg-user {
    display: flex;
    justify-content: flex-end;
}

.msg-user-bubble {
    background: #EFF4FF;
    color: #000;
    border-radius: 10px 0px 10px 10px;
    padding: 12px 16px;
    max-width: 75%;
    font-size: 14px;
    font-family: "Open Sans";
    line-height: 1.6;
    font-weight: 500;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px 10px;
    padding: 4px 28px 16px 45px;
    max-width: 80%;
}

.chip {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    color: #565656;
    background: #FBFBFB;
    padding: 8px 14px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
    user-select: none;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    line-height: 1.3;
}

.chip:hover {
    background: #EFF4FF;
    transform: translateY(-1px);
    color: #000000;
}

.chip.selected {
    background: #0069ff;
    color: #fff;
    border-color: #0069ff;
}

.chip.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.typing-indicator {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    background: #f7f8fb;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 4px 16px 16px 16px;
    padding: 14px 18px;
}

.typing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #94a3b8;
}

@keyframes tool-bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
}

.typing-dot:nth-child(1) { animation: tool-bounce 0.9s infinite 0s; }
.typing-dot:nth-child(2) { animation: tool-bounce 0.9s infinite 0.15s; }
.typing-dot:nth-child(3) { animation: tool-bounce 0.9s infinite 0.3s; }

.ideas-output {
    padding: 0 28px 24px;
    display: none;
    flex-direction: column;
    gap: 20px;
}

.ideas-output.visible {
    display: flex;
}

.ideas-output-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.ideas-output-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    font-family: "Open Sans";
}

.ideas-output-count {
    font-size: 14px;
    font-weight: 600;
    font-family: "Figtree";
    color: #565656;
    background: #EFF4FF;
    border: 1px solid #E5E5E5;
    padding: 3px 12px;
    border-radius: 100px;
}

.idea-card {
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.11);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
    cursor: pointer;
}

.idea-card:hover {
    background: #fff;
    border-color: rgba(0, 105, 255, 0.18);
    transform: translateX(3px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.idea-num {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #EFF4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: "Open Sans";
    font-weight: 600;
    color: #0069FF;
    flex-shrink: 0;
    margin-top: 3px;
}

.idea-content {
    flex: 1;
}

.idea-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    font-family: "Open Sans";
    margin-bottom: 5px;
    line-height: 1.4;
}

.idea-hook {
    font-size: 18px;
    color: #565656;
    font-family: "Figtree";
    font-weight: 500;
    line-height: 1.5;
}

.idea-use-btn {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Open Sans';
    color: #0069FF;
    background: rgba(0, 105, 255, 0.07);
    border: 1px solid #E0EAFF;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
    transition: all 0.15s;
}
.ideas-container{
    display: grid;
    gap: 20px;
}

.idea-card:hover .idea-use-btn {
    background: #EFF4FF;
    border-color: #E5E5E5;
}

.oh-wait {
    background: #EFF4FF;
    border: 1px solid #E0EAFF;
    border-radius: 10px;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    text-align: left;
}

.oh-wait.visible {
    display: flex;
}

.oh-wait-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.oh-wait-header svg {
    flex-shrink: 0;
}

.oh-wait-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.oh-wait-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    font-family: 'Open Sans';
}

.oh-wait-flow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0;
}

.oh-wait-step {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: #fff;
    padding: 7px 10px;
    border-radius: 5px;
    font-family: "Figtree";
    white-space: nowrap;
}

.oh-wait-cta {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: 'Open Sans';
    width: 100%;
    text-align: left;
}

.oh-wait-cta span {
    color: #0069ff;
    cursor: pointer;
    font-family: 'Open Sans';
}

.bridge-cta {
    background: linear-gradient(275deg, #0058d4, #0069ff);
    border-radius: 10px;
    padding: 30px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.bridge-cta.visible {
    display: flex;
}

.bridge-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Open Sans';
}

.bridge-cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.90);
    font-family: "Figtree";
    font-weight: 500;
}

.bridge-cta-btn {
    background: #fff;
    color: #0069ff;
    font-size: 20px;
    font-family: 'Open Sans';
    font-weight: 700;
    padding: 13px 33px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.15s;
}

.bridge-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.restart-btn {
    display: none;
    width: 100%;
    padding: 14px;
    background: rgba(251, 251, 251, 0.60);
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    font-size: 18px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #565656;
    cursor: pointer;
    transition: all 0.15s;
}

.restart-btn.visible {
    display: block;
}

.restart-btn:hover {
    background: #eef1f7;
    color: #0b0d17;
}

/* Modal */
.tool-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.tool-modal-overlay.visible {
    display: flex;
    overscroll-behavior: none;
}

.tool-modal-card {
    background: #fff;
    border-radius: 30px;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    animation: tool-modal-in 0.25s ease;
}

@keyframes tool-modal-in {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: none; }
}

.tool-modal-header {
    background: #0069FF;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
}

.tool-modal-header > div {
    flex: 1;
    min-width: 0;
}

.tool-modal-header-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.3;
    font-family: 'Open Sans', sans-serif;
}

.tool-modal-header-sub {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.70);
    margin-top: 10px;
    font-family: "Figtree";
}

.tool-modal-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: rgba(255, 255, 255, 0.70);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
}
.tool-modal-close svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tool-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.tool-modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.tool-modal-idea-label {
    display: none;
}

.tool-modal-idea-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.01em;
    line-height: 1.4;
    font-family: 'Open Sans', sans-serif;
}

.tool-modal-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-modal-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FBFCFF;
    border: 1px solid #E0EAFF;
    border-radius: 10px;
    padding: 14px 16px;
}

.tool-modal-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #EFF4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.tool-modal-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    font-family: 'Open Sans', sans-serif;
}

.tool-modal-step > div:not(.tool-modal-step-icon) {
    flex: 1;
    min-width: 0;
}

.tool-modal-step-desc {
    font-size: 16px;
    color: #565656;
    margin-top: 2px;
    font-family: "Figtree";
    font-weight: 500;
}

.tool-modal-step-badge {
    font-size: 16px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent;
    color: #0069FF;
    border: 1px solid #B3D4FF;
    font-family: 'Open Sans', sans-serif;
}

.tool-modal-footer {
    padding: 0 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.tool-modal-cta-primary {
    width: 100%;
    padding: 15.5px;
    background: #0069FF;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s;
}

.tool-modal-cta-primary:hover {
    background: #0058d4;
}

.tool-modal-cta-secondary {
    width: 100%;
    padding: 13px;
    background: #FDFDFD;
    color: #565656;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
}

.tool-modal-cta-secondary:hover {
    border-color: #0069FF;
    color: #0069FF;
}

.tool-modal-trust {
    font-size: 16px;
    color: #565656;
    text-align: center;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 575px) {
    .tool-modal-overlay {
        padding: 12px;
    }

    .tool-modal-card {
        max-height: calc(100dvh - 24px);
    }

    .tool-modal-header {
        padding: 18px 16px;
        gap: 12px;
    }

    .tool-modal-header-title {
        font-size: 18px;
    }

    .tool-modal-header-sub {
        font-size: 13px;
        margin-top: 4px;
    }

    .tool-modal-close {
        width: 30px;
        height: 30px;
    }

    .tool-modal-body {
        padding: 16px;
        gap: 14px;
    }

    .tool-modal-idea-title {
        font-size: 16px;
    }

    .tool-modal-steps {
        gap: 10px;
    }

    .tool-modal-step {
        padding: 12px;
        gap: 10px;
        align-items: flex-start;
    }

    .tool-modal-step-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .tool-modal-step-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    .tool-modal-footer {
        padding: 0 16px 16px;
        gap: 10px;
    }

    .tool-modal-cta-primary,
    .tool-modal-cta-secondary {
        padding: 14px;
        font-size: 15px;
    }

    .tool-modal-trust {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .msg-ai-bubble{
        max-width: 100%;
    }
    .suggestion-chips{
        max-width: 100%;
    }  
    .idea-num{
        font-size: 18px;
        width: 40px;
        height: 40px;
    }
    .idea-title{
        font-size: 16px;
        padding: 10px 0px 8px;
    }
    .idea-hook{
        font-size: 14px;
        padding-bottom: 16px;
    }
    .idea-card{
        display: block;
        padding: 26px 18px;
    } 
    .idea-use-btn{
        display: unset;
        font-size: 16px;
        padding: 7px 15px;
    }
    .idea-use-btn svg{
        width: 18px;
    }
    .oh-wait-title {
        font-size: 16px;
    }
    .oh-wait-flow span svg{
        display: none;
    }
    .oh-wait-step{
        font-size: 14px;
    }
    .oh-wait-cta{
        font-size: 14px;
    }
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

@media (max-width: 600px) {
    .tools-generator-section {
        padding-bottom: 40px;
    }

    .chat-messages {
        padding: 16px 18px;
    }
    .chat-progress,
    .ideas-output {
        padding-left: 18px;
        padding-right: 18px;
    }
    .chat-header {
        padding: 16px 18px;
    }
    .suggestion-chips {
        /* padding: 4px 18px 16px 0; */
        gap: 10px 8px;
    }

}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
   .contact-section {
    padding: 80px 0px 0px;
    background: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.17fr;
    gap: 50px;
    align-items: end;
}
.contact-inner{
    max-width: 1055px;
    margin: 0 auto;
}
.contact-left{
    padding: 0px 0px 10px;
}

/* Left */
.contact-left-title {
    font-family: 'Open Sans';
    font-size: 35px;
    font-weight: 700;
    word-spacing: -4px;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-left-desc {
    font-family: 'Figtree';
    font-size: 18px;
    color: #565656;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.contact-reasons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 24px;
}

.contact-reason {
    display: flex;
    align-items: center;
    border: 1px solid #E0EAFF;
    gap: 15px;
    background: #EFF4FF;
    border-radius: 10px;
    padding: 15px;
}

.contact-reason-title {
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 5px;
    line-height: 1.3;
}

.contact-reason-desc {
    font-family: 'Figtree';
    font-size: 16px;
    color: #565656;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Direct contact */
.contact-direct {
    background: #ffffff;
    border: 1px solid #E0EAFF;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px 0 rgba(7, 61, 199, 0.15);
    gap: 20px;
}

.contact-direct-title {
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}
.contact-direct-item-text{
    font-family: 'Figtree';
    font-size: 18px;
    color: #000000;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}
.contact-direct-item-text:hover{
    color: #0069FF;
}
.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f1b2d;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-direct-item:hover {
    color: #0069FF;
    text-decoration: none;
}

/* Right: Form */
.contact-right {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(7, 61, 199, 0.15);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form-title {
    font-family: 'Open Sans';
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.contact-field {
    display: flex;
    flex-direction: column;
    
}

.contact-label {
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.contact-input {
    font-family: 'Figtree';
    font-size: 16px;
    color: #000000;
    margin-top: 10px;
    background: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
}

.contact-input:focus {
    border-color: #0069FF;
}

.contact-input::placeholder {
    color: #9ca3af;
}

.contact-select-wrap {
    position: relative;
}

.contact-select {
    cursor: pointer;
    padding-right: 40px;
}

.contact-select-arrow {
    position: absolute;
    right: 14px;
    margin-top: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-textarea {
    min-height: 170px;
    border-radius: 10px;
    resize: vertical;
}

.contact-submit {
    background: #0069FF;
    color: #ffffff;
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 700;
    padding: 13px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s ease;
    margin-top: 4px;
}

.contact-submit:hover {
    background: #1B69D9;
}

.contact-respond-note {
    font-family: 'Figtree';
    font-size: 16px;
    color: #565656;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .contact-left {
        order: 2;
    }

    .contact-right {
        order: 1;
    }
    .contact-right {
        position: static;
    }
    .contact-left-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 40px 0;
    }
    .contact-form-card {
        padding: 24px 20px;
    }
    .contact-form-title {
        font-size: 24px;
    }
}

/* ========== BOOK DEMO MODAL ========== */
.demo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.demo-modal-overlay.visible {
    display: flex;
    overscroll-behavior: none;
    overflow: visible;
}

.demo-modal-close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10101;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    cursor: pointer;
    padding: 6px 12px;
    display: flex;
    font-size: 26px;
    line-height: 1;
    transition: background 0.15s;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.demo-modal-card {
    background: #fff;
    border-radius: 40px;
    width: 660px;
    max-width: calc(100% - 48px);
    height: auto;
    max-height: calc(100dvh - 48px);
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    animation: demo-modal-in 0.25s ease;
}

@keyframes demo-modal-in {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: none; }
}

@keyframes demo-time-row-slide-rtl {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.demo-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 50px 50px 0;
    flex-shrink: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.demo-modal-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

.demo-modal-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    overflow: visible;
    z-index: 3;
}

.demo-modal-avatar-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 300px;
    padding: 14px 16px;
    background: #2B2B2B;
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}

.demo-modal-avatar-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #2B2B2B;
}

.demo-modal-avatar-wrap:has(.demo-modal-avatar-video:hover) .demo-modal-avatar-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .demo-modal-avatar-tooltip {
        display: none !important;
    }
}

.demo-modal-avatar-video {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    display: none;
    background: #000;
}

.demo-modal-avatar-wrap.is-playing-video .demo-modal-avatar-video {
    display: block;
}

.demo-modal-avatar-wrap.is-playing-video .demo-modal-video-btn {
    z-index: 2;
}

.demo-modal-video-btn {
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: default;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 2;
}

.demo-modal-video-btn svg {
    width: 34px;
    height: 34px;
    display: block;
}

.demo-modal-form {
    padding: 30px 50px 50px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow: visible;
    flex: 0 0 auto;
}

@media (max-height: 700px) {
    .demo-modal-card {
        max-height: calc(100dvh - 48px);
        height: auto;
        min-height: 0;
    }

    .demo-modal-form {
        overflow-y: auto;
        flex: 0 1 auto;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
    }
}

@media (min-width: 993px) and (max-height: 760px) {
    .demo-modal-overlay.visible:has(#demoScheduleStep:not([hidden])) {
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 72px 24px 24px;
    }

    .demo-schedule-card,
    .demo-schedule-card:has(.demo-schedule-picker.has-date-selected) {
        height: min(700px, calc(100dvh - 96px));
        max-height: calc(100dvh - 96px);
    }

    .demo-schedule-left {
        padding: 28px;
    }

    .demo-schedule-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .demo-schedule-footer-links {
        padding-top: 16px;
    }

    .demo-schedule-right {
        padding: 28px;
        min-height: 0;
        overflow: hidden;
    }

    .demo-schedule-right-title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .demo-schedule-picker .demo-schedule-cal-grid {
        min-height: 0;
    }

    .demo-schedule-picker .demo-schedule-cal-weekdays {
        gap: 10px;
        margin-bottom: 10px;
    }

    .demo-schedule-picker .demo-schedule-cal-nav {
        margin-bottom: 14px;
    }
}

.demo-modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.demo-modal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-modal-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #565656;
    line-height: 1.3;
}

.demo-modal-req {
    color: #565656;
}

.demo-modal-input {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: #000;
    background: #fff;
    border: 2px solid #E5E5E5;
    border-radius: 5px;
    padding: 14px 15px;
    width: 100%;
    font-weight: 400;
    outline: none;
    transition: border-color 0.2s ease;
}

.demo-modal-input:focus {
    border-color: #0069FF;
}

.demo-modal-input.demo-modal-input-error {
    border-color: #ef4444;
}

.demo-modal-input::placeholder {
    color: rgba(86, 86, 86, 0.60);
}

.demo-modal-emp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 7px;
}

.demo-modal-emp-chip {
    font-family: "Figtree";
    font-size: 16px;
    font-weight: 600;
    color: #565656;
    background: #FBFBFB;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    width: 98px;
    height: 60px;
    padding: 0;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.demo-modal-emp-chip:hover {
    border-color: #E0EAFF;
    color: #0069FF;
}

.demo-modal-emp-chip.selected {
    background: #EFF4FF;
    border-color: #E0EAFF;
    color: #0069FF;
}

.demo-modal-emp-chips.demo-modal-emp-error .demo-modal-emp-chip {
    border-color: #ef4444;
}

.demo-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 14px;
    background: #0069FF;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

.demo-modal-submit:hover {
    background: #0058d4;
}
@media (max-width: 992px) {
    .demo-modal-card {
        min-height: 0;
        height: auto;
    }

    .demo-modal-header {
        padding: 28px 24px 0;
    }

    .demo-modal-form {
        padding: 24px 24px 28px;
    }
}

@media (max-width: 768px) {
    .demo-modal-emp-chip{
        width: 85px;
        height: 50px;
    }
    .demo-modal-card{
        border-radius: 10px;
    }
}
@media (max-width: 575px) {
    .demo-modal-overlay {
        padding: 12px;
        padding-top: 64px;
    }

    .demo-modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        padding: 4px 11px;
        font-size: 24px;
    }

    .demo-modal-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: calc(100dvh - 76px);
    }

    .demo-modal-header {
        padding: 20px 16px 0;
        gap: 12px;
    }

    .demo-modal-title {
        font-size: 20px;
    }

    .demo-modal-avatar-wrap {
        width: 64px;
        height: 64px;
    }

    .demo-modal-avatar-video {
        width: 64px;
        height: 64px;
    }

    .demo-modal-video-btn {
        width: 28px;
        height: 28px;
    }

    .demo-modal-video-btn svg {
        width: 28px;
        height: 28px;
    }

    .demo-modal-form {
        padding: 16px;
        gap: 16px;
    }

    .demo-modal-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .demo-modal-label {
        font-size: 15px;
    }

    .demo-modal-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .demo-modal-emp-chip {
        font-size: 13px;
        padding: 8px 12px;
    }

    .demo-modal-submit {
        font-size: 16px;
        padding: 13px;
    }
}

/* Demo schedule step */
.demo-schedule-card {
    background: #fff;
    border-radius: 40px;
    width: 895px;
    height: min(700px, calc(100dvh - 48px));
    min-height: 0;
    max-width: calc(100% - 48px);
    max-height: calc(100dvh - 48px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    animation: demo-modal-in 0.25s ease;
}

.demo-schedule-card:has(.demo-schedule-picker.has-date-selected) {
    width: 1185px;
    overflow: hidden;
}

.demo-schedule-card.demo-schedule-timezone-open {
    overflow: visible;
}

.demo-schedule-layout {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.demo-schedule-card:has(.demo-schedule-picker.has-date-selected) .demo-schedule-layout {
    grid-template-columns: calc(895px * 1.08 / 2.08) minmax(0, 1fr);
}

@media (min-width: 993px) and (max-width: 1090px) {
    .demo-schedule-picker.has-date-selected {
        gap: 10px !important;
    }
}
@media (min-width: 993px) and (max-width: 1250px) {
    .demo-schedule-card:has(.demo-schedule-picker.has-date-selected) .demo-schedule-layout {
        grid-template-columns: clamp(280px, calc(280px + (100vw - 993px) * 0.72), calc(895px * 1.08 / 2.08)) minmax(0, 1fr);
    }

    .demo-schedule-picker {
        --demo-times-width: clamp(200px, calc(200px + (100vw - 993px) * 0.195), 250px);
    }
}

.demo-schedule-left {
    padding: 40px;
    border-right: 1px solid #e8edf5;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.demo-schedule-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0 0 40px;
    line-height: 1.35;
}

.demo-schedule-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-schedule-meta-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    color: #565656;
    font-weight: 500;
    line-height: 1.4;
}

.demo-schedule-meta-item svg {
    flex-shrink: 0;
}

.demo-schedule-footer-links {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    gap: 30px;
}

.demo-schedule-footer-links a {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    color: #0069FF;
    font-weight: 600;
    text-decoration: none;
}

.demo-schedule-footer-links a:hover {
    text-decoration: underline;
}

.demo-schedule-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    min-width: 0;
}

.demo-schedule-right-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 30px;
}

.demo-schedule-picker {
    --demo-cal-width: calc((895px / 2.08) - 80px);
    --demo-times-width: 250px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    overflow: visible;
    width: 100%;
    min-width: 0;
}

.demo-schedule-picker.has-date-selected {
    align-items: stretch;
    width: 100%;
    min-height: 0;
}

.demo-schedule-calendar-col {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    overflow: visible;
}

.demo-schedule-picker .demo-schedule-calendar {
    width: 100%;
}

.demo-schedule-picker .demo-schedule-cal-weekdays {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    justify-content: stretch;
    justify-items: center;
    width: 100%;
    gap: 15px;
    margin-bottom: 15px;
}

.demo-schedule-picker .demo-schedule-cal-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-template-rows: repeat(6, auto);
    width: 100%;
    min-height: 315px;
    gap: 0px;
    justify-items: center;
    align-items: center;
    aspect-ratio: unset;
}

.demo-schedule-picker .demo-schedule-cal-day {
    width: min(40px, 100%);
    height: auto;
    aspect-ratio: 1;
    max-width: 40px;
    max-height: 40px;
    justify-self: center;
    align-self: center;
}

.demo-schedule-picker .demo-schedule-timezone {
    width: 100%;
}

@media (max-width: 1250px) {
    .demo-schedule-picker {
        --demo-times-width: 200px;
    }
}
@media (min-width: 993px) {
    .demo-schedule-right {
        height: 100%;
        box-sizing: border-box;
    }

    .demo-schedule-card:has(.demo-schedule-picker.has-date-selected) .demo-schedule-right {
        padding: 40px 0 40px 40px;
    }

    .demo-schedule-card:has(.demo-schedule-picker.has-date-selected) .demo-schedule-right-title {
        padding-right: 26px;
    }

    .demo-schedule-right-title {
        flex-shrink: 0;
    }

    .demo-schedule-picker.has-date-selected {
        display: grid;
        grid-template-columns: minmax(0, var(--demo-cal-width)) minmax(0, 1fr);
        grid-template-rows: 1fr;
        gap: 40px;
        align-items: stretch;
        align-content: stretch;
        flex: 1 1 0;
        min-height: 0;
        height: 100%;
        overflow: hidden;
    }

    .demo-schedule-picker.has-date-selected .demo-schedule-calendar-col {
        width: auto;
        min-width: 0;
        max-width: var(--demo-cal-width);
        flex: none;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .demo-schedule-picker.has-date-selected .demo-schedule-timezone {
        margin-top: auto;
    }

    .demo-schedule-picker.has-date-selected .demo-schedule-cal-grid {
        min-height: 0;
        aspect-ratio: unset;
        gap: 15px;
        justify-items: center;
        align-items: center;
    }

    .demo-schedule-picker.has-date-selected .demo-schedule-times {
        width: 100%;
        max-width: none;
        min-width: 0;
        flex: none;
        align-self: stretch;
        height: 100%;
        padding-top: 44px;
        padding-right: 0;
        padding-bottom: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: hidden;
    }

    .demo-schedule-picker.has-date-selected .demo-schedule-times-date {
        flex: 0 0 auto;
        margin-bottom: 14px;
        padding-right: 0;
    }

    .demo-schedule-picker.has-date-selected .demo-schedule-times-track {
        flex: 1 1 0;
        min-height: 0;
        max-height: none;
        height: auto;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }

    .demo-schedule-picker.has-date-selected .demo-schedule-times-scroll {
        max-height: none;
        height: 100%;
    }

    .demo-schedule-picker.has-date-selected .demo-schedule-times-list {
        width: var(--demo-times-width);
        max-width: var(--demo-times-width);
        max-height: none;
        height: auto;
        overflow: visible;
        padding-right: 0;
        margin-right: 0;
    }
}

.demo-schedule-times {
    flex: 0 0 var(--demo-times-width);
    width: var(--demo-times-width);
    max-width: var(--demo-times-width);
    padding-top: 44px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    box-sizing: border-box;
}

.demo-schedule-times-date {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 14px;
}

.demo-schedule-times-track {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
}

.demo-schedule-times-scroll {
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 380px;
    padding-right: 0;
    margin-right: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.demo-schedule-times-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.demo-schedule-times-bar {
    position: absolute;
    top: 0;
    right: 4px;
    bottom: 0;
    width: 6px;
    pointer-events: none;
}

.demo-schedule-times-bar.is-hidden {
    display: none;
}

.demo-schedule-times-bar-thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    min-height: 32px;
    border-radius: 100px;
    background: #B3D4FF;
    transition: background 0.15s ease;
}

.demo-schedule-times-track:hover .demo-schedule-times-bar-thumb {
    background: #0069FF;
}

.demo-schedule-times-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    padding-right: 0;
    margin-right: 0;
}

.chat-messages::-webkit-scrollbar,
.demo-schedule-timezone-menu::-webkit-scrollbar,
.demo-modal-overlay.visible::-webkit-scrollbar,
.demo-schedule-card::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-track,
.demo-schedule-timezone-menu::-webkit-scrollbar-track,
.demo-modal-overlay.visible::-webkit-scrollbar-track,
.demo-schedule-card::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 100px;
}

.chat-messages::-webkit-scrollbar-thumb,
.demo-schedule-timezone-menu::-webkit-scrollbar-thumb,
.demo-modal-overlay.visible::-webkit-scrollbar-thumb,
.demo-schedule-card::-webkit-scrollbar-thumb {
    background: #EFF4FF;
    border-radius: 100px;
}

.demo-schedule-time-slot {
    width: 100%;
    max-width: 100%;
    height: 45px;
    min-height: 45px;
    max-height: 45px;
    padding: 0 16px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #B3D4FF;
    border-radius: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0069FF;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.demo-schedule-time-slot:hover {
    background: #EFF4FF;
    border-color: #0069FF;
}

.demo-schedule-time-row {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.demo-schedule-time-row .demo-schedule-time-slot,
.demo-schedule-time-row .demo-schedule-time-next {
    animation: demo-time-row-slide-rtl 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-schedule-time-row .demo-schedule-time-slot {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
    height: 45px;
    min-height: 45px;
    max-height: 45px;
    flex-shrink: 0;
}

.demo-schedule-time-slot.is-selected {
    background: #565656;
    border-color: #565656;
    color: #fff;
}

.demo-schedule-time-slot.is-selected:hover {
    background: #4a4a4a;
    border-color: #4a4a4a;
}

.demo-schedule-time-next {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 45px;
    min-height: 45px;
    max-height: 45px;
    padding: 0 16px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0069FF;
    border: none;
    border-radius: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
}

.demo-schedule-time-next:hover {
    background: #0056cc;
}

.demo-schedule-cal-nav {
    display: flex;
    align-items: center;
    justify-content: center ;
    margin-bottom: 20px;
    gap: 50px;
}

.demo-schedule-cal-month {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #565656;
}

.demo-schedule-cal-prev,
.demo-schedule-cal-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #565656;
    position: relative;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

.demo-schedule-cal-next {
    background: #EFF4FF;
    color: #0069FF;
}

.demo-schedule-cal-prev:hover,
.demo-schedule-cal-next:hover {
    background: #dbeafe;
    color: #0069FF;
}

.demo-schedule-cal-prev:disabled,
.demo-schedule-cal-prev.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.demo-schedule-cal-prev:disabled:hover,
.demo-schedule-cal-prev.is-disabled:hover {
    background: transparent;
    color: #565656;
}

.demo-schedule-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 40px);
    gap: 15px;
    margin-bottom: 15px;
    text-align: center;
    justify-content: start;
}

.demo-schedule-cal-weekdays span {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    color: #565656;
    padding: 4px 0;
}

.demo-schedule-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 40px);
    grid-template-rows: repeat(6, 40px);
    gap: 15px;
    min-height: 315px;
}

.demo-schedule-cal-day {
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 50%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #565656;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.demo-schedule-cal-day.is-empty {
    visibility: hidden;
    pointer-events: none;
}

.demo-schedule-cal-day.is-disabled {
    color: #999999;
    pointer-events: none;
}

.demo-schedule-cal-day.is-available {
    color: #0069FF;
    background: #EFF4FF;
    cursor: pointer;
    font-weight: 500;
}

.demo-schedule-cal-day.is-available:hover {
    background: #E7F1FF;
    border-color: #0069FF;
    color: #0069FF;
}

.demo-schedule-cal-day.is-selected {
    background: #0069FF;
    border-color: #0069FF;
    color: #fff;
}

.demo-schedule-cal-day.is-selected:hover {
    background: #0069FF;
    border-color: #0069FF;
    color: #fff;
}

.demo-schedule-timezone {
    margin-top: 32px;
    position: relative;
    z-index: 4;
    width: 100%;
}

.demo-schedule-timezone-label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.demo-schedule-timezone-dropdown {
    position: relative;
    z-index: 20;
    width: 100%;
}

.demo-schedule-timezone-dropdown.is-open {
    z-index: 50;
}

.demo-schedule-timezone-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.demo-schedule-timezone-globe,
.demo-schedule-timezone-chevron {
    flex-shrink: 0;
}

.demo-schedule-timezone-globe {
    width: 20px;
    height: 20px;
}

.demo-schedule-timezone-value {
    flex: 1;
    min-width: 0;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #565656;
    line-height: 1.4;
}

.demo-schedule-timezone-chevron {
    width: 10px;
    height: 6px;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.demo-schedule-timezone-dropdown.is-open .demo-schedule-timezone-chevron {
    transform: rotate(180deg);
}

.demo-schedule-timezone-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 4px;
    z-index: 60;
    max-height: 220px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.demo-schedule-timezone-menu.is-drop-up:not(.is-fixed) {
    bottom: calc(100% + 6px);
    top: auto;
}

.demo-schedule-timezone-menu.is-drop-down:not(.is-fixed) {
    top: calc(100% + 6px);
    bottom: auto;
}

.demo-schedule-timezone-menu.is-fixed {
    position: fixed;
    right: auto;
    bottom: auto;
    z-index: 10205;
}

.demo-schedule-timezone-option {
    width: 100%;
    display: block;
    border: none;
    border-radius: 4px;
    padding: 10px 12px;
    background: transparent;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.demo-schedule-timezone-option:hover {
    background: #F5F8FF;
}

.demo-schedule-timezone-option.is-selected {
    background: #0069FF;
    color: #fff;
    font-weight: 500;
}

.demo-schedule-timezone-option.is-selected:hover {
    background: #0058d4;
    color: #fff;
}

.demo-schedule-mobile-time-nav,
.demo-schedule-mobile-time-heading,
.demo-schedule-mobile-time-duration {
    display: none;
}

.demo-schedule-mobile-time-nav {
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-bottom: 16px;
}

.demo-schedule-mobile-back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #EFF4FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    padding: 0;
}

.demo-schedule-mobile-back:hover {
    background: #dbeafe;
}

.demo-schedule-mobile-time-date {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding-right: 40px;
}

.demo-schedule-mobile-time-day {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.demo-schedule-mobile-time-full {
    display: block;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #565656;
    line-height: 1.4;
    margin-top: 2px;
}

.demo-schedule-mobile-time-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 6px;
    line-height: 1.3;
}

.demo-schedule-mobile-time-duration {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #565656;
    text-align: center;
    margin: 0 0 20px;
}

@media (max-width: 992px) {
    .demo-modal-overlay.visible {
        justify-content: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .demo-modal-overlay.visible:has(#demoFormStep:not([hidden])) {
        align-items: center;
        padding: 24px 12px;
    }

    .demo-modal-overlay.visible:has(#demoScheduleStep:not([hidden])) {
        align-items: flex-start;
        padding: 72px 12px 24px;
    }

    .demo-schedule-card,
    .demo-schedule-card:has(.demo-schedule-picker.has-date-selected) {
        width: 100%;
        max-width: calc(100% - 24px);
        height: auto;
        min-height: 0;
        max-height: none;
        margin: 0 auto;
        flex-shrink: 0;
        display: block;
        overflow: visible;
        border-radius: 24px;
    }

    .demo-schedule-card.demo-schedule-timezone-open {
        overflow: visible;
    }

    .demo-schedule-layout {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
        height: auto;
        width: 100%;
    }

    .demo-schedule-left {
        border-right: none;
        border-bottom: 1px solid #e8edf5;
        padding: 24px 20px;
        flex: 0 0 auto;
    }

    .demo-schedule-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .demo-schedule-meta-item {
        font-size: 15px;
        gap: 12px;
    }

    .demo-schedule-footer-links {
        margin-top: 20px;
        padding-top: 0;
        gap: 20px;
    }

    .demo-schedule-footer-links a {
        font-size: 15px;
    }

    .demo-schedule-left .demo-schedule-footer-links {
        margin-top: 20px;
    }

    .demo-schedule-right {
        padding: 24px 20px 28px;
        flex: 0 0 auto;
        justify-content: flex-start;
        overflow: visible;
    }

    .demo-schedule-right-title {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .demo-schedule-picker,
    .demo-schedule-picker.has-date-selected {
        display: flex;
        flex-direction: column;
        flex: 0 0 auto;
        gap: 0;
        width: 100%;
    }

    .demo-schedule-calendar,
    .demo-schedule-calendar-col,
    .demo-schedule-picker.has-date-selected .demo-schedule-calendar-col {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .demo-schedule-picker:not(.has-date-selected) .demo-schedule-cal-weekdays,
    .demo-schedule-picker.has-date-selected .demo-schedule-cal-weekdays,
    .demo-schedule-cal-weekdays {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        justify-content: stretch;
        width: 100%;
        gap: 8px;
        margin-bottom: 8px;
    }

    .demo-schedule-picker:not(.has-date-selected) .demo-schedule-cal-grid,
    .demo-schedule-picker.has-date-selected .demo-schedule-cal-grid,
    .demo-schedule-cal-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        grid-template-rows: repeat(6, auto);
        width: 100%;
        min-height: 0;
        aspect-ratio: unset;
        gap: 8px;
    }

    .demo-schedule-picker:not(.has-date-selected) .demo-schedule-cal-day,
    .demo-schedule-picker.has-date-selected .demo-schedule-cal-day,
    .demo-schedule-cal-day {
        width: 100%;
        max-width: 42px;
        height: auto;
        aspect-ratio: 1;
        justify-self: center;
        font-size: 14px;
        margin: 0 auto;
    }

    .demo-schedule-cal-nav {
        margin-bottom: 12px;
    }

    .demo-schedule-cal-weekdays span {
        font-size: 13px;
    }

    .demo-schedule-times,
    .demo-schedule-picker.has-date-selected .demo-schedule-times {
        padding-top: 16px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex: 0 0 auto;
    }

    .demo-schedule-time-slot,
    .demo-schedule-time-row .demo-schedule-time-slot {
        width: 100%;
        max-width: 100%;
        height: 45px;
        min-height: 45px;
        max-height: 45px;
        flex-shrink: 0;
    }

    .demo-schedule-time-row {
        width: 100%;
        max-width: 100%;
        align-items: stretch;
    }

    .demo-schedule-time-row .demo-schedule-time-slot {
        flex: 1 1 0;
        min-width: 0;
    }

    .demo-schedule-time-next {
        flex: 1 1 0;
        min-width: 0;
        height: 45px;
        min-height: 45px;
        max-height: 45px;
        padding: 0 16px;
    }

    .demo-schedule-times-track {
        flex: 0 0 auto;
        width: 100%;
        margin-right: 0;
    }

    .demo-schedule-times-scroll {
        max-height: 280px;
    }

    .demo-schedule-times-list {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .demo-schedule-timezone {
        margin-top: 20px;
        padding-bottom: 0;
        overflow: visible;
    }

    .demo-schedule-timezone-menu {
        max-height: min(220px, calc(100dvh - 120px));
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-mobile-time-nav {
        display: flex;
    }

    .demo-schedule-layout:has(.demo-schedule-picker.is-mobile-time-step) .demo-schedule-left {
        display: none;
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-calendar {
        display: none;
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-timezone {
        margin-top: 0;
        margin-bottom: 8px;
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-times-date {
        display: none;
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-mobile-time-heading,
    .demo-schedule-picker.is-mobile-time-step .demo-schedule-mobile-time-duration {
        display: block;
        flex-shrink: 0;
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-times {
        padding-top: 0;
        width: 100%;
        display: block;
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-times-track {
        flex: none;
        width: 100%;
        min-height: 0;
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-times-scroll {
        height: auto;
        max-height: min(320px, calc(100dvh - 340px));
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .demo-schedule-picker.is-mobile-time-step .demo-schedule-times-list {
        width: 100%;
        max-width: 100%;
    }

    .demo-schedule-picker.is-mobile-time-step.has-date-selected {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 575px) {
    .demo-schedule-card {
        max-width: 100%;
        border-radius: 16px;
    }

    .demo-schedule-left {
        padding: 20px 16px;
    }

    .demo-schedule-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .demo-schedule-right-title {
        font-size: 16px;
    }

    .demo-schedule-right {
        padding: 20px 16px 24px;
    }

    .demo-schedule-picker:not(.has-date-selected) .demo-schedule-cal-weekdays,
    .demo-schedule-picker.has-date-selected .demo-schedule-cal-weekdays,
    .demo-schedule-cal-weekdays {
        gap: 6px;
        margin-bottom: 6px;
    }

    .demo-schedule-picker:not(.has-date-selected) .demo-schedule-cal-grid,
    .demo-schedule-picker.has-date-selected .demo-schedule-cal-grid,
    .demo-schedule-cal-grid {
        gap: 6px;
    }

    .demo-schedule-picker:not(.has-date-selected) .demo-schedule-cal-day,
    .demo-schedule-picker.has-date-selected .demo-schedule-cal-day,
    .demo-schedule-cal-day {
        max-width: 36px;
        font-size: 13px;
    }

    .demo-schedule-cal-weekdays span {
        font-size: 11px;
    }
}