:root {
    --brand: #75459b;
    --brand-dark: #5f357e;
    --brand-soft: #f2eafb;
    --brand-soft-strong: #e7d8f7;
    --accent: #f0a84e;
    --accent-dark: #d98320;
    --ink: #20283a;
    --ink-soft: #3a455d;
    --muted: #667085;
    --muted-soft: #8d97aa;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-solid: #ffffff;
    --surface-muted: #faf7fd;
    --line: rgba(117, 69, 155, 0.12);
    --line-strong: rgba(117, 69, 155, 0.2);
    --success: #159b67;
    --info: #3b82f6;
    --warm: #f08b37;
    --shadow-xs: 0 14px 30px rgba(34, 38, 51, 0.06);
    --shadow-sm: 0 20px 54px rgba(34, 38, 51, 0.08);
    --shadow-md: 0 28px 78px rgba(48, 38, 73, 0.14);
    --shadow-lg: 0 34px 100px rgba(48, 38, 73, 0.18);
    --radius-lg: 34px;
    --radius-md: 28px;
    --radius-sm: 10px;
    --radius-xs: 18px;
    --container: 1180px;
    --page-columns: 12;
    --content-columns: 10;
    --content-width: calc(
        (100% / var(--page-columns)) * var(--content-columns)
    );
    --section-space: clamp(28px, 3vw, 52px);
    --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Hind Siliguri", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(
            circle at top left,
            rgba(117, 69, 155, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at top right,
            rgba(240, 168, 78, 0.08),
            transparent 22%
        ),
        linear-gradient(180deg, #ffffff 0%, #fcf8ff 48%, #ffffff 100%);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

html,
body {
    height: 100%;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

svg {
    display: block;
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
}

:focus-visible {
    outline: 3px solid rgba(117, 69, 155, 0.28);
    outline-offset: 4px;
}

.container {
    /* 12-column page system: content uses the middle 10 columns.
     Left 1 column and right 1 column stay empty on desktop. */
    width: var(--content-width);
    max-width: none;
    margin-inline: auto;
    min-width: 0;
}

.section {
    position: relative;
    padding: var(--section-space) 0;
}

.section--gradient {
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #fbf6ff 50%, #f7efff 100%);
}

.section--soft {
    background: #faf5ff;
}

.section--light {
    background: rgba(255, 255, 255, 0.92);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--line);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(117, 69, 155, 0.22),
        transparent
    );
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand::before {
    content: none;
}

.brand__logo {
    width: auto;
    height: 46px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.header-cta {
    flex-shrink: 0;
}

.site-nav a {
    position: relative;
    color: var(--ink-soft);
    font-size: 0.98rem;
    font-weight: 700;
    transition: color var(--transition);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, var(--brand), rgba(117, 69, 155, 0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--brand);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.site-nav a.active {
    color: var(--brand);
}

.site-nav a.active::after {
    transform: scaleX(1);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(0);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        color var(--transition);
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.36) 42%,
        transparent 80%
    );
    transform: translateX(-140%);
    transition: transform 620ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
    transform: translateX(140%);
}

.button--compact {
    padding: 0.82rem 1.35rem;
    font-size: 0.98rem;
}

.button--large {
    padding: 1rem 1.8rem;
    font-size: 1rem;
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, #8d5bbb 100%);
    box-shadow: 0 18px 44px rgba(117, 69, 155, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
    box-shadow: 0 24px 58px rgba(117, 69, 155, 0.32);
}

.button--secondary {
    color: var(--brand);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-xs);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    background: #ffffff;
    border-color: rgba(117, 69, 155, 0.3);
}

.button--accent {
    color: #fff;
    background: var(--brand);
    /* box-shadow: 0 18px 44px rgba(240, 168, 78, 0.28); */
}

.button--light {
    color: var(--brand);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(29, 22, 40, 0.18);
}

.button--ghost-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
}

.badge,
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-xs);
}

.badge {
    padding: 10px 18px;
    color: var(--brand);
    font-size: 0.96rem;
    font-weight: 800;
}

.eyebrow-pill {
    padding: 11px 18px;
    color: var(--brand);
    font-size: 0.96rem;
    font-weight: 700;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-sm);
    background: var(--brand);
    box-shadow: 0 0 0 8px rgba(117, 69, 155, 0.12);
    animation: pulse 2.6s ease-in-out infinite;
}

.section-kicker {
    margin: 0 0 18px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-kicker--warm {
    color: var(--brand);
}

.section-header {
    max-width: 760px;
    margin-bottom: 56px;
}

.section-header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: 0.02em;
    font-weight: 800;
}

.contact-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: 0.02em;
    font-weight: 800;
    white-space: nowrap;
}

.section-copy {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand) 0%, #a76dd7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-section {
    padding-top: clamp(10px, 2vw, 40px);
}

.hero-copy > :first-child {
    margin-top: 0;
}

.strategy-section,
.about-section,
.features-section,
.process-section,
.testimonial-section,
.faq-section,
.services-section,
.stories-section {
    position: relative;
}

