* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

body {
    background: #ffffff;
    color: #1b1d21;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

/* Left Section */
.navbar .left {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #444;
}

/* Center Logo + Menu */
.center-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #fcd34d, #4f46e5, #06b6d4);
    border-radius: 50%;
}

.links a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
}

.links a:hover {
    color: #000;
}

/* Right Section */
.right {
    display: flex;
    align-items: center;

    font-size: 15px;
    flex-direction: column;
}

.trial-btn {
    background: #f97316;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.trial-btn:hover {
    background: #ea580c;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
    height: 100vh;
    background: url("Images/hero-background.png") no-repeat center center/cover;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #eee;
    border-radius: 20px;
    background: #fff;
    font-size: 14px;
    margin-bottom: 25px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Title */
.title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    color: #0b1428;
    margin-bottom: 20px;
}

/* Subtitle */
.subtitle {
    font-size: 17px;
    max-width: 630px;
    margin: 0 auto 35px;
    line-height: 1.6;
    color: #555;
}

/* CTA Button */
.try-btn {
    background: #f97316;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 50px;
}

.try-btn:hover {
    background: #ea580c;
}

/* Mockup Image Placeholder */
.hero-image {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.mockup {
    width: 80%;
    height: 340px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #ececec;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}


:root {
    --muted: #79829F;
    --nav-border: #e6e9ef;
    --accent: #FA5C18;
    --accent-dk: #d65a1b;
    --text: #111827;
    --grey: #4B5162;
    --hero-title: #142444;
    /* deep navy for headline */
    --card-shadow: rgba(20, 30, 50, 0.06);
    --blue: #142444;
}

* {
    box-sizing: border-box
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    margin: 0;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
}

/* ============================
       Header (your existing code)
       ============================ */

.blog,
.about,
.support,
.lang {
    font-size: 14px;
    color: var(--muted);
}

.site-header {
    width: 100%;
    background: #fff;
    padding: 22px 80px 18px;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1;
}


.icon-header {
    height: 16px;
    width: 16px;
}

.try-free-icon {
    width: 15px;
    height: 8px;
    margin-left: 5px;
}

.top-left .lang,
.top-right a {
    cursor: pointer;
}

.support {
    color: var(--muted);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 6px;
    padding-bottom: 15px;
    border-bottom: 3px solid transparent;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1 1 auto;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo {
    width: 30px;
    height: 30px;
    display: inline-block;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-text {
    font-size: 26px;
    font-weight: 500;
    color: #0b1220;
    letter-spacing: 0.2px;
    font-family: "Inter", sans-serif;
    margin-left: -5px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    flex: 0 1 auto;
    font-family: "DM Sans", sans-serif;
    color: var(--grey)
}

.main-nav a {
    text-decoration: none;
    color: var(--grey);
    font-size: 16px;
    font-weight: 400;
    padding: 8px 0;
}

.main-nav a:hover {
    color: #222;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-self: end;
    flex: 0 0 auto;
}

.nav-right .blog,
.nav-right .about {
    color: var(--muted);
    font-size: 16px;
}

.start-trial {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.02);
    cursor: pointer;
    letter-spacing: 0.8px;
}

.start-trial:hover {
    background: var(--accent-dk);
}

.header-divider {
    margin-top: 5px;
    height: 1px;
    background: #D2D5E2;
    border-radius: 1px;
}


/* soft large radial / blurred background image (mockup) */
.hero__bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20%;
    width: 1200px;
    height: 520px;
    border-radius: 28px;
    filter: blur(28px) saturate(.95);
    opacity: 0.95;
    background-image: url("/mnt/data/Screenshot 2025-11-22 at 3.30.25 PM.png");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

/* dot pattern overlay (subtle) */
.hero__dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12%;
    width: 1100px;
    height: 520px;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(75, 81, 98, 0.04) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.5;
    filter: blur(0px);
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    /* above bg */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #B6BCCD;
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 28px;
    font-weight: 600;
    font-style: bold;
}

.badge .spark {
    width: 20px;
    height: 20px;
    transform: translateY(1px);
}

.hero__title {
    font-family: "DM Sans", "Inter", sans-serif;
    color: var(--hero-title);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.03;
    letter-spacing: -1px;
    margin: 6px 0 22px;
}

.hero__subtitle {
    color: #6b7280;
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto 34px;
    line-height: 1.7;
    font-weight: 500;
}

.hero__cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 42px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(250, 92, 24, 0.14);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    margin-top: 8px;
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(214, 90, 27, 0.14);
}

/* small decorative mockup panel centered under CTA (optional) */
.hero__mockup {
    margin: 140px auto 0 auto;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(20, 30, 50, 0.06);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(250, 250, 250, 0.65));
    position: relative;
    z-index: 2;
}

.hero__mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.95;
}

/* ============================
       HOW IT WORKS (NEW)
       ============================ */

.how {
    padding: 72px 20px 140px;
    text-align: center;
    background: #fff;
    margin-top: 500px;
}

.how .badge {
    margin-bottom: 14px;
    border: 1px solid #B6BCCD;
    box-shadow: 0 6px 18px rgba(15, 34, 64, 0.03);
}

.how__title {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--hero-title);
    margin: 6px 0 8px;
}

.how__subtitle {
    color: #6b7280;
    font-size: 16px;
    max-width: 760px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 500;
}

.how__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

/* thin connecting line behind cards */
.how__grid::before {
    content: "";
    position: absolute;
    left: calc(6% + 20px);
    right: calc(6% + 20px);
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(215, 219, 232, 0.0), rgba(215, 219, 232, 0.6), rgba(215, 219, 232, 0.0));
    transform: translateY(-1px);
    z-index: 0;
    border-radius: 2px;
}

.how__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.how__illustration {
    height: 280px;
    width: auto;
    border-radius: 10px;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #fff, #fbfafb);
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.how__illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.98;
}

.how__step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 8px;
    text-align: center;
}

.how__step-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    max-width: 220px;
}

/* connection dots placed using pseudo elements on cards */
.how__card:nth-child(1)::after,
.how__card:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 3;
    box-shadow: 0 6px 16px rgba(15, 34, 64, 0.06);
}

/* remove dot for last card */
.how__card:nth-child(3)::after {
    display: none;
}

/* add small vertical dot connectors near left and right for aesthetic */
.how__card .left-connector,
.how__card .right-connector {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 4;
    box-shadow: 0 6px 16px rgba(15, 34, 64, 0.06);
}

.how__card .left-connector {
    left: -42px;
    top: 56%;
    background: #FBBF24;
    display: none;
}

.how__card .right-connector {
    right: -42px;
    top: 44%;
    background: #F97316;
    display: none;
}

/* show connectors for middle card (vertical pair) */
.how__grid .how__card:nth-child(2) .left-connector,
.how__grid .how__card:nth-child(2) .right-connector {
    display: block;
}

/* responsive */
@media (max-width:1100px) {
    .how__grid {
        gap: 28px;
    }

    .how__card {
        min-height: 240px;
    }
}

@media (max-width:900px) {
    .how__grid {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .how__grid::before {
        display: none;
    }

    .how__card {
        margin: 0 auto 28px;
        max-width: 520px;
    }

    .how__card:nth-child(1)::after,
    .how__card:nth-child(2)::after {
        display: none;
    }

    .how__card .left-connector,
    .how__card .right-connector {
        display: none;
    }
}

/* responsive adjustments already present for hero/header */
@media (max-width:820px) {
    .site-header {
        padding-left: 24px;
        padding-right: 24px;
    }

    .top-row {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .brand-text {
        font-size: 22px;
    }

    .hero {
        padding: 48px 18px 80px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 1.08;
    }

    .hero__subtitle {
        font-size: 15px;
        max-width: 90%;
    }

    .hero__bg {
        display: none;
    }

    .hero__dots {
        display: none;
    }

    .hero__mockup {
        height: 180px;
    }

    .badge {
        padding: 8px 14px;
        font-size: 14px;
    }

    .how {
        padding: 48px 16px 72px;
    }
}

.why {
    padding: 72px 28px 120px;
    /* pale rounded panel background image */
    background-image: url("/mnt/data/Screenshot 2025-11-22 at 9.46.10 PM.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 18px;
    margin: 36px 60px;
    position: relative;
}

/* inner centered container so your outer structure remains untouched */
.why__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 140px;
    background: linear-gradient(180deg, #FFF2EC, #FFFFFF);
    border-radius: 24px;
}

/* small badge */
.why .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #B6BCCD;
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 18px;
    font-weight: 600;
}

/* title/subtitle */
.why__title {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 39px;
    font-weight: 600;
    color: var(--hero-title);
    margin: 6px 0 8px;
}

.why__subtitle {
    color: #6b7280;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 500;
}

/* comparison grid */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 18px;
}

/* each column header */
.compare-col h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--hero-title);
    font-size: 16px;
    font-weight: 600;
}