.hero-orb {
    position: absolute;
    border-radius: var(--radius-sm);
    filter: blur(18px);
    pointer-events: none;
    animation: floatSoft 16s ease-in-out infinite;
}

.hero-orb--one {
    top: -110px;
    right: -90px;
    width: 360px;
    height: 360px;
    background: rgba(117, 69, 155, 0.14);
}

.hero-orb--two {
    bottom: -120px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: rgba(240, 168, 78, 0.16);
    animation-delay: -8s;
}

.hero-section__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 54px;
    align-items: flex-start;
}

.hero-title {
    margin: 26px 0 0;
    color: var(--ink);
    font-size: clamp(3rem, 6vw, 4.9rem);
    line-height: 1.03;
    letter-spacing: 0em;
    font-weight: 800;
}

.hero-description {
    max-width: 640px;
    margin: 24px 0 0;
    color: #5f697d;
    font-size: 1.13rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.hero-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 700px;
    margin-top: 34px;
}

.hero-pill {
    padding: 20px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(117, 69, 155, 0.08);
    background: white;
    color: var(--brand);
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(10px);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.hero-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.hero-showcase {
    position: relative;
    min-height: 560px;
}

.dashboard-shell {
    position: relative;
    z-index: 2;
    max-width: 530px;
    margin-left: auto;
    border-radius: var(--radius-sm);
    padding: 18px;
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.94),
        rgba(244, 237, 251, 0.78)
    );
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
}

.dashboard-card {
    padding: 28px;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #fbfaff 0%, #f5f2fb 100%);
    border: 1px solid rgba(117, 69, 155, 0.08);
}

.dashboard-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.dashboard-card__head h2 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.25;
    font-weight: 800;
}

.dashboard-card__head p {
    margin: 8px 0 0;
    color: var(--muted-soft);
    font-size: 0.95rem;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #8a5ab8);
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(117, 69, 155, 0.24);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-stat {
    padding: 20px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid rgba(117, 69, 155, 0.08);
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.dashboard-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.dashboard-stat__label {
    margin: 0;
    color: var(--muted-soft);
    font-size: 0.95rem;
}

.dashboard-stat__value {
    margin: 10px 0 0;
    font-size: 1.85rem;
    line-height: 1.1;
    font-weight: 800;
}

.dashboard-stat__trend {
    margin: 10px 0 0;
    font-size: 0.88rem;
    font-weight: 800;
}

.trend--success {
    color: var(--success);
}

.trend--brand {
    color: var(--brand);
}

.trend--info {
    color: var(--info);
}

.trend--warm {
    color: var(--warm);
}

.dashboard-modules {
    margin-top: 18px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid rgba(117, 69, 155, 0.08);
    box-shadow: var(--shadow-xs);
}

.dashboard-modules__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-modules__head p {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 800;
}

.dashboard-modules__head span {
    color: var(--brand);
    font-size: 0.92rem;
    font-weight: 800;
}

.dashboard-modules__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.dashboard-modules__grid span {
    display: block;
    padding: 12px 8px;
    border-radius: 16px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
}

.insight-card {
    position: absolute;
    z-index: 3;
    width: 180px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(117, 69, 155, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    animation: floatCard 9s ease-in-out infinite;
}

.insight-card--left {
    left: -12px;
    top: 68px;
}

.insight-card--right {
    right: -28px;
    bottom: 68px;
    animation-delay: -4.5s;
}

.insight-card__label {
    margin: 0;
    color: var(--muted-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.insight-card__value {
    margin: 8px 0 0;
    color: var(--brand);
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
}

.strategy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 54px;
    align-items: center;
}

.strategy-stack {
    display: grid;
    gap: 22px;
}

.strategy-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(240, 168, 78, 0.18);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.strategy-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.strategy-step:nth-child(2) {
    border-color: rgba(117, 69, 155, 0.18);
}

.strategy-step:nth-child(3) {
    border-color: rgba(93, 165, 111, 0.2);
}

.strategy-step__number {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.15rem;
    font-weight: 800;
}

.strategy-step h3,
.feature-card h3,
.service-card h3,
.story-card h3 {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.3;
    font-weight: 800;
}

.strategy-step p,
.feature-card p,
.service-card p,
.story-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 490px) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 385px;
}

.about-img {
    position: absolute;
    object-fit: cover;
    border-radius: 28px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.about-img-1 {
    top: 0;
    left: 38px;
    width: 220px;
    height: 176px;
}

.about-img-2 {
    top: 26px;
    right: 0;
    width: 240px;
    height: 325px;
}

.about-img-3 {
    left: 0;
    bottom: 0;
    width: 240px;
    height: 186px;
}

.about-badge {
    position: absolute;
    left: 176px;
    top: 132px;
    z-index: 4;
    width: 132px;
    height: 132px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, var(--brand), #a56ed4);
    box-shadow: 0 22px 56px rgba(117, 69, 155, 0.34);
    animation: floatCard 10s ease-in-out infinite;
}

.about-badge strong {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.about-badge span {
    font-size: 0.83rem;
    font-weight: 700;
}

.about-desc {
    max-width: 1200px;
    text-align: justify;
}

.about-title {
    max-width: 1200px;
}

.about-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 30px;
    margin-top: 28px;
}

.about-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    line-height: 1.7;
}

.about-check i {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--brand-soft);
}

.about-check i::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(-45deg);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 56px;
}