/* feature box */
.feature {
    display: flex;
    gap: 18px;
    /* a little more breathing room */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98));
    border-radius: 12px;
    padding: 18px 18px;
    /* larger padding for better visual */
    margin-bottom: 18px;
    align-items: center;
    /* vertically center icon + text */
    text-align: left;
    /* ensure children default to left */
    border: 1px solid rgba(15, 34, 64, 0.06);
    box-shadow: 0 10px 30px rgba(15, 34, 64, 0.03);
    min-height: 78px;
    /* consistent height */
}

/* orange square icon */
.feature-icon {
    height: 56px;
    min-width: 42px;
    border-radius: 10px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(250, 92, 24, 0.12);
    font-size: 20px;
    flex-shrink: 0;
    /* keep icon square */
}

.compare-col.right .feature-icon {
    background: #f97316;
}

/* keep this */

.feature-body {
    flex: 1 1 auto;
    font-size: 15px;
    text-align: left;
    /* ensure text is left aligned */
    display: block;
}

.feature-title {
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 6px;
    font-size: 15px;
    text-align: left;
    /* explicit left align */
}

.feature-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    /* explicit left align */
    margin: 0;
    /* remove extra margins */
}

.feature-img {
    width: 24px;
    height: 24px;
}

/* responsive */
@media (max-width:1100px) {
    .why {
        margin: 24px 28px;
        padding: 48px 20px;
        border-radius: 14px;
    }

    .why__title {
        font-size: 34px;
    }
}

@media (max-width:820px) {
    .why {
        margin: 18px 16px;
        padding: 36px 12px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .compare-col h3 {
        text-align: left;
        padding-left: 4px;
    }

    .why__inner {
        padding: 18px;
    }
}


/* Content */
.integrations {
    padding: 120px 20px 140px;
    text-align: center;
    position: relative;


    /* background image */
    background-image: url("Images/List.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.integrations__content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 140px;
}

.integrations::before {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Make sure actual content appears above bg + overlay */
.integrations__content {
    position: relative;
    z-index: 3;
}

.integrations__title {
    font-family: "DM Sans";
    font-size: 40px;
    color: #142444;
    margin-top: 10px;
}

.integrations__subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 650px;
    margin: 12px auto 0;
}

/* Responsive */
@media (max-width: 900px) {
    .social-icon {
        width: 72px;
        height: 72px;
    }

    .social-icon img {
        width: 42px;
    }

    .integrations__title {
        font-size: 32px;
    }
}

/* Stats panel (rounded background card) */
.stats-panel {
    padding: 48px 24px;
    display: flex;
    justify-content: center;
    background: transparent;
}

.stats-panel__inner {
    width: calc(100% - 120px);
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    /* background image (uses your uploaded screenshot) */
    background-image: url("/mnt/data/Screenshot 2025-11-23 at 3.11.18 PM.png");
    background-size: cover;
    background-position: center;
    /* subtle inner layer to mimic the soft card */
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.06);
    padding: 56px 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
}

/* optional translucent overlay to improve contrast */
.stats-panel__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(254, 244, 240, 0.9));
    z-index: 0;
}

.stat {
    position: relative;
    z-index: 1;
    /* above overlay */
    text-align: center;
    padding: 6px 18px;
}

.stat__value {
    font-family: "DM Sans", "Inter", sans-serif;
    font-weight: 800;
    font-size: 50px;
    color: var(--blue);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* small orange icon next to big number */
.stat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FA5C18;
    font-size: 26px;
    margin-left: 6px;
}

.stat__label {
    margin-top: 14px;
    font-weight: 500;
    font-size: 22px;
    color: #000000;
    font-family: "DM Sans", sans-serif !important;
}

.star_icon {
    height: 35px;
    width: 35px;
}

.fire__icon {
    height: 38px;
    width: 30px;
}

.users__icon {
    height: 30px;
    width: 40px;
}

/* responsive */
@media (max-width: 980px) {
    .stats-panel__inner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 24px;
        width: calc(100% - 40px);
    }

    .stat__value {
        font-size: 46px;
    }

    .stat__label {
        font-size: 18px;
    }
}