.about-feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(117, 69, 155, 0.08);
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.about-feature svg {
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 16px;
    color: var(--brand);
    background: var(--brand-soft);
}

.about-feature h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.3;
    font-weight: 800;
}

.about-feature p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.features-grid,
.service-grid,
.story-grid {
    display: grid;
    gap: 24px;
}

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

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

.story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.feature-card,
.service-card,
.story-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.feature-card,
.service-card {
    --tone: var(--brand);
    --tone-soft: #f7efff;
    padding: 28px;
    background: linear-gradient(
        180deg,
        var(--tone-soft) 0%,
        rgba(255, 255, 255, 0.95) 64%,
        #ffffff 100%
    );
    border: 1px solid rgba(117, 69, 155, 0.08);
}

.feature-card::before,
.service-card::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    width: 90px;
    height: 4px;
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, var(--tone), transparent);
}

.feature-card:hover,
.service-card:hover,
.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card[data-tone="violet"],
.service-card[data-tone="violet"] {
    --tone: #7c4eb3;
    --tone-soft: #f7f0ff;
}

.feature-card[data-tone="blue"],
.service-card[data-tone="blue"] {
    --tone: #4e86e8;
    --tone-soft: #eef5ff;
}

.feature-card[data-tone="green"],
.service-card[data-tone="green"] {
    --tone: #3cb179;
    --tone-soft: #edf9f2;
}

.feature-card[data-tone="gold"] {
    --tone: #dda640;
    --tone-soft: #fff8e8;
}

.feature-card[data-tone="rose"] {
    --tone: #ef6c9d;
    --tone-soft: #fff0f6;
}

.feature-card[data-tone="indigo"] {
    --tone: #6473f5;
    --tone-soft: #eff1ff;
}

.feature-card[data-tone="orange"] {
    --tone: #ef8b47;
    --tone-soft: #fff3ec;
}

.feature-card[data-tone="teal"] {
    --tone: #13a8a8;
    --tone-soft: #ebfbfb;
}

.feature-card[data-tone="coral"] {
    --tone: #ef6262;
    --tone-soft: #fff0f0;
}

.feature-card[data-tone="cyan"] {
    --tone: #19a0c8;
    --tone-soft: #ebf9fe;
}

.feature-card[data-tone="lime"] {
    --tone: #75b43a;
    --tone-soft: #f3faeb;
}

.feature-card[data-tone="plum"] {
    --tone: #a054ba;
    --tone-soft: #faf1fd;
}

.feature-card[data-tone="lavender"] {
    --tone: #9170df;
    --tone-soft: #f5f2ff;
}

.feature-card[data-tone="amber"] {
    --tone: #d88d27;
    --tone-soft: #fff6e8;
}

.feature-card[data-tone="sky"] {
    --tone: #4693e5;
    --tone-soft: #eef7ff;
}

.feature-card[data-tone="fuchsia"] {
    --tone: #d652b0;
    --tone-soft: #fff0fb;
}

.feature-card[data-tone="emerald"] {
    --tone: #20997d;
    --tone-soft: #ebfaf6;
}

.process-subtitle {
    max-width: 750px;
    white-space: nowrap;
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.process-steps::before {
    content: "";
    position: absolute;

    top: 36px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(117, 69, 155, 0.12),
        rgba(117, 69, 155, 0.28),
        rgba(117, 69, 155, 0.12)
    );
}

.process-steps::before {
    left: 24px;
    right: calc(20% + 14px);
}

.process-item {
    position: relative;
    z-index: 1;
    padding: 0 12px 0 0;
}

.process-number {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
    color: var(--brand);
    background: linear-gradient(135deg, #efe6fa, #ffffff);
    border: 1px solid rgba(117, 69, 155, 0.1);
    box-shadow: var(--shadow-xs);
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        color var(--transition);
}

.process-number:hover,
.process-number:focus-visible,
.process-item.active .process-number {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #9663c5);
    box-shadow: 0 22px 48px rgba(117, 69, 155, 0.28);
    transform: translateY(-3px);
}

.process-heading {
    margin: 0 0 10px;
    color: var(--ink-soft);
    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 800;
}

.process-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.process-item.active .process-heading,
.process-item.active .process-text {
    color: var(--ink);
}

@media (max-width: 768px) {
    .process-steps::before {
        display: none;
    }

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

.facts-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin-bottom: 32px;
}

.facts-copy,
.fact-item {
    padding: 28px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(117, 69, 155, 0.08);
    box-shadow: var(--shadow-xs);
}

.facts-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #52a8ff;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.facts-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.facts-desc {
    max-width: 340px;
}

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

.fact-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    color: #5bb8f7;
    background: linear-gradient(135deg, #eaf7ff, #ffffff);
}

.fact-icon svg {
    width: 24px;
    height: 24px;
}

.fact-number {
    margin: 0 0 8px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.fact-text {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.client-card {
    position: relative;
    padding: 30px 26px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(117, 69, 155, 0.08);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.client-card::before {
    content: "“";
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(117, 69, 155, 0.12);
    font-size: 4rem;
    line-height: 1;
    font-weight: 800;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-avatar,
.story-avatar {
    width: 78px;
    height: 78px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand-soft), #ffffff);
    color: var(--brand);
    font-size: 1.55rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(117, 69, 155, 0.08);
}

.client-name {
    margin: 20px 0 8px;
    font-size: 1.14rem;
    font-weight: 800;
}

.client-role {
    margin: 0 0 14px;
    color: var(--muted-soft);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.client-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.cta-section {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.88),
        rgba(249, 242, 255, 0.92)
    );
}

.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    padding: 58px 42px;
    color: #fff;
    background: linear-gradient(135deg, #5b3477 0%, #7a4aa1 52%, #9b68c3 100%);
    box-shadow: var(--shadow-lg);
}

.cta-panel::before,
.cta-panel::after,
.cta-panel__glow {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-panel::before {
    width: 280px;
    height: 280px;
    top: -110px;
    right: -70px;
    background: rgba(255, 255, 255, 0.14);
}

.cta-panel::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -70px;
    background: rgba(240, 168, 78, 0.22);
}

.cta-panel__glow {
    width: 420px;
    height: 420px;
    inset: auto auto -240px 35%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(20px);
    animation: floatSoft 14s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.06em;
    font-weight: 800;
    white-space: nowrap;
}

.cta-description {
    max-width: 700px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    line-height: 1.85;
    white-space: nowrap;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.cta-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 700;
}

.cta-meta span {
    position: relative;
    padding-left: 20px;
}

.cta-meta span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-sm);
    background: #ffffff;
}