@media (max-width:420px) {
    .stat__value {
        font-size: 36px;
    }

    .stat__icon {
        font-size: 20px;
    }

    .stat__label {
        font-size: 16px;
    }

    .stats-panel__inner {
        padding: 28px 14px;
    }
}

.testimonials {
    padding: 72px 20px 96px;
    background: transparent;
    font-family: Inter, "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial;

}

.testimonials__wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
    border-radius: 18px;
    /* decorative rounded pale panel background using uploaded screenshot */
    background-image: url("/Images/testimonial-shadow.png");
    background-size: contain;
    background-position: top top;
    background-repeat: no-repeat;


}

/* subtle inner white card to ensure readability (transparent so background shows) */
.testimonials__wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 248, 0.95));
    z-index: 0;
}

/* Intro/title */
.testimonials__intro {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.muted-count {
    color: #52525B;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonials__title {
    font-family: "DM Sans", Inter, sans-serif;
    font-size: 42px;
    line-height: 1.02;
    color: #142444;
    margin: 0;
    font-weight: 800;
}

/* Cards grid */
.testimonials__cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 18px;
}

/* Individual card */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(20, 30, 50, 0.06);
    border: 1px solid rgba(15, 34, 64, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(20, 30, 50, 0.09);
}

/* highlighted (middle) card slightly elevated visually */
.testimonial-card.highlight {
    transform: translateY(-4px);
    box-shadow: 0 34px 90px rgba(20, 30, 50, 0.10);
}