.faq-head .section-copy {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search {
    position: relative;
    max-width: 720px;
    margin: 0 auto 24px;
}

.faq-search svg {
    position: absolute;
    left: 22px;
    top: 50%;
    width: 20px;
    height: 20px;
    color: var(--brand);
    transform: translateY(-50%);
}

.faq-search input {
    width: 100%;
    height: 62px;
    padding: 0 24px 0 58px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(117, 69, 155, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    outline: 0;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
}

.faq-search input:focus {
    border-color: rgba(117, 69, 155, 0.32);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

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

.faq-tabs button {
    padding: 11px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(117, 69, 155, 0.12);
    background: rgba(255, 255, 255, 0.8);
    color: #49546a;
    font-size: 0.94rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
}

.faq-tabs button:hover,
.faq-tabs button.active {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #8f5fc0);
    border-color: transparent;
    box-shadow: 0 18px 36px rgba(117, 69, 155, 0.24);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faq-card {
    padding: 24px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(117, 69, 155, 0.1);
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.faq-card:hover,
.faq-card.active {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(117, 69, 155, 0.24);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    font-size: 1.08rem;
    line-height: 1.5;
    font-weight: 800;
}

.faq-question b {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: rgba(117, 69, 155, 0.1);
    color: var(--brand);
    font-size: 1.45rem;
    line-height: 1;
    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition);
}

.faq-card.active .faq-question b {
    color: #fff;
    background: var(--brand);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.8;
}

.faq-card.active .faq-answer {
    display: block;
}

.faq-card.hide {
    display: none;
}

.faq-empty {
    display: none;
    margin-top: 24px;
    padding: 22px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(117, 69, 155, 0.32);
    background: rgba(255, 255, 255, 0.82);
    color: var(--brand);
    font-weight: 800;
    text-align: center;
}

.faq-empty.show {
    display: block;
}

.project-filter button.ui-pill:hover,
.project-filter button.ui-pill.active {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #8f5fc0);
    border-color: transparent;
    box-shadow: 0 18px 36px rgba(117, 69, 155, 0.24);
}

.project-card .badge.ui-pill {
    background: linear-gradient(135deg, var(--brand), #8f5fc0);
    color: #fff;
    border: 1px solid rgba(117, 69, 155, 0.12);
}

.service-card {
    min-height: 100%;
}

.service-card__icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 0 1px rgba(117, 69, 155, 0.08);
    color: var(--tone);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.story-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(117, 69, 155, 0.08);
}

.story-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.story-card__head p {
    margin: 8px 0 0;
    color: var(--muted-soft);
}

.story-card__text {
    margin: 0;
    color: #4d586d;
    line-height: 1.85;
}

.story-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.story-card__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.92rem;
    font-weight: 800;
}

.site-footer {
    padding: 56px 0;
    color: #fff;
    background: linear-gradient(135deg, #5b3477 0%, #7a4aa1 52%, #9b68c3 100%);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -100px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -70px;
    border-radius: 50%;
    background: rgba(240, 168, 78, 0.18);
    pointer-events: none;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.site-footer__grid > div {
    width: 100%;
}

.site-footer__grid > div:nth-child(2) {
    padding-left: 80px;
}

@media (max-width: 768px) {
    .site-footer__grid > div:nth-child(2) {
        padding-left: 0;
    }
}

.site-footer__brand {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.site-footer__logo {
    width: auto;
    height: 48px;
}

.site-footer__title {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 800;
}

.site-footer__text {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    text-align: justify;
}

.js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(117, 69, 155, 0.12);
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 0 12px rgba(117, 69, 155, 0.08);
    }
}

@keyframes floatSoft {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 18px, 0);
    }
}

@keyframes floatCard {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@media (max-width: 1180px) {
    .hero-section__inner,
    .strategy-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .strategy-copy,
    .about-copy {
        text-align: center;
    }

    .hero-description,
    .section-copy,
    .about-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-pillars {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
        margin-top: 28px;
        max-width: 720px;
    }

    .hero-showcase {
        min-height: 0;
        padding-top: 62px;
    }

    .dashboard-shell {
        margin-right: auto;
    }

    .insight-card--left {
        left: 22px;
        top: 0;
    }

    .insight-card--right {
        right: 22px;
        bottom: 28px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        flex-wrap: wrap;
        row-gap: 14px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .features-grid,
    .service-grid,
    .client-grid,
    .about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .facts-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .section {
        padding: 74px 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 9vw, 3.4rem);
    }

    .hero-description,
    .section-copy,
    .faq-question span {
        font-size: 1rem;
    }

    .hero-pillars,
    .dashboard-stats,
    .story-grid,
    .service-grid,
    .features-grid,
    .about-features,
    .client-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        display: grid;
        gap: 16px;
        padding-top: 0;
    }

    .insight-card {
        position: relative;
        inset: auto;
        width: 100%;
        animation: none;
    }

    .dashboard-shell {
        width: 100%;
        padding: 14px;
    }

    .dashboard-card {
        padding: 22px;
    }

    .dashboard-modules__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-checks,
    .facts-row,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .facts-copy,
    .fact-item {
        text-align: center;
    }

    .fact-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-panel {
        padding: 44px 24px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-nav {
        gap: 18px;
    }

    .button,
    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-card__head,
    .dashboard-modules__head,
    .cta-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-images {
        height: 330px;
        transform: scale(0.88);
        transform-origin: top center;
        margin-bottom: -28px;
    }

    .faq-tabs {
        justify-content: flex-start;
    }

    .story-card,
    .feature-card,
    .service-card,
    .client-card,
    .facts-copy,
    .fact-item,
    .faq-card,
    .strategy-step,
    .about-feature {
        border-radius: var(--radius-sm);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* App.bd UX upgrades */
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-xs);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: var(--radius-sm);
    background: var(--brand);
    transition:
        transform var(--transition),
        opacity var(--transition);
}
.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 800;
}
.hero-trust span {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(117, 69, 155, 0.1);
    box-shadow: var(--shadow-xs);
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.contact-card {
    display: grid;
    gap: 6px;
    min-height: 96px;
    padding: 18px;
    border-radius: var(--radius-sm);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}
.contact-card strong {
    font-size: 1rem;
}
.contact-card span {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}
.floating-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 18px 46px rgba(18, 140, 126, 0.34);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.floating-call:hover,
.floating-call:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(18, 140, 126, 0.42);
}
.floating-call span {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
}
.floating-call__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
@media (max-width: 980px) {
    .nav-toggle {
        display: inline-block;
        order: 2;
        margin-left: auto;
    }
    .header-cta {
        order: 1;
        margin-left: auto;
    }
    .site-nav {
        display: none;
        order: 4;
        width: 100%;
        padding: 14px;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
    }
    .nav-open .site-nav {
        display: flex;
    }
}
@media (max-width: 760px) {
    .hero-trust {
        justify-content: center;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .floating-call {
        right: 14px;
        bottom: 14px;
    }
}
@media (max-width: 560px) {
    .brand__logo {
        height: 38px;
    }
    .site-footer__logo {
        height: 40px;
    }
    .header-cta {
        display: none;
    }
    .nav-toggle {
        margin-left: auto;
    }
    .floating-call {
        left: 14px;
        right: 14px;
        justify-items: center;
    }
}

/* Hero demo form */
.hero-demo-wrap {
    min-height: 0;
    display: flex;
    justify-content: center;
}

.demo-form-card {
    position: relative;
    z-index: 4;
    width: min(100%, 700px);
    min-height: 750px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.demo-form-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: -1;
    border-radius: var(--radius-sm);
    /* border: 1px solid rgba(117, 69, 155, 0.08); */
    pointer-events: none;
}

.demo-form-head {
    text-align: center;
    margin-bottom: 24px;
}

.demo-form-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: var(--brand);
    background: var(--brand-soft);
    font-size: 0.86rem;
    font-weight: 900;
}

.demo-form-head h2 {
    margin: 0;
    color: var(--brand);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.1;
    font-weight: 800;
}

.demo-form-head p {
    margin: 10px auto 0;
    max-width: 390px;
    color: var(--muted);
    line-height: 1.65;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-row-four {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

@media (max-width: 768px) {
    .form-row--two {
        grid-template-columns: 1fr;
    }
    .form-row-four {
        grid-template-columns: 1fr;
        
    }
    .form-row-four .form-field {
        margin-bottom: 0;
    }
     .demo-form-card .button {
        margin-top: 23px;
    }
}



.form-field {
    position: relative;
    margin-bottom: 23px;
}

.form-field label span {
    color: #ef4444;
}

.contact-field label span {
    color: #ef4444;
}

.form-field input,
.form-field select {
    width: 100%;
    height: 54px;
    padding: 0 36px 0 16px; /* added right spacing for arrow */
    /* border-radius: var(--radius-sm); */
    border: 1px solid var(--brand);
    background: #fff;
    color: var(--ink);
    outline: 0;
    appearance: none; /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

/* custom arrow */
.form-field {
    position: relative;
}

.form-field:has(select)::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: calc(100% - 27px);
    transform: translateY(-50%);
    font-size: 22px;
    color: #6b7280;
    pointer-events: none;
}

.form-field select {
    cursor: pointer;
}

.form-field input::placeholder {
    color: #a8a8a8;
}

.form-field input:focus,
.form-field select:focus {
    border: 2px solid var(--brand-dark);
}

.form-row {
    row-gap: 0;
}

.custom-dropdown {
    position: relative;
}

.dropdown {
    position: relative;
    cursor: pointer;
}

/* make custom dropdown look EXACTLY like select */
.dropdown-selected {
    width: 100%;
    height: 54px;
    padding: 0 36px 0 16px;
    border: 1px solid var(--brand);
    background: #fff;
    color: var(--ink);
    display: flex;
    align-items: center;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

/* same arrow style as select */
.dropdown-selected::after {
    content: "▾";
    position: absolute;
    right: 14px;
    font-size: 22px;
    color: #6b7280;

    transition: transform 0.25s ease;
}

.dropdown.active .dropdown-selected::after {
    transform: rotate(-180deg);
}
/* focus effect same as select */
.dropdown.active .dropdown-selected {
    border: 2px solid var(--brand-dark);
}

/* search input styling same as input */
.dropdown-search {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: none;
    border-bottom: 1px solid rgba(31, 41, 55, 0.12);
    outline: none;
    font-size: 14px;
}

/* dropdown menu border same tone */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid var(--brand);
    z-index: 999;

    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0s linear 0.25s; /* delay hide */
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0s; /* show instantly */
}

/* show only for searchable dropdowns */
.searchable .dropdown-search {
    display: block;
}

.dropdown-options {
    max-height: 180px;
    overflow-y: auto;
}

.dropdown-options div {
    padding: 10px 14px;
    cursor: pointer;
}

.dropdown-options div:hover {
    background: var(--brand-soft);
}

.human-check {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(100%, 310px);
    min-height: 76px;
    margin: 4px 0 12px;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(31, 41, 55, 0.16);
    background: #f8f8f8;
    color: #222;
    cursor: pointer;
}

.human-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-box {
    width: 28px;
    height: 28px;
    border: 2px solid #595959;
    background: #fff;
    display: inline-grid;
    place-items: center;
}

.human-check input:checked + .check-box {
    border-color: var(--brand);
    background: var(--brand);
}

.human-check input:checked + .check-box::after {
    content: "✓";
    color: #fff;
    font-weight: 900;
}

.demo-submit {
    width: 100%;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.demo-form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

.demo-form-note a {
    color: var(--brand);
    font-weight: 900;
}

.demo-form-card.is-success {
    box-shadow: 0 28px 78px rgba(21, 155, 103, 0.18);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, var(--brand), rgba(117, 69, 155, 0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-nav a.active {
    color: #75459b;
}

.site-nav a.active::after {
    transform: scaleX(1);
}

@media (max-width: 1180px) {
    .hero-demo-wrap {
        justify-content: center;
        padding-top: 0;
    }
}

@media (max-width: 760px) {
    .demo-form-card {
        border-radius: 24px;
    }

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

    .human-check {
        width: 100%;
    }
}

.demo-form-card {
    position: relative;
    border-radius: var(--radius-sm);
    transition:
        box-shadow 0.4s ease,
        border 0.4s ease;
}

/* Highlight state */
.demo-form-card.highlight {
    border: 2px solid var(--brand);
    box-shadow:
        0 0 0 4px rgba(117, 69, 155, 0.15),
        0 20px 60px rgba(117, 69, 155, 0.25);
}

/* Optional animated glow */
.demo-form-card.highlight::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 1.2s ease;
}

@keyframes shimmer {
    0% {
        opacity: 0;
        transform: translateX(-40%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(40%);
    }
}

.floating-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-call__icon {
    width: 22px;
    height: 22px;
}

/* hover effect */
.floating-call:hover {
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-title {
        white-space: normal;
    }

    .cta-title {
        white-space: normal;
    }

    .cta-description {
        white-space: normal;
    }

    .floating-call {
        padding: 10px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        justify-content: center;
    }

    .floating-call span {
        display: none;
    }

    .floating-call__icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        position: relative;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        height: 360px;
    }

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

@media (max-width: 600px) {
    .about-images {
        height: 300px;
    }

    .about-img {
        border-radius: 20px;
    }

    /* Top-left image */
    .about-img-1 {
        top: 0;
        left: 0;
        width: 48%;
        height: 38%;
    }

    /* Right tall image */
    .about-img-2 {
        top: 8%;
        right: 0;
        width: 50%;
        height: 78%;
    }

    /* Bottom-left image */
    .about-img-3 {
        bottom: 0;
        left: 0;
        width: 52%;
        height: 40%;
    }

    /* Center badge */
    .about-badge {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90px;
        height: 90px;
    }

    .about-badge strong {
        font-size: 1.4rem;
    }

    .about-badge span {
        font-size: 0.7rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

.social-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

/* Optional: hide on mobile */
@media (max-width: 768px) {
    .social-bar {
        display: none;
    }
}

.social {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social:hover {
    width: 55px;
    transform: translateX(5px);
}

/* Brand colors */
.facebook {
    background: #1877f2;
}
.whatsapp {
    background: #25d366;
}
.twitter {
    background: #1da1f2;
}
.instagram {
    background: #e1306c;
}
.linkedin {
    background: #0077b5;
}
.email {
    background: #777;
}

/* =========================
   MARQUEE SLIDER
========================= */

.marquee-section {
    padding: 60px 0;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 25px;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    align-items: center;
}

.marquee-track img {
    width: 420px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--brand-soft-strong);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.marquee-track img:hover {
    transform: scale(1.05);
    border-color: var(--brand-soft-strong);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.marquee-left .marquee-track {
    animation: scrollLeft 30s linear infinite;
}

.marquee-right .marquee-track {
    animation: scrollRight 30s linear infinite;
}

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

/* ANIMATIONS */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* =========================
   RESPONSIVE 
========================= */

@media (max-width: 1024px) {
    .marquee-track img {
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .marquee-track img {
        width: 150px;
        height: 100px;
    }

    .marquee-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .marquee-track img {
        width: 120px;
        height: 85px;
        border-radius: 10px;
    }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    position: relative;
}

/* GRID LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: flex-start;
}

/* =========================
   CONTACT INFO (LEFT)
========================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CARD */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--line-strong);
}

/* ICON */
.contact-card i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 18px;
}

/* TEXT */
.contact-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
}

.contact-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================
   FORM (RIGHT)
========================= */

.contact-form-wrap {
    padding: 28px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

/* FORM TITLE */
.contact-form-wrap h3 {
    margin: 0 0 18px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
}

/* INPUTS */
.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    /* border-radius: var(--radius-sm); */
    border: 1px solid var(--brand);
    background: #fff;
    color: var(--ink);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.contact-form-wrap textarea {
    height: 120px;
    resize: none;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    border: 1px solid var(--brand-dark);
    /* box-shadow: 0 0 0 3px rgba(117, 69, 155, 0.12); */
    outline: none;
}

/* BUTTON */
.contact-form-wrap button {
    width: 100%;
}

.hero-contact-box {
    width: 100%;
}

.hero-contact-form {
    padding: 34px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
    color: #fff;
}

.hero-contact-field label,
.hero-contact-head h2,
.hero-contact-head p,
.hero-contact-head span {
    color: #fff;
}
.hero-contact-form .hero-contact-field label {
    color: #fff !important;
}
.hero-contact-field label span {
    color: #ef4444;
}
.hero-contact-head {
    margin-bottom: 24px;
}

.hero-contact-head span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
}

.hero-contact-head h2 {
    margin: 0 0 12px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
}

.hero-contact-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.hero-contact-field {
    margin-bottom: 18px;
}

.hero-contact-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.hero-contact-field input,
.hero-contact-field textarea {
    width: 100%;
    border: 1px solid #d4d4d8;
    background: #fff;
    padding: 15px 18px;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: 0.2s ease;
}

.hero-contact-field textarea {
    min-height: 130px;
    resize: none;
}

.hero-contact-field input:focus,
.hero-contact-field textarea:focus {
    border-color: var(--brand);
}

.hero-contact-btn {
    width: 100%;
    height: 56px;
    border: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    transition: 0.2s ease;
}

.hero-contact-btn:hover {
    background: var(--brand-dark);
}

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

.hero-contact-field.custom-dropdown {
    position: relative;
}

/* SAME STYLE AS INPUT */
.hero-contact-field .dropdown-selected {
    width: 100%;
    height: 54px;
    padding: 0 36px 0 16px;
    border: 1px solid #d4d4d8;
    background: #fff;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #000;
    position: relative;
    transition: 0.2s ease;
}

.hero-contact-field .dropdown-selected::after {
    content: "▾";
    position: absolute;
    right: 14px;
    font-size: 22px;
    color: #6b7280;
    transition: 0.25s ease;
}

.dropdown.active .dropdown-selected::after {
    transform: rotate(-180deg);
}

.dropdown.active .dropdown-selected {
    border-color: var(--brand);
}

/* DROPDOWN MENU */
.hero-contact-field .dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #d4d4d8;
    z-index: 50;
    display: none;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.hero-contact-field .dropdown-options div {
    padding: 12px 16px;
    cursor: pointer;
    color: var(--ink);
    transition: 0.2s ease;
}

.hero-contact-field .dropdown-options div:hover {
    background: var(--brand-soft)
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-contact-row {
        grid-template-columns: 1fr;
    }
}

.hero-contact-location-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

@media (max-width: 991px) {
    .hero-contact-location-row {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MAP
========================= */

.map-wrap {
    margin-top: 24px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
}

.map-wrap iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-form-wrap {
        order: -1; /* form on top */
    }
}

/* Mobile */
@media (max-width: 560px) {
    .contact-card {
        padding: 16px;
        border-radius: var(--radius-xs);
    }

    .contact-card i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .contact-form-wrap {
        padding: 20px;
        border-radius: var(--radius-sm);
    }

    .map-wrap iframe {
        height: 260px;
    }
}

/* =========================
   CONTACT SECTION (FIXED)
========================= */

.contact-section {
    padding: var(--section-space) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

/* =========================
   CONTACT INFO (LEFT SIDE)
========================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Heading */
.contact-info-head h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink); /* BLACK TEXT */
}

.contact-info-head p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 420px;
}

/* List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card */
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);

    background: var(--surface-solid); /* WHITE CARD */
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xs);

    transition: all var(--transition);
}

/* Hover effect */
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

/* Icon */
.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: var(--radius-sm);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 18px;
}

/* Content */
.contact-content h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink); /* BLACK */
}

.contact-content p {
    margin: 4px 0 0;
    font-size: 0.95rem;
    color: var(--muted); /* readable gray */
}

/* =========================
   CONTACT FORM (RIGHT SIDE)
========================= */

.contact-form-wrap {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
    padding: 34px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* subtle glow accent */
.contact-form-wrap::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(117, 69, 155, 0.08);
    border-radius: var(--radius-sm);
    filter: blur(40px);
    pointer-events: none;
}

/* FORM HEADER */
.contact-form-head {
    margin-bottom: 22px;
}

.contact-form-head h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
}