/* stars */
.stars {
    color: #f59e0b;
    /* amber */
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

/* quote */
.quote {
    color: #142444;
    font-size: 18p x;
    line-height: 1.7;
    margin: 0 0 22px 0;
    font-weight: 500;
}

/* author area */
.author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* author meta */
.meta .name {
    font-weight: 700;
    color: #142444;
    font-size: 15px;
}

.meta .role {
    color: #6b7280;
    font-size: 13px;
    margin-top: 4px;
}

/* CTA */
.testimonials__cta {
    text-align: center;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.view-all {
    color: #142444;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 12px;
}

/* Responsive */
@media (max-width: 1100px) {
    .testimonials__wrap {
        padding: 28px;
    }

    .testimonials__cards {
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .testimonials__wrap {
        padding: 20px;
    }

    .testimonials__title {
        font-size: 32px;
    }

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

    .testimonial-card {
        min-height: auto;
    }
}

:root {
    --muted: #79829F;
    --accent: #FA5C18;
    --accent-dk: #d65a1b;
    --hero-title: #142444;
    --card-shadow: rgba(20, 30, 50, 0.06);
    --light-panel: #f4f5f6;
}

.pricing {
    padding: 64px 20px 96px;
    background: transparent;
    font-family: Inter, "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.pricing__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    /* optional subtle panel bg using uploaded screenshot path */
    /* background-image: url("/mnt/data/Screenshot 2025-11-23 at 11.53.56 PM.png");
       background-size: cover;
       background-position:center; */
}

.pricing__toggle {
    display: inline-flex;
    gap: 8px;
    margin: 0 auto 18px;
    background: transparent;
    border-radius: 999px;
    padding: 6px;
    z-index: 2;
    border: "1px solid #C1BCFE4D"
}

.toggle-btn {
    border: none;
    padding: 12px 26px;
    border-radius: 999px;
    background: #fff;
    color: #142444;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(15, 34, 64, 0.03);
    cursor: pointer;
}

.toggle-btn.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 24px rgba(250, 92, 24, 0.14);
}

.pricing__title {
    font-family: "DM Sans", sans-serif;
    color: #142444;
    font-size: 39px;
    margin: 16px 0 8px;
    font-weight: 800;
}

.pricing__subtitle {
    color: #4B5162;
    margin-bottom: 60px;
    font-size: 16px;

}

.pricing__cards {
    display: grid;
    grid-template-columns: 1fr 360px 1fr;
    /* center column narrower and fixed to look featured */
    gap: 28px;
    align-items: start;
    justify-items: center;
    margin-top: 8px;
}

/* common plan styles */
.plan {
    width: 100%;
    max-width: 100%;
    height: 566px;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 18px 48px var(--card-shadow);
    background: #fff;
    border: 1px solid rgba(15, 34, 64, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .18s ease, box-shadow .18s ease;
}

.plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 80px rgba(20, 30, 50, 0.08);
}

.plan--light {
    background: #f7f7f8;
    color: var(--hero-title);
    padding: 60px 10px 10px 10px;
}

/* featured plan */
.plan--featured {
    background: #142444;
    color: #fff;
    border-radius: 12px;
    padding: 60px 10px 10px 10px;
    box-shadow: 0 30px 80px rgba(20, 30, 50, 0.12);
}

.plan__label {
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    color: inherit;
}

.plan__price {
    font-size: 36px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 40px;
}

.plan__price--large {
    font-size: 56px;
}

.plan__price .currency {
    font-size: 18px;
    vertical-align: top;
    margin-right: 6px;
}

.plan__price .per {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-left: 8px;
}

.plan__price .agency-per {
    font-size: 16px;
    font-weight: 500;
    color: #142444;
    margin-left: 8px;
}

.plan__list {
    list-style: none;
    padding: 0;
    margin: 8px 0 22px;
    width: 100%;
    color: inherit;
    text-align: center;
}

.plan__list li {
    margin: 10px 0;
    font-size: 15px;
    color: inherit;
    opacity: 0.95;
}

.plan__cta {
    margin-top: 18px;
    padding: 18px 36px;
    border-radius: 9px;
    border: none;
    background: #fff;
    color: var(--hero-title);
    font-weight: 600;
    cursor: pointer;
    width: 70%;
    box-shadow: 0 6px 18px rgba(15, 34, 64, 0.04);
}

.plan__cta--accent {
    background: #FA5C18;
    color: #fff;
    box-shadow: 0 12px 30px rgba(250, 92, 24, 0.12);

    margin-top: 18px;
    padding: 18px 36px;
    border-radius: 9px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    width: 70%;
    box-shadow: 0 6px 18px rgba(15, 34, 64, 0.04);
}

/* ensure featured CTA stands out */
.plan--featured .plan__cta {
    background: #fff;
    color: var(--accent);
    width: 80%;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
}

/* responsive */
@media (max-width:1100px) {
    .pricing__cards {
        grid-template-columns: 1fr 1fr;
    }

    .plan--featured {
        order: -1;
        grid-column: 1 / -1;
        max-width: 520px;
    }
}

@media (max-width:760px) {
    .pricing__cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .plan__list li {
        font-size: 14px;
    }

    .plan__price--large {
        font-size: 40px;
    }

    .plan {
        padding: 22px;
    }
}




:root {
    --muted: #79829F;
    --accent: #FA5C18;
    --accent-dk: #d65a1b;
    --text: #111827;
    --hero-title: #142444;
    --card-bg: #ffffff;
    --panel: #fbf2ee;
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    margin: 0;
    color: var(--text);
    background: #fff;
}

/* Container */
.faq {
    max-width: 1200px;
    margin: 48px auto;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 40px;
    align-items: start;
}

/* LEFT: heading, description, buttons */
.faq-left {
    position: relative;
    padding: 28px 40px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* decorative subtle background using the uploaded image */
.faq-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/mnt/data/Screenshot 2025-11-24 at 12.44.42 AM.png");
    background-size: cover;
    background-position: center right;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.faq-left>* {
    position: relative;
    z-index: 1;
}

.faq-title {
    font-family: "DM Sans", sans-serif;
    font-size: 48px;
    line-height: 1.02;
    color: var(--hero-title);
    margin: 0 0 18px;
    font-weight: 600;
}

.faq-desc {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 28px;
}

.faq-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

.btn--primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 28px rgba(250, 92, 24, 0.14);
}

.btn--ghost {
    background: transparent;
    color: var(--hero-title);
    padding-left: 6px;
    font-weight: 700;
}

/* RIGHT: accordion */
.faq-right {
    padding: 0 6px;
}

.accordion {
    background: transparent;
}

.accordion-item {
    border-top: 1px solid #D2D5E2;
    padding: 18px 8px;
    position: relative;
}

.accordion-item:last-child {
    border-bottom: 1px solid #D2D5E2;
}


.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 6px 8px;
    user-select: none;
}

.accordion-title {
    font-family: "DM Sans", Inter, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--hero-title);
}

/* plus/minus toggle */
.accordion-toggle {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.accordion-body {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 520px;
    transition: max-height .28s ease, opacity .25s ease;
    overflow: hidden;
}

/* closed state by default */
.accordion-body.closed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    margin-top: 0;
}

.accordion-body.open {
    max-height: 220px;
    opacity: 1;
}