.contact-form-head p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* =========================
   INPUT GROUP
========================= */

.contact-form-wrap .form-field {
    position: relative;
    margin-bottom: 18px;
}

/* LABEL FLOAT STYLE */
.contact-form-wrap .form-field label {
    position: absolute;
    top: -10px;
    left: 14px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand);
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}

/* INPUTS */
.contact-form-wrap .form-field input,
.contact-form-wrap .form-field textarea {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    padding: 14px 16px;
    background: #ffffff;
    color: var(--ink);
    font-size: 0.95rem;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

/* TEXTAREA */
.contact-form-wrap .form-field textarea {
    min-height: 130px;
    resize: vertical;
}

/* PLACEHOLDER */
.contact-form-wrap .form-field input::placeholder,
.contact-form-wrap .form-field textarea::placeholder {
    color: var(--muted-soft);
}

/* FOCUS EFFECT */
.contact-form-wrap .form-field input:focus,
.contact-form-wrap .form-field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(117, 69, 155, 0.12);
    transform: translateY(-1px);
}

/* =========================
   BUTTON (UPGRADED)
========================= */

.contact-submit {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    color: #fff;

    background: linear-gradient(135deg, var(--brand), #9c6ad6);
    box-shadow: 0 16px 40px rgba(117, 69, 155, 0.28);

    transition: all var(--transition);
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(117, 69, 155, 0.34);
}

/* =========================
   GRID (2 COL INPUT)
========================= */

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* MAP */
.map-wrap {
    margin-top: 30px;
}

.map-wrap iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xs);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrap {
        order: 1;
    }
}

@media (max-width: 600px) {
    .contact-card {
        padding: 16px;
    }

    .contact-form-wrap {
        padding: 22px;
    }

    .map-wrap iframe {
        height: 250px;
    }
}

/* =========================
   ABOUT SECTION RESPONSIVE FIX
   (NO DESKTOP CHANGE)
========================= */

/* Tablet */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .about-copy {
        text-align: center;
        margin: 0 auto;
    }

    .about-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .about-checks {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .about-images {
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-images {
        height: auto;
        aspect-ratio: unset;
        transform: none;
    }

    .about-img-1,
    .about-img-2,
    .about-img-3 {
        position: relative;
        left: unset;
        right: unset;
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 12px;
    }

    /* Fix floating badge */
    .about-badge {
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
        width: 90px;
        height: 90px;
    }

    .about-badge strong {
        font-size: 1.4rem;
    }

    .about-badge span {
        font-size: 0.7rem;
    }

    .about-features {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .about-feature {
        padding: 20px;
    }
}

.footer-bottom {
    background: #f1f1f1;
    border-top: 1px solid #ddd;
    font-size: 15px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.footer-bottom p {
    margin: 0;
    color: #333;
}

.footer-bottom div {
    color: #333;
}

.footer-bottom span {
    color: #6f42c1;
    font-weight: 600;
    margin-left: 6px;
}