/* subtle divider line after body to match screenshot spacing */
.accordion-item+.accordion-item {
    margin-top: 8px;
}

/* small orange accent when open (right side bar) */
.accordion-item.open .accordion-toggle {
    background: transparent;
    color: var(--accent);
}

/* responsive */
@media (max-width: 1000px) {
    .faq {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .faq-right {
        order: 2;
        margin-top: 18px;
    }

    .faq-left {
        order: 1;
        padding-bottom: 28px;
    }

    .faq-title {
        font-size: 36px;
    }
}

:root {
    --footer-bg: #0f0f10;
    /* near-black */
    --footer-panel: #0f0f10;
    --accent: #FA5C18;
    --muted: #9aa0a8;
    --text: #e9eef2;
    --sep: rgba(255, 255, 255, 0.08);
    --heading: #FF7A2B;
    /* small accent used in screenshot headings */
    --link: #e6e9ef;
    font-family: Inter, "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.site-footer {
    background: var(--footer-bg);
    color: var(--text);
    padding: 60px 28px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* center container */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* top row: brand + thin separator line */
.footer-top {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 8px 22px;
}

/* brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.02) inset;
}

.brand-name {
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0%;
    font-size: 24px;
    font-family: "Inter", sans-serif;
}

/* thin gray line to the right of brand (stretches) */
.footer-sep {
    height: 1px;
    background: #ECEEF4;
    flex: 1;
    margin-left: 12px;
    border-radius: 1px;
}

/* columns */
.footer-columns {
    display: flex;
    gap: 40px;
    margin-top: 6px;
    padding: 18px 6px 28px;
    align-items: flex-start;
    justify-content: space-between;
}

/* single column */
.col {
    width: 22%;
    min-width: 160px;
}

.col h4 {
    color: #FA5C18;
    font-size: 14px;
    margin: 6px 0 12px;
    font-weight: 700;

}

.col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.col ul li {
    margin: 10px 0;
}

.col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
}

.col a:hover {
    color: var(--link);
    text-decoration: underline;
}

/* Social list style — uses small glyphs as placeholders (replace with icons if available) */
.col-social .social-list li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

/* bottom row */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--sep);
    padding: 18px 8px 6px;
    margin-top: 8px;
}

.footer-bottom .copyright {
    color: #626981;
    font-size: 13px;
}

.footer-bottom .policy-links a {
    color: #dfe6ea;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

.footer-bottom .policy-links a:hover {
    text-decoration: underline;
}


.footer-icon {
    height: 20px;
    width: 20px;
}

/* responsive */
@media (max-width:1000px) {
    .footer-columns {
        flex-wrap: wrap;
        gap: 20px;
    }

    .col {
        width: 45%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

@media (max-width:560px) {
    .col {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-sep {
        width: 100%;
        height: 1px;
        margin-top: 6px;
    }
}

/* ============================
       CONTACT FORM SECTION
       ============================ */
.contact {
    padding: 72px 20px 96px;
    background: transparent;
    font-family: Inter, "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.contact__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #B6BCCD;
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 18px;
    font-weight: 600;
}

.contact__title {
    font-family: "DM Sans", "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--hero-title);
    margin: 6px 0 12px;
    line-height: 1.02;
}

.contact__subtitle {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 500;
}

.contact__form {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 18px 48px rgba(20, 30, 50, 0.06);
    border: 1px solid rgba(15, 34, 64, 0.03);
    text-align: left;
    margin-top: 24px;
}

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

.form-label {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--hero-title);
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #D2D5E2;
    border-radius: 10px;
    font-size: 15px;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(250, 92, 24, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
}

.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
}

.contact__submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    box-shadow: 0 8px 24px rgba(250, 92, 24, 0.14);
    margin-top: 8px;
    font-family: "DM Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact__submit:hover {
    background: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(250, 92, 24, 0.2);
}

.contact__submit:active {
    transform: translateY(0);
}

.contact__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: rgba(255, 255, 255, 1);
    display: inline-block;
    animation: btnSpin 0.8s linear infinite;
}

@keyframes btnSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.form-success {
    margin-top: 20px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    color: #166534;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
}

.form-success.form-success--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* Responsive */
@media (max-width: 820px) {
    .contact {
        padding: 48px 16px 72px;
    }

    .contact__title {
        font-size: 32px;
    }

    .contact__form {
        padding: 36px 24px;
    }

    .contact__subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact__form {
        padding: 28px 20px;
    }

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