@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #ffffff;
    --surface-accent: #ffffff;
    --text: #0d0d0d;
    --muted: rgba(13, 13, 13, 0.72);
    --border: rgba(13, 13, 13, 0.1);
    --border-strong: rgba(13, 13, 13, 0.18);
    --green: #0d0d0d;
    --green-deep: #0d0d0d;
    --green-soft: rgba(13, 13, 13, 0.04);
    --highlight: rgba(13, 13, 13, 0.04);
    --brand-gradient: linear-gradient(135deg, #0d0d0d 0%, #0fa15f 100%);
    --shadow: 0 18px 42px rgba(13, 13, 13, 0.06);
    --shadow-strong: 0 22px 56px rgba(13, 13, 13, 0.1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1200px;
    
    /* Premium Light Admin Tokens */
    --admin-bg: #f8fafc;
    --admin-surface: #ffffff;
    --admin-surface-glass: rgba(255, 255, 255, 0.88);
    --admin-text: #0f172a;
    --admin-muted: #64748b;
    --admin-accent: #11ce76;
    --admin-accent-glow: rgba(17, 206, 118, 0.12);
    --admin-border: rgba(15, 23, 42, 0.08);
    --admin-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
    --admin-card-bg: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        linear-gradient(rgba(13, 13, 13, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 13, 13, 0.05) 1px, transparent 1px),
        var(--bg);
    background-size: 120px 120px, 120px 120px, auto;
}

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

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

.page-shell {
    overflow-x: hidden;
}

.container-main {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 92px 0;
}

.section-tight {
    padding: 68px 0;
}

.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 20px 0 0;
}

.nav {
    width: min(var(--container), calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
    padding: 16px 20px;
    border: 1px solid rgba(18, 48, 40, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(22px);
    box-shadow: 0 12px 30px rgba(18, 48, 40, 0.06);
}

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

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: center / cover no-repeat url("img/favicon-bizreach.svg");
    color: transparent;
    font-size: 0;
    box-shadow: none;
    overflow: hidden;
}

.brand-mark__stack {
    display: grid;
    min-width: 0;
    gap: 0;
}

.brand-mark__text {
    color: #111111;
    font-size: 26px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.brand-mark__tag {
    display: none;
}

.brand-mark--footer {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark--footer .brand-mark__text {
    color: #ffffff;
    font-size: clamp(86px, 12vw, 220px);
    line-height: 1;
    letter-spacing: -0.07em;
    text-align: center;
    white-space: nowrap;
}

.brand-mark--center {
    gap: 10px;
}

.brand-mark--center .brand-mark__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 20px;
}

.brand-mark--center .brand-mark__text {
    font-size: 16px;
}

.brand-mark--center .brand-mark__tag {
    display: none;
}

.nav__menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
    margin-left: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.nav__links a {
    position: relative;
    padding: 8px 0;
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: currentColor;
    transition: transform 0.22s ease;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
    transform: scaleX(1);
}

.nav__toggle {
    display: none;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    color: var(--green);
    font-size: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: var(--brand-gradient);
    box-shadow: 0 14px 30px rgba(13, 13, 13, 0.16);
}

.btn-secondary {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.96);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.88);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.hero {
    padding: 78px 0 60px;
}

.page-hero {
    padding: 78px 0 54px;
}

.hero-grid,
.page-hero__grid,
.split-layout,
.about-layout,
.resource-layout,
.demo-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 34px;
    align-items: center;
}

.demo-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.hero-copy h1,
.page-hero h1 {
    margin: 18px 0 18px;
    font-size: 42px;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.page-hero h1 {
    font-size: clamp(38px, 4vw, 60px);
}

.hero-copy p,
.lede,
.page-hero p,
.section-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.hero-actions,
.inline-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-strip,
.chip-row,
.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-strip {
    margin-top: 28px;
}

.info-pill,
.chip,
.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.hero-media,
.visual-card,
.feature-panel,
.showcase-panel,
.demo-panel,
.story-panel,
.panel-card,
.price-card,
.faq-card,
.calendar-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.hero-media,
.visual-card {
    padding: 18px;
}

.hero-media img,
.visual-card img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 1 / 0.92;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    right: 30px;
    bottom: 30px;
    max-width: 240px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    background: rgba(18, 48, 40, 0.92);
    color: #ffffff;
    box-shadow: var(--shadow-strong);
}

.floating-badge strong {
    display: block;
    margin-bottom: 5px;
    font-size: 22px;
}

.section-intro {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-intro h2,
.band-copy h2,
.cta-shell h2 {
    margin: 16px 0 14px;
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.content-grid,
.card-grid,
.use-grid,
.price-grid,
.story-grid,
.stats-grid,
.faq-grid,
.timeline-grid,
.steps-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.use-card,
.about-card,
.resource-card,
.timeline-card,
.step-card,
.story-card,
.stat-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover,
.use-card:hover,
.about-card:hover,
.resource-card:hover,
.timeline-card:hover,
.step-card:hover,
.story-card:hover,
.stat-card:hover,
.panel-card:hover,
.price-card:hover,
.signal-card:hover,
.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    border-color: var(--border-strong);
}

.feature-card__icon,
.use-card__icon,
.resource-card__icon,
.timeline-card__icon,
.step-card__count {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 24px;
    font-weight: 700;
}

.feature-card h3,
.use-card h3,
.about-card h3,
.resource-card h3,
.timeline-card h3,
.step-card h3,
.story-card h3,
.stat-card h3,
.panel-card h3,
.price-card h3,
.faq-question,
.demo-panel h3 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.feature-card p,
.use-card p,
.about-card p,
.resource-card p,
.timeline-card p,
.step-card p,
.story-card p,
.stat-card p,
.panel-card p,
.price-card p,
.demo-panel p,
.faq-answer p,
.list-plain li {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.band-shell,
.cta-shell {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(232, 242, 239, 0.9), rgba(255, 255, 255, 0.96));
    box-shadow: var(--shadow);
}

.band-copy {
    max-width: 840px;
}

.stats-grid .stat-card strong,
.metric-figure,
.price-value {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.price-card .price-value {
    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.stats-grid .stat-card strong {
    font-size: 38px;
}

.split-copy {
    display: grid;
    gap: 20px;
}

.list-plain {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-plain li {
    position: relative;
    padding-left: 22px;
}

.list-plain li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.solution-capability-shell {
    display: grid;
    gap: 34px;
}

.solution-capability-intro {
    display: grid;
    gap: 18px;
    max-width: 1120px;
}

.solution-capability-intro .eyebrow {
    justify-self: start;
    width: auto;
}

.solution-capability-intro h2 {
    margin: 0;
    max-width: 920px;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
    color: #15203c;
}

.solution-capability-intro p {
    margin: 0;
    max-width: 1120px;
    color: #5d6678;
    font-size: clamp(1.12rem, 2vw, 1.6rem);
    line-height: 1.6;
}

.solution-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.solution-capability-card {
    min-height: 320px;
    padding: 38px 38px 34px;
    border: 1px solid rgba(225, 229, 239, 0.94);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 58px rgba(79, 102, 146, 0.1);
}

.solution-capability-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 16px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 24px;
    font-weight: 700;
}

.solution-capability-card h3 {
    margin: 0 0 16px;
    font-size: 21px;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: #18233b;
}

.solution-capability-card p {
    margin: 0;
    color: #5d6678;
    font-size: 16px;
    line-height: 1.65;
}

.industry-fit-shell {
    display: grid;
    gap: 34px;
}

.industry-fit-intro {
    text-align: center;
}

.industry-fit-intro h2 {
    margin: 0 0 12px;
    font-size: clamp(3rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #18233b;
}

.industry-fit-intro p {
    margin: 0;
    color: #4f596d;
    font-size: clamp(1.08rem, 2vw, 1.5rem);
    line-height: 1.6;
}

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

.industry-fit-card,
.industry-fit-cta {
    min-height: 164px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.industry-fit-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding: 26px 18px 0 18px;
    border: 1px solid rgba(225, 229, 239, 0.9);
    background: linear-gradient(180deg, rgba(246, 248, 255, 0.98), rgba(241, 244, 255, 0.96));
    box-shadow: 0 18px 36px rgba(74, 94, 136, 0.08);
}

.industry-fit-card__copy {
    align-self: center;
    padding-bottom: 26px;
}

.industry-fit-card h3,
.industry-fit-cta h3 {
    margin: 0;
    font-size: clamp(1.65rem, 2.4vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: #111827;
}

.industry-fit-card img {
    width: 44%;
    max-width: 176px;
    align-self: end;
    justify-self: end;
    object-fit: contain;
}

.industry-fit-cta {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px;
    background: linear-gradient(135deg, #7028f0, #3668ff 52%, #18d3db);
    box-shadow: 0 22px 40px rgba(71, 78, 231, 0.2);
}

.industry-fit-cta h3 {
    color: #ffffff;
}

.industry-fit-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.98);
    color: #121826;
    font-size: 1.05rem;
    font-weight: 700;
}

.industry-fit-cta__button:hover {
    color: #121826;
}

.usecase-scenarios {
    display: grid;
    gap: 34px;
}

.usecase-scenarios__intro {
    display: grid;
    justify-items: center;
    gap: 16px;
    text-align: center;
}

.usecase-scenarios__intro .eyebrow {
    width: auto;
}

.usecase-scenarios__intro h2 {
    margin: 0;
    font-size: clamp(3rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #18233b;
}

.usecase-scenarios__intro p {
    margin: 0;
    max-width: 860px;
    color: #4f596d;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
}

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

.usecase-scenario-card {
    border: 1px solid rgba(224, 228, 239, 0.94);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(74, 94, 136, 0.08);
    overflow: hidden;
}

.usecase-scenario-card--link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.usecase-scenario-card--link:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 54px rgba(74, 94, 136, 0.12);
}

.usecase-scenario-card__media {
    padding: 18px 18px 0;
}

.usecase-scenario-card__media--empty {
    display: grid;
}

.usecase-scenario-card__media img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    border-radius: 18px;
    background: #eef2ff;
}

.usecase-scenario-card__placeholder {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(18, 48, 40, 0.08), rgba(15, 161, 95, 0.16));
    color: #123028;
    font-size: 42px;
}

.usecase-scenario-card__copy {
    padding: 18px 18px 22px;
}

.usecase-scenario-card__copy span {
    display: inline-block;
    margin-bottom: 8px;
    color: #335cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.usecase-scenario-card__copy h3 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: #18233b;
}

.usecase-scenario-card__copy p {
    margin: 0;
    color: #5d6678;
    font-size: 1rem;
    line-height: 1.7;
}

.howto-library {
    display: grid;
    gap: 36px;
}

.howto-library__intro {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
    padding-top: 8px;
}

.howto-library__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(202, 241, 226, 0.68);
    color: #123028;
    font-size: 28px;
}

.howto-library__intro h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.howto-library__intro p {
    margin: 0;
    max-width: 640px;
    color: #5d6678;
    font-size: 16px;
    line-height: 1.7;
}

.howto-library__divider {
    height: 1px;
    background: rgba(217, 224, 236, 0.98);
}

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

.howto-group-card {
    border: 1px solid rgba(218, 225, 236, 0.94);
    background: rgba(255, 253, 248, 0.95);
}

.howto-group-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: #15130d;
    color: #ffffff;
}

.howto-group-card__head h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.howto-group-card__body {
    display: grid;
}

.howto-group-card__link,
.howto-group-card__more {
    padding: 14px 20px;
    color: #2f394a;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid rgba(229, 233, 239, 0.96);
}

.howto-group-card__link:hover,
.howto-group-card__more:hover {
    color: #0f6a43;
}

.howto-group-card__more {
    font-weight: 700;
}

.cms-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 60px 20px;
    background: 
        radial-gradient(circle at 0% 0%, rgba(17, 206, 118, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(17, 206, 118, 0.03) 0%, transparent 40%),
        var(--admin-bg);
}

.cms-login-card {
    width: min(520px, 100%);
    padding: 48px;
    border: 1px solid var(--admin-border);
    border-radius: 32px;
    background: var(--admin-surface-glass);
    backdrop-filter: blur(32px);
    box-shadow: var(--admin-shadow);
    display: grid;
    gap: 40px;
    animation: authReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authReveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cms-login-card__copy h3 {
    margin: 0;
    font-size: 32px;
    letter-spacing: -0.04em;
    color: var(--admin-text);
}

.cms-login-card__copy p {
    margin: 0;
    color: var(--admin-muted);
    font-size: 16px;
    line-height: 1.6;
}

.cms-login-form,
.admin-editor {
    display: grid;
    gap: 24px;
}

.cms-login-form label span,
.admin-editor label span {
    display: block;
    margin-bottom: 8px;
    color: var(--admin-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cms-login-form input,
.admin-editor input,
.admin-editor textarea,
.admin-editor select {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--admin-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--admin-text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.22s ease;
}

.cms-login-form input:focus,
.admin-editor input:focus,
.admin-editor textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--admin-accent);
    box-shadow: 0 0 0 4px var(--admin-accent-glow);
}

.cms-login-form__status {
    margin: 0;
    min-height: 24px;
    color: var(--admin-accent);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.usecase-admin-app {
    display: grid;
    gap: 28px;
}

.usecase-admin-app__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.usecase-admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
}

.usecase-editor__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
}

.usecase-editor__link {
    min-width: 220px;
}

.usecase-editor__hint,
.usecase-editor__meta {
    font-size: 14px;
    color: #5d6678;
    line-height: 1.6;
}

.usecase-editor__meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.usecase-editor__canvas {
    min-height: 340px;
    border: 1px solid rgba(213, 220, 231, 0.96);
    border-radius: 24px;
    padding: 22px;
    background: #ffffff;
    color: #18233b;
    font-size: 18px;
    line-height: 1.85;
    outline: none;
}

.usecase-editor__canvas:empty::before {
    content: attr(data-placeholder);
    color: #90a0ba;
}

.usecase-editor__canvas a {
    color: #0f6a43;
    font-weight: 700;
    text-decoration: underline;
}

.usecase-admin-list {
    display: grid;
    gap: 18px;
}

.usecase-admin-list__items {
    display: grid;
    gap: 14px;
}

.usecase-admin-item {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(220, 226, 236, 0.95);
    border-radius: 22px;
    background: #ffffff;
}

.usecase-admin-item__meta {
    display: grid;
    gap: 6px;
}

.usecase-admin-item__meta strong {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #18233b;
}

.usecase-admin-item__meta span {
    font-size: 14px;
    color: #5d6678;
}

.usecase-admin-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.usecase-detail {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.usecase-detail h1 {
    margin: 0;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.usecase-detail__summary {
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
    color: #5d6678;
}

.usecase-detail__media img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    max-height: 520px;
}

.usecase-detail__content {
    display: grid;
    gap: 18px;
    font-size: 18px;
    line-height: 1.9;
    color: #2f394a;
}

.usecase-detail__content p,
.usecase-detail__content h2,
.usecase-detail__content h3,
.usecase-detail__content ul {
    margin: 0;
}

.usecase-detail__content strong {
    color: #18233b;
}

.howto-article-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.howto-article-aside {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 22px;
}

.howto-article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2f394a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.howto-article-toc {
    display: grid;
    gap: 14px;
}

.howto-article-toc p {
    margin: 0;
    color: #5d6678;
    font-size: 13px;
    font-weight: 700;
}

.howto-article-toc div {
    display: grid;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(220, 226, 236, 0.95);
}

.howto-article-toc a {
    color: #2f394a;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.55;
}

.howto-article {
    max-width: 760px;
    display: grid;
    gap: 24px;
}

.howto-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    color: #4f596d;
    font-size: 13px;
    font-weight: 700;
}

.howto-article__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(203, 214, 255, 0.72);
    color: #3346a9;
}

.howto-article h1 {
    margin: 0;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: black;
}

.howto-article__summary {
    margin: 0;
    color: #4f596d;
    font-size: 16px;
    line-height: 1.75;
}

.howto-article__media img {
    width: 70%;
    display: block;
    border-radius: 24px;
}

.howto-article__content {
    display: grid;
    gap: 22px;
    color: #303445;
    font-size: 16px;
    line-height: 1.85;
}

.howto-article__content p,
.howto-article__content h2,
.howto-article__content h3,
.howto-article__content ul,
.howto-article__content ol {
    margin: 0;
}

.howto-article__content h2,
.howto-article__content h3 {
    color: #3a2b88;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.howto-article__content h2 {
    font-size: clamp(30px, 4vw, 44px);
}

.howto-article__content h3 {
    font-size: 24px;
}

.howto-article__content ol,
.howto-article__content ul {
    padding-left: 24px;
    display: grid;
    gap: 10px;
}

.usecase-detail__content pre,
.usecase-detail__content code {
    font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
}

.rich-code-block {
    position: relative;
    padding-top: 46px;
}

.rich-code-block__copy {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid rgba(206, 214, 228, 0.96);
    border-radius: 999px;
    background: #ffffff;
    color: #18233b;
    padding: 8px 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.usecase-detail__content pre {
    margin: 0;
    padding: 22px;
    border-radius: 22px;
    background: #f7f9fc;
    border: 1px solid rgba(220, 226, 236, 0.96);
    color: #18233b;
    overflow-x: auto;
    white-space: pre-wrap;
    line-height: 1.75;
}

.usecase-detail__content code {
    font-size: 14px;
}

.usecase-detail__content .flowchart-block {
    white-space: pre-wrap;
    line-height: 1.8;
}

.rich-media {
    margin: 0;
}

.rich-media img {
    width: 100%;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(220, 226, 236, 0.96);
}

.rich-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(220, 226, 236, 0.96);
    background: #0d0d0d;
}

.rich-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.admin-auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background:
        linear-gradient(rgba(18, 48, 40, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 48, 40, 0.05) 1px, transparent 1px),
        #fffdf8;
    background-size: 160px 160px;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    background: var(--admin-bg);
    color: var(--admin-text);
}

.admin-sidebar {
    padding: 32px 24px;
    border-right: 1px solid var(--admin-border);
    background: var(--admin-surface-glass);
    backdrop-filter: blur(40px);
    display: grid;
    align-content: start;
    gap: 32px;
    position: sticky;
    top: 0;
    min-height: 100vh;
    z-index: 50;
}

.admin-sidebar__brand {
    padding: 0 8px;
    margin-bottom: 8px;
}

.admin-sidebar__brand .brand-mark__text {
    color: var(--admin-text);
    font-size: 24px;
}

.admin-nav {
    display: grid;
    gap: 8px;
}

.admin-nav > a,
.admin-nav__group a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 14px;
    color: var(--admin-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-nav > a:hover,
.admin-nav__group a:hover {
    color: var(--admin-accent);
    background: var(--admin-accent-glow);
}

.admin-nav > a.is-active,
.admin-nav__group a.is-active {
    background: var(--admin-accent-glow);
    color: var(--admin-accent);
    box-shadow: inset 0 0 0 1px rgba(17, 206, 118, 0.2);
}

.admin-nav__group {
    display: grid;
    gap: 4px;
    margin-top: 12px;
}

.admin-nav__group span {
    padding: 8px 18px;
    color: var(--admin-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
}

.admin-main {
    padding: 48px;
    display: grid;
    align-content: start;
    gap: 40px;
    background: 
        radial-gradient(circle at 100% 0%, rgba(17, 206, 118, 0.05) 0%, transparent 40%),
        var(--admin-bg);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-topbar .eyebrow {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--admin-border);
    color: var(--admin-accent);
}

.admin-topbar h1 {
    margin: 12px 0 0;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--admin-text);
}

.admin-panel,
.admin-table-shell {
    padding: 32px;
    border: 1px solid var(--admin-border);
    border-radius: 32px;
    background: var(--admin-surface);
    box-shadow: var(--admin-shadow);
}

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

.admin-summary-card {
    padding: 34px;
    border: 1px solid var(--admin-border);
    border-radius: 24px;
    background: var(--admin-card-bg);
    transition: transform 0.24s ease;
}

.admin-summary-card:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 206, 118, 0.3);
}

.admin-summary-card strong {
    font-size: 64px;
    color: var(--admin-accent);
}

.admin-summary-card p {
    color: var(--admin-muted);
    font-size: 16px;
    font-weight: 600;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th,
.admin-table td {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table td {
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.admin-table__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.admin-table .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 80px;
    padding: 8px 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.admin-table .btn-secondary:hover {
    background: #f8fafc;
    border-color: #0f172a;
    transform: translateY(-1px) !important;
}

/* Ensure published buttons are wide enough for text */
.admin-table .btn-secondary[data-admin-toggle*="howto"],
.admin-table .btn-secondary[data-admin-toggle*="usecase"] {
    min-width: 110px;
}

.admin-editor {
    max-width: 100%;
}

.quote-block {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.quote-block p {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.32;
    letter-spacing: -0.03em;
}

.quote-block span {
    color: var(--muted);
    font-size: 15px;
}

.home-closing-cta {
    display: grid;
    justify-items: center;
    gap: 24px;
    padding: clamp(38px, 5vw, 72px);
    border: 1px solid rgba(215, 223, 238, 0.88);
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 255, 0.94)),
        #ffffff;
    box-shadow: 0 30px 80px rgba(71, 96, 140, 0.12);
    text-align: center;
}

.home-closing-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(212, 218, 230, 0.96);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1a2740;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.home-closing-cta__dot {
       width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #0d2017, #0f8e55);
    box-shadow: 0 0 0 10px rgba(130, 232, 241, 0.14);
}

.home-closing-cta h2 {
    margin: 0;
    max-width: 980px;
    font-size: 50px;
    line-height: 0.96;
    letter-spacing: -0.065em;
    color: #15203c;
}

.home-closing-cta p {
    margin: 0;
    max-width: 980px;
    color: #5c667a;
    font-size: 16px;
    line-height: 1.6;
}

.home-closing-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.home-closing-cta__primary {
    padding-inline: 34px;
    border: 0;
    background: linear-gradient(135deg, #73efd8, #68cfff);
    color: #12243f;
    box-shadow: 0 18px 34px rgba(93, 211, 241, 0.24);
}

.home-closing-cta__primary:hover {
    color: #12243f;
    box-shadow: 0 22px 38px rgba(93, 211, 241, 0.3);
}

.home-closing-cta__link {
    color: #18233b;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home-closing-cta__link:hover {
    color: var(--green-dark);
}

.price-card {
    padding: 32px;
}

.price-card__eyebrow {
    margin-bottom: 16px;
}

.price-card--featured {
    background: var(--brand-gradient);
    color: #ffffff;
}

.price-card--featured p,
.price-card--featured .list-plain li,
.price-card--featured .price-value span {
    color: rgba(255, 255, 255, 0.82);
}

.price-card--featured .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.price-card--featured .eyebrow::before,
.price-card--featured .list-plain li::before {
    background: #ffffff;
}

.price-value span {
    margin-bottom: 8px;
    font-size: clamp(20px, 1.7vw, 28px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--muted);
}

.faq-card {
    padding: 10px 28px;
    border: 1px solid rgba(221, 227, 236, 0.95);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 52px rgba(67, 85, 122, 0.08);
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 0;
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text);
    text-align: left;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.faq-question i {
    color: var(--green);
    transition: transform 0.22s ease;
}

.faq-item.is-open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.26s ease;
}

.faq-answer p {
    padding: 0 0 22px;
}

.faq-section__intro {
    max-width: 980px;
}

.calendar-shell {
    padding: 16px;
}

.calendar-frame {
    min-height: 860px;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
}

.booking-hero {
    padding: 84px 0 76px;
}

.booking-hero__intro {
    text-align: center;
    margin-bottom: 34px;
}

.booking-hero__intro h1 {
    margin: 0 0 12px;
    color: #14110d;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(54px, 6vw, 78px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.booking-hero__intro p {
    margin: 0;
    color: #5c5d63;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.4;
}

.booking-calendar {
    display: grid;
    justify-items: center;
    gap: 22px;
}

.booking-calendar__frame {
    width: min(100%, 980px);
    min-height: 620px;
    padding: 0;
    border-color: rgba(20, 17, 13, 0.06);
    border-radius: 14px;
    background: transparent;
    box-shadow: 0 18px 50px rgba(67, 49, 20, 0.08);
}

.contact-sections-shell {
    display: grid;
    gap: 28px;
    padding: 28px;
    border: 1px solid rgba(219, 226, 235, 0.92);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 60px rgba(56, 73, 108, 0.1);
}

.contact-whatsapp,
.contact-videos,
.contact-bottom-cta {
   
    border-radius: var(--radius-xl);
    
   
}

.contact-whatsapp,
.contact-videos {
    padding: 0;
}

.contact-whatsapp {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    align-items: center;
    background: linear-gradient(135deg, rgba(7, 91, 70, 0.98), rgba(11, 110, 87, 0.96));
    color: #ffffff;
    overflow: hidden;
}

.contact-whatsapp__copy {
    display: grid;
    gap: 16px;
    padding: 48px 56px;
    align-content: center;
}

.contact-whatsapp .eyebrow {
    color: rgba(255, 255, 255, 0.72);
    justify-self: start;
    align-self: start;
    width: auto;
}

.contact-whatsapp h2 {
    margin: 0;
    color: #ffffff !important;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.contact-whatsapp p {
    margin: 0;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.65;
}

.contact-whatsapp__visual {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 30px 30px 28px;
    min-height: 284px;
}

.contact-whatsapp__glow {
    position: absolute;
    inset: -4% 2% -8% 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(78, 214, 163, 0.18), rgba(78, 214, 163, 0.08) 48%, rgba(78, 214, 163, 0.04) 60%, transparent 62%),
        radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.contact-whatsapp__icon {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #39e070, #1fa857);
    box-shadow: 0 22px 42px rgba(2, 48, 25, 0.34);
    font-size: 44px;
    z-index: 2;
}

.contact-qr-card {
    position: relative;
    z-index: 1;
    width: min(100%, 256px);
    padding: 12px 12px 10px;
    border-radius: 28px;
    background: #ffffff;
    color: #111827;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.contact-qr-card__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.contact-qr-card strong {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.contact-videos .section-intro {
    margin-bottom: 28px;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact-videos .section-intro .eyebrow {
    justify-self: center;
    width: auto;
}

.contact-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.contact-video-card {
    min-width: 0;
    display: grid;
    justify-items: center;
}

.contact-video-card__link {
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}

.contact-video-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: center;
}

.contact-video-card__thumb {
    position: relative;
    display: grid;
    place-items: center;
    gap: 14px;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1.42 / 1;
    background:
        radial-gradient(circle at top right, rgba(102, 208, 255, 0.18), transparent 34%),
        radial-gradient(circle at bottom left, rgba(103, 237, 209, 0.22), transparent 30%),
        linear-gradient(135deg, #f8fafc, #eef3f8);
    border: 1px solid rgba(213, 221, 231, 0.9);
    box-shadow: 0 18px 32px rgba(34, 50, 84, 0.08);
}

.contact-video-card__play {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #ea3323;
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 16px 28px rgba(234, 51, 35, 0.22);
}

.contact-video-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #18233b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-video-card__link:hover .contact-video-card__thumb {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(34, 50, 84, 0.12);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
}

.video-modal.is-open {
    display: block;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 14, 24, 0.72);
    backdrop-filter: blur(6px);
}

.video-modal__dialog {
    position: relative;
    width: min(100% - 32px, 980px);
    margin: min(7vh, 48px) auto 0;
    background: #0f172a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.video-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.76);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.video-modal__frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-bottom-cta {
    display: grid;
    justify-items: center;
    gap: 22px;
    padding: 44px 32px;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.96), rgba(255, 255, 255, 0.98));
    text-align: center;
}

.contact-bottom-cta h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.05em;
    color: #14110d;
}

.contact-bottom-cta__points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    color: #5b6475;
    font-size: 15px;
    line-height: 1.5;
}

.contact-bottom-cta__points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-bottom-cta__points i {
    color: #0db37c;
}

.process-shell,
.flow-board,
.integration-shell,
.tool-shell,
.insight-shell,
.showcase-mosaic,
.mosaic-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.process-shell,
.integration-shell,
.tool-shell,
.insight-shell,
.showcase-mosaic {
    padding: 34px;
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 26px;
    align-items: start;
}

.flow-board {
    position: relative;
    padding: 24px;
    background:
        radial-gradient(circle at 1px 1px, rgba(18, 48, 40, 0.08) 1px, transparent 0),
        #fffef9;
    background-size: 14px 14px;
}

.flow-column {
    display: grid;
    gap: 18px;
}

.flow-card {
    position: relative;
    padding: 18px 18px 18px 22px;
    border: 1px solid rgba(23, 73, 77, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 28px rgba(18, 48, 40, 0.06);
}

.flow-card::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #39b48f, #8fd2b6);
}

.flow-card__top,
.signal-card__label,
.insight-list li,
.integration-badge,
.mini-node span {
    font-size: 12px;
    letter-spacing: 0.02em;
}

.flow-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--muted);
    font-weight: 600;
}

.flow-card__title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.flow-card p,
.signal-card p,
.mini-node p,
.integration-copy p,
.insight-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.flow-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(57, 180, 143, 0.18);
    border-radius: 999px;
    background: rgba(232, 250, 244, 0.96);
    color: #1f725c;
    font-weight: 700;
}

.flow-link {
    position: relative;
    width: 2px;
    height: 34px;
    margin: -2px auto -2px 46px;
    background: linear-gradient(180deg, rgba(57, 180, 143, 0.65), rgba(57, 180, 143, 0.1));
}

.flow-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #39b48f;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(57, 180, 143, 0.09);
}

.signal-stack,
.insight-list,
.integration-list,
.mini-cluster {
    display: grid;
    gap: 14px;
}

.signal-card,
.insight-panel,
.integration-card,
.mini-node {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
}

.signal-card {
    box-shadow: 0 12px 24px rgba(18, 48, 40, 0.05);
}

.signal-card__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--green);
    font-weight: 700;
}

.signal-card__label::before,
.mini-node span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #87cfb0;
}

.signal-card h3,
.integration-copy h3,
.insight-panel h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.signal-list,
.integration-points {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.signal-list li,
.integration-points li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.signal-list li::before,
.integration-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.process-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.metric-chip {
    min-width: 150px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(247, 245, 239, 0.9);
}

.metric-chip strong {
    display: block;
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.metric-chip span {
    color: var(--muted);
    font-size: 13px;
}

.integration-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

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

.integration-card {
    display: grid;
    gap: 14px;
}

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

.integration-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--green);
    font-weight: 700;
}

.integration-logo {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 18px;
    font-weight: 800;
}

.integration-copy {
    display: grid;
    gap: 18px;
}

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

.mini-node {
    min-height: 120px;
    display: grid;
    align-content: start;
    gap: 8px;
    background: linear-gradient(180deg, rgba(236, 244, 237, 0.68), rgba(255, 255, 255, 0.98));
}

.mini-node span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
}

.insight-panel {
    display: grid;
    gap: 12px;
    background: linear-gradient(180deg, rgba(247, 245, 239, 0.9), rgba(255, 255, 255, 0.98));
}

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

.insight-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid rgba(18, 48, 40, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    font-weight: 600;
}

.insight-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.tool-shell,
.insight-shell {
    overflow: hidden;
}

.tool-layout,
.insight-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.tool-copy,
.insight-copy {
    display: grid;
    gap: 18px;
}

.tool-points {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tool-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.tool-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.tool-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(rgba(18, 48, 40, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 48, 40, 0.04) 1px, transparent 1px),
        #fffef9;
    background-size: 88px 88px, 88px 88px, auto;
}

.tool-card {
    display: grid;
    gap: 14px;
    min-height: 170px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 24px rgba(18, 48, 40, 0.05);
}

.tool-card h3,
.tool-badges h3,
.insight-copy h3,
.chart-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.tool-card p,
.tool-badge,
.chart-labels span,
.chart-note,
.tool-copy p,
.insight-copy p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

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

.tool-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 17px;
    font-weight: 800;
}

.tool-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.tool-badges {
    display: grid;
    gap: 16px;
}

.tool-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tool-badge {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 86px;
    padding: 16px 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    font-weight: 600;
}

.tool-badge strong {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(232, 242, 239, 0.95), rgba(255, 255, 255, 0.95));
    color: var(--green);
    font-size: 14px;
    letter-spacing: -0.02em;
}

.insight-stack {
    display: grid;
    gap: 16px;
}

.chart-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 24px rgba(18, 48, 40, 0.05);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 14px;
    min-height: 210px;
    margin-top: 18px;
    padding: 12px 4px 4px;
}

.chart-bar {
    flex: 1;
    display: grid;
    gap: 10px;
    align-items: end;
}

.chart-bar span {
    display: block;
    border-radius: 16px 16px 6px 6px;
    background: linear-gradient(180deg, #f17daf, #a874ff);
    box-shadow: 0 14px 24px rgba(168, 116, 255, 0.16);
}

.chart-bar:nth-child(2) span {
    background: linear-gradient(180deg, #ffb35c, #ff7e6e);
    box-shadow: 0 14px 24px rgba(255, 126, 110, 0.16);
}

.chart-bar:nth-child(3) span {
    background: linear-gradient(180deg, #ff7db7, #ff5f83);
    box-shadow: 0 14px 24px rgba(255, 95, 131, 0.16);
}

.chart-bar:nth-child(4) span {
    background: linear-gradient(180deg, #7d7cff, #5d9bff);
    box-shadow: 0 14px 24px rgba(93, 155, 255, 0.16);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.metric-list {
    display: grid;
    gap: 12px;
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
}

.metric-row strong {
    font-size: 15px;
    letter-spacing: -0.01em;
}

.metric-row span {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.section-surface {
    background: #f8fafc;
    border-top: 1px solid rgba(18, 48, 40, 0.08);
    border-bottom: 1px solid rgba(18, 48, 40, 0.08);
}

.interactive-shell {
    padding: 40px;
    border: 1px solid rgba(18, 48, 40, 0.1);
    border-radius: 28px;
    background: #f8fafc;
    box-shadow: var(--shadow);
}

.interactive-header {
    margin-bottom: 44px;
    text-align: center;
}

.interactive-header h2,
.sales-compare-head h2,
.flow-section h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.interactive-header h2 span {
    color: #bf0000;
}

.interactive-header__meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 17px;
    font-weight: 500;
}

.interactive-sales-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: center;
}

.selector-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.selector-item {
    padding: 24px;
    border: 1px solid #cbd5e1;
    border-radius: 18px;
    background: #ffffff;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selector-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-box {
    font-size: 24px;
    color: #0f172a;
}

.selector-title {
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.selector-desc,
.learn-more-link {
    display: none;
}

.selector-desc {
    margin-top: 15px;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
}

.learn-more-link {
    justify-content: flex-end;
    margin-top: 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.selector-item.active {
    padding: 30px;
    border-color: #0f172a;
    background: #0f172a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
}

.selector-item.active .selector-title,
.selector-item.active .icon-box {
    color: #ffffff;
}

.selector-item.active .selector-title {
    font-size: 24px;
}

.selector-item.active .selector-desc {
    display: block;
    color: #cbd5e1;
}

.selector-item.active .learn-more-link {
    display: flex;
}

.preview-container {
    min-height: 500px;
    padding: 28px;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.chat-ui,
.wa-ui,
.voicebot-ui {
    width: 100%;
    max-width: 420px;
}

.chat-msg {
    width: fit-content;
    max-width: 80%;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 12px 12px 12px 0;
    background: #f1f5f9;
    color: #334155;
    font-size: 14px;
}

.chat-msg.bot {
    margin-left: auto;
    border-radius: 12px 12px 0 12px;
    background: #0f172a;
    color: #ffffff;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    background: #075e54;
    color: #ffffff;
    font-weight: 600;
}

.wa-body {
    height: 300px;
    padding: 20px;
    border-radius: 0 0 12px 12px;
    background: #e5ddd5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wa-bubble {
    width: fit-content;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.wa-bubble.green {
    margin-left: auto;
    background: #dcf8c6;
}

.call-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    margin-left: auto;
    padding: 10px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #facc15;
    animation: pulse 1.5s infinite;
}

.voice-visualization-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    background: #f8fafc;
}

.bot-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    background: #ffffff;
    font-size: 32px;
}

.waveform {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-grow: 1;
}

.bar {
    width: 4px;
    border-radius: 4px;
    background: #bf0000;
    animation: wave 1s ease-in-out infinite;
}

.bar:nth-child(odd) {
    animation-duration: 0.8s;
}

.bar:nth-child(2n) {
    animation-duration: 1.1s;
}

.sales-compare-head {
    margin-bottom: 50px;
    text-align: center;
}

.sales-compare-head p,
.flow-section p {
    margin: 0;
    color: #64748b;
    font-size: 19px;
    line-height: 1.6;
}

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

.response-problem {
    display: grid;
    gap: 38px;
}

.response-problem__intro {
    display: grid;
    gap: 20px;
    max-width: 1120px;
}

.response-problem__intro h2 {
    margin: 0;
    max-width: 960px;
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #0f172a;
}

.response-problem__copy {
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.response-problem__copy p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.6;
    color: #5b6475;
}

.response-problem__copy strong {
    color: #3a4354;
    font-weight: 700;
}

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

.response-card {
    padding: 38px 38px 34px;
    border-radius: 34px;
    border: 1px solid rgba(205, 214, 226, 0.72);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 255, 0.92));
    box-shadow: 0 28px 70px rgba(32, 45, 69, 0.08);
}

.response-card--problem {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 238, 255, 0.92));
}

.response-card--autopilot {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 240, 255, 0.92));
}

.response-card__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid rgba(216, 219, 228, 0.9);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.response-card h3 {
    margin: 28px 0 20px;
    font-size: clamp(2.1rem, 3vw, 3.3rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #15203c;
}

.response-card p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.72;
    color: #5d6678;
}

.response-list {
    list-style: none;
    margin: 34px 0 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.response-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid rgba(224, 228, 236, 0.96);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 32px rgba(28, 39, 61, 0.05);
    font-size: 1rem;
    line-height: 1.45;
    color: #1f2b46;
}

.response-list li span {
    flex: 1;
}

.response-list li i {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 14px;
}

.response-list--problem li i {
    color: #ff7e96;
    background: rgba(255, 126, 150, 0.12);
}

.response-list--autopilot li i {
    color: #72e5c7;
    background: rgba(114, 229, 199, 0.14);
}

.comp-card {
    min-height: 430px;
    padding: 44px;
    border-radius: 30px;
    position: relative;
    overflow: visible;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.problem {
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.solution {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.problem h3,
.solution h3 {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.problem h3 {
    color: #dc2626;
}

.solution h3 {
    color: #16a34a;
}

.comp-card > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
}

.chaos-container {
    position: relative;
    min-height: 210px;
    margin-top: 28px;
}

.chaos-pill,
.growth-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.chaos-pill {
    position: absolute;
    max-width: 290px;
    white-space: nowrap;
}

.chaos-pill--alert {
    color: #dc2626;
    border-color: #fecaca;
}

.growth-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    margin-top: 20px;
}

.growth-pill {
    color: #0f172a;
    font-weight: 700;
}

.growth-pill--accent {
    background: #bf0000;
    border-color: #bf0000;
    color: #ffffff;
}

.slider-line {
    width: 120px;
    height: 4px;
    border-radius: 10px;
    background: #e2e8f0;
    position: relative;
}

.slider-dot {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #dc2626;
    animation: slideDot 2s infinite ease-in-out;
}

.flow-section {
    padding: 12px 0;
    text-align: center;
}

.flow-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.flow-line-bg {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
    overflow: hidden;
}

.flow-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #bf0000;
    animation: flowFill 2.5s infinite linear;
}

.sales-flow-card {
    position: relative;
    z-index: 1;
    width: 220px;
    height: 200px;
    padding: 30px;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: 0.24s ease;
}

.sales-flow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: #bf0000;
}

.sales-flow-icon {
    margin-bottom: 20px;
    font-size: 48px;
}

.sales-flow-icon--pink {
    color: #db2777;
}

.sales-flow-icon--red {
    color: #bf0000;
}

.sales-flow-card h4 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.showcase-band {
    display: grid;
    gap: 28px;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.showcase-band__head,
.showcase-band__row {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: center;
}

.showcase-band__row--reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.showcase-band__intro {
    display: grid;
    gap: 14px;
    max-width: 460px;
    margin-top: -135px;
}

.showcase-band__intro h2,
.showcase-copy-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 42px;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

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

.showcase-badge {
    position: relative;
    min-height: 80px;
    padding: 16px 14px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(13, 13, 13, 0.05);
    text-align: center;
}

/*
.showcase-badge::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}
*/

.showcase-badge span,
.showcase-badge small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.showcase-badge strong {
    display: block;
    margin: 10px 0 8px;
    color: var(--text);
    font-size: 22px;
    letter-spacing: -0.03em;
}

.showcase-visual-card {
    position: relative;
    min-height: 252px;
}

.showcase-visual-card img {
    width: 85%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 34px rgba(13, 13, 13, 0.09);
}

.showcase-copy-card {
    display: grid;
    gap: 18px;
    align-content: center;
}

.showcase-copy-card h3 {
    font-size: 32px;
}

.showcase-copy-card p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
    max-width: 640px;
}

.showcase-copy-card--plain {
    padding-right: 18px;
}

.showcase-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.showcase-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.showcase-link::before {
    content: "▶";
    margin-right: 8px;
    font-size: 10px;
}

.showcase-note {
    position: absolute;
    z-index: 2;
    max-width: 208px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 13, 13, 0.08);
    box-shadow: 0 10px 26px rgba(13, 13, 13, 0.08);
}

.showcase-note strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
    font-size: 14px;
    letter-spacing: -0.02em;
}

.showcase-note span,
.showcase-note p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.showcase-note--top {
    top: 16px;
    right: 16px;
}

.showcase-note--bottom {
    left: 12px;
    bottom: 12px;
}

.showcase-note__reply {
    margin-top: 8px !important;
}

.showcase-note--query {
    top: 18px;
    right: 18px;
}

.showcase-note--reply {
    right: 18px;
    bottom: 18px;
}

.showcase-note--reply span {
    display: inline-flex;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #d9ff68;
    color: #0d0d0d;
    font-size: 12px;
    font-weight: 700;
}

.showcase-stats-card {
    display: grid;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.showcase-stats-card article {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
}

.showcase-stats-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 18px;
    letter-spacing: -0.02em;
}

.showcase-stats-card span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.leader-shell {
    display: grid;
    gap: 40px;
    padding: 44px;
    border-radius: 36px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.leader-head,
.leader-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: start;
}

.leader-head {
    align-items: start;
}

.leader-copy h2,
.leader-content h3 {
    margin: 14px 0 0;
    color: #14110d;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.leader-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-self: start;
}

.leader-badge {
    position: relative;
    min-height: 142px;
    padding: 18px 14px 16px;
    border: 1px solid rgba(20, 17, 13, 0.18);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 18px rgba(20, 17, 13, 0.05);
}

.leader-badge::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-gradient);
}

.leader-badge span,
.leader-badge small {
    display: block;
    color: #5c5d63;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.leader-badge strong {
    display: block;
    margin: 10px 0 6px;
    color: #14110d;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.leader-story--reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.leader-story + .leader-story {
    padding-top: 4px;
}

.leader-visual {
    position: relative;
    min-height: 360px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.leader-visual img {
    width: 100%;
    max-width: none;
    height: 100%;
    border-radius: 26px;
    box-shadow: 0 20px 40px rgba(20, 17, 13, 0.12);
    object-fit: cover;
}

.leader-visual--soft img {
    margin-left: auto;
    object-position: center;
}

.leader-note {
    position: absolute;
    max-width: 240px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 17, 13, 0.08);
    box-shadow: 0 12px 26px rgba(20, 17, 13, 0.08);
    z-index: 2;
}

.leader-note strong {
    display: block;
    color: #14110d;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.leader-note span,
.leader-note p {
    margin: 0;
    color: #5c5d63;
    font-size: 14px;
    line-height: 1.5;
}

.leader-note--top {
    top: 24px;
    right: 24px;
}

.leader-note--bottom {
    left: 10px;
    bottom: 10px;
}

.leader-reply {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #dfff83;
    color: #1f3214;
}

.leader-note--small {
    right: 18px;
    top: 24px;
}

.leader-note--reply {
    right: 18px;
    bottom: 18px;
}

.leader-note--reply span {
    display: inline-flex;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #dfff83;
    color: #1f3214;
    font-weight: 700;
}

.leader-content {
    display: grid;
    gap: 20px;
    align-content: center;
    max-width: 640px;
}

.leader-content p {
    margin: 0;
    color: #5c5d63;
    font-size: 17px;
    line-height: 1.68;
}

.leader-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.leader-link {
    color: #14110d;
    font-size: 15px;
    font-weight: 700;
}

.leader-link::before {
    content: "▶";
    margin-right: 8px;
    font-size: 11px;
}

.leader-loop {
    position: relative;
    width: min(100%, 560px);
    min-height: 320px;
    margin-left: auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: grid;
    align-items: center;
    padding: 0;
    box-shadow: none;
}

.leader-loop__stats {
    display: grid;
    gap: 14px;
}

.leader-loop__stats article {
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 24px rgba(13, 13, 13, 0.06);
}

.leader-loop__stats strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 18px;
    letter-spacing: -0.02em;
}

.leader-loop__stats span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.referral-shell {
    border-radius: 34px;
    overflow: hidden;
    background: #fffef9;
    box-shadow: var(--shadow);
}

.referral-top {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 38px;
    padding: 36px;
}

.referral-copy {
    display: grid;
    gap: 24px;
}

.referral-copy h2,
.referral-benefits h3,
.referral-prereq h3,
.referral-steps h2 {
    margin: 0;
    color: var(--text);
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.referral-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: end center;
}

.referral-visual__ring {
    position: absolute;
    width: 84%;
    aspect-ratio: 1;
    border-radius: 50%;
    
}

.referral-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    object-fit: contain;
}

.referral-visual__avatars span {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    background: linear-gradient(180deg, #d7b36b, #8f6a22);
    border: 6px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 22px rgba(20, 17, 13, 0.08);
}

.referral-visual__avatars span:nth-child(1) {
    top: 30px;
    left: 20px;
    width: 98px;
    height: 98px;
}

.referral-visual__avatars span:nth-child(2) {
    top: 46px;
    left: 140px;
    width: 54px;
    height: 54px;
}

.referral-visual__avatars span:nth-child(3) {
    top: 58px;
    left: 230px;
    width: 68px;
    height: 68px;
}

.referral-visual__avatars span:nth-child(4) {
    top: 140px;
    left: 120px;
    width: 104px;
    height: 104px;
}

.referral-visual__avatars span:nth-child(5) {
    top: 232px;
    left: 34px;
    width: 78px;
    height: 78px;
}

.referral-visual__avatars span:nth-child(6) {
    bottom: 86px;
    left: 34px;
    width: 62px;
    height: 62px;
}

.referral-feature-list {
    display: grid;
    gap: 14px;
}

.referral-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.referral-feature__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--brand-gradient);
    color: #ffffff;
    font-size: 24px;
}

.referral-feature h3 {
    margin: 0 0 4px;
    color: var(--text);
    font-size: 18px;
    letter-spacing: -0.02em;
}

.referral-feature p,
.benefit-card p {
    margin: 0;
    color: #1f2426;
    font-size: 15px;
    line-height: 1.55;
}

.referral-benefits,
.referral-prereq {
    display: grid;
    gap: 14px;
}

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

.benefit-card {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid transparent;
}

.benefit-card strong {
    display: block;
    margin-bottom: 6px;
    color: #14110d;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.benefit-card--sand {
    border-color: var(--border);
    background: #ffffff;
}

.benefit-card--blue {
    border-color: var(--border);
    background: #ffffff;
}

.benefit-card--mint {
    border-color: var(--border);
    background: #ffffff;
}

.benefit-card--wide {
    grid-column: 1 / -1;
}

.referral-prereq__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.referral-prereq__list span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text);
    font-size: 15px;
}

.referral-prereq__list span::before {
    content: "☑";
    color: #0fa15f;
    font-weight: 700;
}

.referral-steps {
    padding: 38px 36px 42px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.referral-steps h2 {
    color: var(--text);
    text-align: center;
}

.referral-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.ref-step {
    position: relative;
    padding: 18px 18px 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #ffffff;
    overflow: hidden;
}

.ref-step__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #ffffff;
    font-size: 32px;
}

.ref-step strong,
.ref-step p {
    position: relative;
    z-index: 1;
}

.ref-step strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 18px;
    letter-spacing: -0.02em;
}

.ref-step p {
    color: var(--muted);
}

.ref-step > span:last-child {
    color: rgba(13, 13, 13, 0.08);
}

.ref-step p {
    margin: 0;
    color: rgba(246, 243, 237, 0.92);
    font-size: 15px;
    line-height: 1.5;
}

.ref-step span {
    position: absolute;
    right: 10px;
    bottom: -10px;
    color: rgba(255, 255, 255, 0.1);
    font-size: 180px;
    font-weight: 800;
    line-height: 1;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes wave {
    0%, 100% { height: 15%; opacity: 0.4; }
    50% { height: 100%; opacity: 1; }
}

@keyframes slideDot {
    0% { left: 0%; }
    100% { left: 100%; }
}

@keyframes flowFill {
    0% { width: 0%; opacity: 1; }
    80% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

.showcase-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(18, 48, 40, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 48, 40, 0.035) 1px, transparent 1px),
        #fffef9;
    background-size: 120px 120px, 120px 120px, auto;
}

.mosaic-panel {
    min-height: 320px;
    padding: 26px;
    border-radius: 0;
    border: 0;
    border-right: 1px solid rgba(18, 48, 40, 0.08);
    border-bottom: 1px solid rgba(18, 48, 40, 0.08);
    box-shadow: none;
    background: transparent;
}

.mosaic-panel:nth-child(2n) {
    border-right: 0;
}

.mosaic-panel:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.mosaic-stack,
.mosaic-side-list,
.channel-cloud,
.icon-cloud,
.record-row,
.profile-list {
    display: grid;
    gap: 14px;
}

.mini-flow-card,
.mini-ai-card,
.mosaic-list-item,
.profile-card,
.record-pill {
    border: 1px solid rgba(23, 73, 77, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 24px rgba(18, 48, 40, 0.05);
}

.mini-flow-card {
    max-width: 290px;
    padding: 18px;
}

.mini-flow-card--mid {
    margin-left: 78px;
}

.mini-flow-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.mini-flow-card strong,
.mini-ai-card strong,
.profile-card__title,
.record-pill strong {
    display: block;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.mini-flow-card p,
.mini-ai-card p,
.mosaic-list-item,
.channel-cloud span,
.profile-list li span,
.record-pill span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.mosaic-link {
    width: 2px;
    height: 28px;
    margin-left: 44px;
    background: linear-gradient(180deg, rgba(57, 180, 143, 0.65), rgba(57, 180, 143, 0.12));
    position: relative;
}

.mosaic-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #39b48f;
    transform: translateX(-50%);
}

.mosaic-side-list {
    align-content: start;
}

.mosaic-list-item {
    padding: 14px 16px;
    font-weight: 600;
}

.mosaic-list-item--active {
    border-color: rgba(57, 180, 143, 0.22);
    box-shadow: 0 14px 28px rgba(57, 180, 143, 0.08);
}

.mini-ai-card {
    padding: 14px 16px;
}

.mini-ai-card span,
.mini-ai-card small {
    color: var(--muted);
    font-size: 12px;
}

.mini-ai-card--large {
    padding: 18px;
}

.mini-ai-card p {
    margin: 8px 0;
}

.profile-card {
    padding: 18px;
    max-width: 300px;
}

.profile-card__title {
    margin-bottom: 12px;
}

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

.profile-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-top: 1px solid rgba(18, 48, 40, 0.08);
}

.profile-list li:first-child {
    border-top: 0;
}

.profile-list li strong {
    font-size: 12px;
    font-weight: 700;
}

.mosaic-cubes {
    display: grid;
    grid-template-columns: repeat(3, 30px);
    gap: 6px;
    margin-top: 32px;
    margin-left: auto;
    width: fit-content;
}

.mosaic-cubes span {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(18, 48, 40, 0.18);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.98));
}

.mosaic-cubes--small {
    margin-top: 22px;
}

.mosaic-orbit {
    width: 90px;
    height: 90px;
    margin-top: 24px;
    margin-left: auto;
    border: 1px dashed rgba(18, 48, 40, 0.22);
    border-radius: 50%;
    position: relative;
}

.mosaic-orbit::before,
.mosaic-orbit::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(18, 48, 40, 0.18);
    border-radius: 50%;
    transform: rotate(55deg);
}

.mosaic-orbit::after {
    transform: rotate(-55deg);
}

.channel-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
}

.channel-cloud span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.channel-cloud span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.mosaic-center-logo {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 48, 40, 0.12);
    box-shadow: 0 12px 24px rgba(18, 48, 40, 0.08);
    color: var(--green);
    font-size: 20px;
    font-weight: 800;
    text-transform: lowercase;
}

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

.record-pill {
    padding: 14px;
}

.record-pill strong {
    margin-bottom: 6px;
}

.icon-cloud {
    grid-template-columns: repeat(2, 58px);
    justify-content: center;
    align-content: start;
}

.icon-cloud span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(18, 48, 40, 0.1);
    box-shadow: 0 12px 24px rgba(18, 48, 40, 0.06);
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.mosaic-chart-head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.mosaic-chart-head .is-active {
    color: var(--green);
}

.mosaic-chart {
    min-height: 220px;
    display: flex;
    align-items: end;
    gap: 14px;
}

.mosaic-chart span {
    flex: 1;
    border-radius: 18px 18px 8px 8px;
    background: linear-gradient(180deg, #ff9dc1, #a974ff);
    box-shadow: 0 14px 24px rgba(169, 116, 255, 0.16);
}

.mosaic-chart span:nth-child(2n) {
    background: linear-gradient(180deg, #ffd566, #ff8e66);
    box-shadow: 0 14px 24px rgba(255, 142, 102, 0.16);
}

.brand-halo {
    padding: 22px 0 12px;
}

.brand-halo__panel {
    display: flex;
    justify-content: center;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.brand-halo__logo {
    width: min(580px, 84vw);
    opacity: 0.82;
    filter: drop-shadow(0 22px 36px rgba(23, 73, 77, 0.08));
}

.footer {
    padding: 28px 0 52px;
}

.footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

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

.footer__brand-logo {
    width: 210px;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer-shell {
    margin-top: 28px;
    background: #12110e;
    color: #f5f1e8;
}

.footer-showcase {
    padding: 48px;
    border-radius: 0 0 32px 32px;
    background: #1e3d27;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.footer-showcase__copy {
    display: grid;
    gap: 22px;
    max-width: 470px;
}

.footer-showcase__eyebrow {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-showcase__copy h2 {
    margin: 0;
    color: #f6f3ed;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.footer-showcase__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-showcase__actions .btn-primary {
    background: #d6ff63;
    color: #132714;
    box-shadow: none;
}

.footer-showcase__actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #f5f1e8;
}

.footer-showcase__media {
    position: relative;
    min-height: 290px;
}

.footer-showcase__image {
    position: absolute;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
}

.footer-showcase__image--main {
    top: 0;
    left: 0;
    width: min(100%, 430px);
    height: 215px;
}

.footer-showcase__image--alt {
    right: 10px;
    bottom: 0;
    width: min(68%, 260px);
    height: 150px;
}

.footer-showcase__logos {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    padding-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.mega-footer {
    padding: 46px 0 20px;
}

.mega-footer__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
}

.mega-footer__grid h4 {
    margin: 0 0 18px;
    color: #f5f1e8;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.mega-footer__grid a {
    display: block;
    margin-bottom: 12px;
    color: rgba(245, 241, 232, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.mega-footer__grid a:hover,
.mega-footer__contact a:hover {
    color: #d6ff63;
}

.mega-footer__contact {
    margin-top: 34px;
    padding: 34px 0;
    border-top: 1px solid rgba(245, 241, 232, 0.16);
    border-bottom: 1px solid rgba(245, 241, 232, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #f5f1e8;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.mega-footer__contact a {
    color: #d6ff63;
}

.mega-footer__socials {
    display: flex;
    gap: 14px;
    font-size: 22px;
}

.mega-footer__socials a {
    color: rgba(245, 241, 232, 0.88);
}

.mega-footer__wordmark {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mega-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
    color: rgba(245, 241, 232, 0.6);
    font-size: 12px;
}

.mega-footer__legal a {
    color: inherit;
    text-decoration: none;
}

.mega-footer__legal a:hover {
    color: rgba(245, 241, 232, 0.88);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-tilt] {
    transform-style: preserve-3d;
    will-change: transform;
}

@media (max-width: 1180px) {
    .hero-grid,
    .page-hero__grid,
    .split-layout,
    .about-layout,
    .resource-layout,
    .demo-shell,
    .card-grid,
    .story-grid,
    .stats-grid,
    .price-grid,
    .process-grid,
    .integration-layout,
    .tool-layout,
    .insight-layout,
    .showcase-mosaic,
    .interactive-sales-grid,
    .comparison-grid,
    .response-problem__grid,
    .contact-whatsapp,
    .solution-capability-grid,
    .industry-fit-grid,
    .usecase-scenarios__grid,
    .footer-showcase,
    .leader-head,
    .leader-story,
    .showcase-band__head,
    .showcase-band__row,
    .referral-top {
        grid-template-columns: 1fr;
    }

    .use-grid,
    .timeline-grid,
    .steps-grid,
    .integration-list,
    .mini-cluster,
    .tool-badge-grid,
    .tool-board,
    .record-row,
    .channel-cloud,
    .footer-showcase__logos,
    .mega-footer__grid,
    .leader-badges,
    .showcase-band__badges,
    .referral-benefits__grid,
    .referral-steps__grid,
    .contact-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-container {
        flex-direction: column;
    }

    .flow-line-bg {
        top: 10%;
        left: 50%;
        width: 2px;
        height: 80%;
    }

    .flow-line-fill {
        width: 100%;
        height: 100%;
        opacity: 0.22;
        animation: none;
    }
}

@media (max-width: 900px) {
    .nav {
        grid-template-columns: auto auto;
        border-radius: 28px;
    }

    .nav__toggle {
        display: inline-flex;
    }

    .nav__menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 22px 48px rgba(18, 48, 40, 0.12);
    }

    .nav.is-open .nav__menu {
        display: flex;
    }

    .nav__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-left: 0;
    }

    .nav__menu .btn {
        width: 100%;
    }

    .hero,
    .page-hero {
        padding-top: 56px;
    }

    .booking-hero {
        padding-top: 62px;
    }

    .use-grid,
    .timeline-grid,
    .steps-grid,
    .integration-list,
    .mini-cluster,
    .tool-badge-grid,
    .tool-board,
    .record-row,
    .channel-cloud {
        grid-template-columns: 1fr;
    }

    .interactive-header__meta {
        gap: 10px;
        font-size: 15px;
    }

    .leader-visual img,
    .leader-loop,
    .showcase-visual-card img,
    .referral-visual img {
        max-width: 100%;
    }

    .showcase-band {
        padding: 30px;
    }

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

    .showcase-copy-card--plain {
        padding-right: 0;
    }

    .leader-shell {
        padding: 28px;
    }

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

    .leader-note--top {
        right: 14px;
        top: 14px;
    }

    .leader-note--bottom {
        left: 14px;
        bottom: 14px;
    }

    .leader-note--small,
    .leader-note--reply {
        right: 10px;
    }

    .contact-whatsapp__icon {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: -24px;
    }

    .contact-sections-shell {
        padding: 22px;
        border-radius: 28px;
    }

    .mega-footer__grid {
        display: block;
    }

    .mega-footer__grid > div {
        padding: 22px 0;
        border-top: 1px solid rgba(245, 241, 232, 0.22);
    }

    .mega-footer__grid > div:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .mega-footer__grid > div h4 {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-size: 20px;
    }

    .mega-footer__grid > div h4::after {
        content: "+";
        font-size: 30px;
        font-weight: 300;
        line-height: 1;
    }

    .mega-footer__grid > div a {
        display: none;
    }

    .mega-footer__grid > div.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
        row-gap: 12px;
        align-items: start;
    }

    .mega-footer__grid > div.is-open h4 {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .mega-footer__grid > div.is-open h4::after {
        content: "−";
    }

    .mega-footer__grid > div.is-open a {
        display: block;
        margin-bottom: 0;
        font-size: 15px;
    }

    .mega-footer__contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .mosaic-panel {
        border-right: 0;
    }

    .mosaic-panel:not(:last-child) {
        border-bottom: 1px solid rgba(18, 48, 40, 0.08);
    }

    .mini-flow-card--mid {
        margin-left: 36px;
    }
}

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

    .nav {
        width: min(var(--container), calc(100% - 16px));
        padding: 14px;
    }

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

    .section {
        padding: 72px 0;
    }

    .section-tight {
        padding: 52px 0;
    }

    .hero-copy h1,
    .page-hero h1,
    .section-intro h2,
    .band-copy h2,
    .cta-shell h2 {
        line-height: 1;
    }

    .hero-actions,
    .inline-actions,
    .process-metrics {
        flex-direction: column;
    }

    .feature-card,
    .use-card,
    .about-card,
    .resource-card,
    .timeline-card,
    .step-card,
    .story-card,
    .stat-card,
    .price-card,
    .band-shell,
    .cta-shell,
    .demo-panel,
    .process-shell,
    .integration-shell,
    .tool-shell,
    .insight-shell,
    .showcase-mosaic,
    .interactive-shell,
    .contact-sections-shell,
    .contact-whatsapp,
    .contact-videos,
    .contact-bottom-cta {
        padding: 24px;
    }

    .flow-board,
    .signal-card,
    .insight-panel,
    .integration-card,
    .mini-node,
    .preview-container,
    .comp-card {
        padding: 18px;
    }

    .footer-showcase {
        padding: 28px 24px;
    }

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

    .showcase-band {
        gap: 24px;
        padding: 22px;
        border-radius: 28px;
    }

    .showcase-band__badges {
        grid-template-columns: 1fr;
    }

    .showcase-badge {
        min-height: 112px;
    }

    .showcase-band__intro h2,
    .showcase-copy-card h3 {
        font-size: 40px;
    }

    .showcase-visual-card {
        min-height: 260px;
    }

    .showcase-note {
        max-width: 188px;
        padding: 10px 12px;
    }

    .showcase-note span,
    .showcase-note p {
        font-size: 12px;
    }

    .showcase-note--top,
    .showcase-note--query {
        top: 10px;
        right: 10px;
    }

    .showcase-note--bottom {
        left: 10px;
        bottom: 10px;
    }

    .showcase-note--reply {
        right: 10px;
        bottom: 10px;
    }

    .showcase-stats-card {
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .showcase-stats-card article {
        padding: 16px;
    }

    .mega-footer__contact {
        font-size: 34px;
        padding: 26px 0;
        text-align: left;
    }

    .footer-showcase__media {
        min-height: 220px;
    }

    .footer-showcase__image--main {
        width: calc(100% - 24px);
        height: 160px;
    }

    .footer-showcase__image--alt {
        width: 56%;
        height: 110px;
    }

    .leader-shell {
        gap: 36px;
        padding: 22px;
    }

    .leader-badges {
        grid-template-columns: 1fr;
    }

    .leader-badge {
        min-height: 118px;
    }

    .solution-capability-card {
        min-height: 0;
        padding: 28px;
        border-radius: 28px;
    }

    .solution-capability-card__icon {
        width: 76px;
        height: 76px;
        margin-bottom: 22px;
        border-radius: 22px;
        font-size: 34px;
    }

    .solution-capability-card h3 {
        font-size: 1.95rem;
    }

    .solution-capability-intro h2 {
        font-size: 2.85rem;
    }

    .solution-capability-intro p {
        font-size: 1.02rem;
    }

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

    .industry-fit-card,
    .industry-fit-cta {
        min-height: 0;
    }

    .industry-fit-card {
        padding: 24px 18px 0;
    }

    .industry-fit-card__copy {
        padding-bottom: 22px;
    }

    .industry-fit-card img {
        width: 36%;
        max-width: 150px;
    }

    .industry-fit-cta {
        grid-column: auto;
        padding: 24px;
        border-radius: 24px;
    }

    .industry-fit-intro h2 {
        font-size: 2.85rem;
    }

    .industry-fit-intro p {
        font-size: 1.02rem;
    }

    .usecase-scenarios__intro h2 {
        font-size: 2.85rem;
    }

    .usecase-scenarios__intro p {
        font-size: 1.02rem;
    }

    .usecase-scenario-card__copy h3 {
        font-size: 2rem;
    }

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

    .contact-video-card h3 {
        font-size: 19px;
    }

    .contact-whatsapp__icon {
        width: 82px;
        height: 82px;
        font-size: 42px;
    }

    .contact-qr-card {
        max-width: 260px;
        padding: 16px;
    }

    .contact-video-card__link {
        max-width: 420px;
    }

    .home-closing-cta {
        border-radius: 30px;
    }

    .home-closing-cta h2 {
        font-size: 2.7rem;
    }

    .home-closing-cta p {
        font-size: 1.05rem;
    }

    .response-card {
        padding: 24px;
        border-radius: 28px;
    }

    .response-problem__intro h2 {
        font-size: 2.35rem;
        line-height: 1.02;
    }

    .response-card h3 {
        line-height: 1.02;
    }

    .response-list li {
        padding: 18px;
    }

    .referral-top,
    .referral-steps {
        padding: 26px 24px;
    }

    .referral-copy h2,
    .referral-benefits h3,
    .referral-prereq h3,
    .referral-steps h2 {
        font-size: 40px;
    }

    .referral-benefits__grid,
    .referral-steps__grid {
        grid-template-columns: 1fr;
    }

    .referral-visual {
        min-height: 400px;
    }

    .leader-content h3,
    .leader-copy h2 {
        font-size: 40px;
    }

    .leader-visual {
        min-height: 280px;
        padding: 0;
    }

    .leader-note {
        max-width: 200px;
        padding: 12px 14px;
    }

    .leader-note--top {
        right: 6px;
    }

    .leader-note--bottom {
        left: 6px;
        bottom: 6px;
    }

    .leader-loop {
        aspect-ratio: auto;
        min-height: 240px;
        padding: 0;
    }

    .leader-loop__stats article {
        padding: 16px;
        border-radius: 16px;
    }

    .leader-loop__stats strong {
        font-size: 16px;
    }

    .leader-loop__stats span {
        font-size: 14px;
    }

    .booking-calendar__frame {
        min-height: 560px;
    }

    .mega-footer__socials {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .mega-footer__wordmark {
        justify-content: center;
        margin-top: 34px;
    }

    .brand-mark--footer .brand-mark__icon {
        display: none;
    }

    .brand-mark--footer .brand-mark__text {
        font-size: clamp(60px, 12vw, 120px);
    }

    .mega-footer__legal {
        justify-content: center;
        gap: 10px 18px;
        margin-top: 22px;
        text-align: center;
        font-size: 11px;
    }

    .quote-block {
        padding: 24px;
    }

    .booking-hero__intro h1 {
        font-size: 56px;
    }

    .booking-hero__intro p {
        font-size: 18px;
    }

    .quote-block p {
        font-size: 24px;
    }

    .preview-container {
        min-height: 380px;
    }

    .sales-flow-card {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        padding-top: 44px;
        padding-bottom: 54px;
    }

    .booking-hero__intro {
        margin-bottom: 22px;
    }

    .booking-hero__intro h1 {
        font-size: 44px;
    }

    .booking-hero__intro p {
        font-size: 17px;
    }

    .brand-mark {
        gap: 10px;
    }

    .brand-mark__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 20px;
    }

    .brand-mark__text {
        font-size: 18px;
    }

    .booking-calendar__frame {
        min-height: 520px;
        border-radius: 12px;
    }

    .referral-prereq__list {
        display: grid;
    }

    .leader-content h3,
    .leader-copy h2 {
        font-size: 34px;
    }

    .showcase-band__intro h2,
    .showcase-copy-card h3 {
        font-size: 34px;
    }

    .showcase-copy-card p {
        font-size: 16px;
    }

    .showcase-visual-card {
        min-height: 230px;
    }

    .showcase-note {
        max-width: 164px;
        padding: 9px 10px;
        border-radius: 12px;
    }

    .showcase-note strong,
    .showcase-note span,
    .showcase-note p {
        font-size: 11px;
    }

    .showcase-note--reply span {
        font-size: 11px;
        padding: 7px 9px;
    }

    .leader-shell {
        padding: 18px;
        gap: 24px;
    }

    .leader-story {
        gap: 20px;
    }

    .leader-content p {
        font-size: 16px;
    }

    .leader-visual {
        min-height: 250px;
        padding: 0;
        border-radius: 0;
    }

    .leader-visual img {
        border-radius: 18px;
    }

    .leader-note {
        max-width: 176px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .leader-note span,
    .leader-note p {
        font-size: 11px;
        line-height: 1.4;
    }

    .leader-note--top,
    .leader-note--small {
        top: 10px;
        right: 10px;
    }

    .leader-note--bottom {
        left: 10px;
        bottom: 10px;
    }

    .leader-note--reply {
        right: 10px;
        bottom: 10px;
    }

    .referral-copy h2,
    .referral-benefits h3,
    .referral-prereq h3,
    .referral-steps h2 {
        font-size: 34px;
    }

    .referral-feature {
        grid-template-columns: 1fr;
    }

    .referral-feature__icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .response-card h3 {
        font-size: 1.9rem;
    }

    .response-list li {
        align-items: flex-start;
    }

    .home-closing-cta {
        gap: 18px;
        padding: 28px 20px;
        border-radius: 24px;
    }

    .home-closing-cta__badge {
        font-size: 0.78rem;
        gap: 10px;
        padding: 10px 14px;
    }

    .home-closing-cta__dot {
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 7px rgba(130, 232, 241, 0.14);
    }

    .home-closing-cta h2 {
        font-size: 2.15rem;
    }

    .home-closing-cta__actions {
        width: 100%;
        gap: 16px;
    }

    .home-closing-cta__primary {
        width: 100%;
        justify-content: center;
    }

    .home-closing-cta__link {
        font-size: 1.15rem;
    }

    .contact-whatsapp h2,
    .contact-bottom-cta h2,
    .solution-capability-intro h2,
    .industry-fit-intro h2,
    .usecase-scenarios__intro h2 {
        font-size: 2rem;
    }

    .contact-sections-shell {
        padding: 14px;
        border-radius: 22px;
    }

    .contact-whatsapp p {
        font-size: 16px;
    }

    .solution-capability-card {
        padding: 22px;
        border-radius: 24px;
    }

    .solution-capability-card__icon {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
        border-radius: 20px;
        font-size: 30px;
    }

    .solution-capability-card h3 {
        font-size: 1.7rem;
    }

    .solution-capability-card p {
        font-size: 0.98rem;
    }

    .industry-fit-grid {
        grid-template-columns: 1fr;
    }

    .industry-fit-card {
        grid-template-columns: 1fr;
        padding: 22px 18px 0;
    }

    .industry-fit-card__copy {
        padding-bottom: 10px;
    }

    .industry-fit-card img {
        width: 56%;
        max-width: 180px;
    }

    .industry-fit-card h3,
    .industry-fit-cta h3 {
        font-size: 1.7rem;
    }

    .industry-fit-cta {
        text-align: left;
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
    }

    .usecase-scenario-card__media {
        padding: 14px 14px 0;
    }

    .usecase-scenario-card__copy {
        padding: 16px 16px 20px;
    }

    .usecase-scenario-card__copy h3 {
        font-size: 1.7rem;
    }

    .usecase-scenario-card__copy p {
        font-size: 0.98rem;
    }

    .contact-bottom-cta__points {
        display: grid;
        justify-items: center;
        gap: 12px;
    }

    .video-modal__dialog {
        width: min(100% - 20px, 920px);
        margin-top: 72px;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .contact-video-card__thumb {
        aspect-ratio: 1.2 / 1;
    }

    .contact-video-card__link {
        max-width: 100%;
    }

    .contact-video-card__play {
        width: 58px;
        height: 58px;
        font-size: 30px;
        border-radius: 18px;
    }

    .contact-video-card h3 {
        font-size: 18px;
    }

    .video-modal__dialog {
        width: min(100% - 12px, 920px);
        margin-top: 88px;
        border-radius: 14px;
    }

    .video-modal__close {
        top: 8px;
        right: 8px;
        width: 38px;
        height: 38px;
    }
}

/* Brand cleanup and consistency overrides */

h1,
h2,
h3,
h4,
.brand-mark__text,
.faq-question,
.nav__links,
.btn,
.eyebrow {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-copy,
.page-hero__grid > .reveal:first-child,
.section-intro,
.interactive-header,
.solution-capability-intro,
.response-problem__intro,
.industry-fit-intro,
.usecase-scenarios__intro,
.contact-videos__intro,
.faq-section__intro,
.footer-showcase__copy,
.split-copy,
.leader-copy,
.leader-content,
.home-closing-cta {
    display: grid;
    gap: 14px;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.section-intro .eyebrow,
.interactive-header .eyebrow,
.solution-capability-intro .eyebrow,
.response-problem__intro .eyebrow,
.industry-fit-intro .eyebrow,
.usecase-scenarios__intro .eyebrow,
.contact-videos__intro .eyebrow,
.faq-section__intro .eyebrow,
.footer-showcase__eyebrow,
.split-copy .eyebrow,
.leader-copy .eyebrow,
.showcase-copy-card .eyebrow,
.rag-home-copy .eyebrow {
    width: fit-content;
    justify-self: start;
    align-self: start;
}

h1,
h2,
h3,
h4,
.hero-copy h1,
.page-hero h1,
.booking-hero__intro h1,
.section-intro h2,
.band-copy h2,
.cta-shell h2,
.interactive-header h2,
.sales-compare-head h2,
.flow-section h2,
.leader-copy h2,
.leader-content h3,
.solution-capability-intro h2,
.response-problem__intro h2,
.industry-fit-intro h2,
.usecase-scenarios__intro h2,
.home-closing-cta h2,
.contact-whatsapp h2,
.contact-bottom-cta h2,
.footer-showcase__copy h2,
.faq-section__intro h2 {
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.05em;
}

p,
li,
.lede,
.selector-desc,
.faq-answer p,
.hero-copy p,
.page-hero p,
.section-intro p,
.solution-capability-intro p,
.response-problem__copy p,
.response-card p,
.industry-fit-intro p,
.usecase-scenarios__intro p,
.contact-whatsapp p,
.contact-bottom-cta p,
.footer-showcase__copy p {
    color: var(--muted);
}

.eyebrow,
.footer-showcase__eyebrow,
.response-card__eyebrow,
.solution-capability-intro .eyebrow,
.industry-fit-intro .eyebrow,
.usecase-scenarios__intro .eyebrow,
.faq-section__intro .eyebrow,
.contact-videos__intro .eyebrow,
.contact-whatsapp__eyebrow,
.home-closing-cta__pill,
.leader-note strong,
.info-pill i,
.step-card__count {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow,
.home-closing-cta__pill,
.contact-videos__intro .eyebrow,
.contact-whatsapp__eyebrow {
    border-color: var(--border);
    background-color: rgba(255, 255, 255, 0.96);
}

.btn-secondary:hover,
.btn-primary:hover {
    box-shadow: 0 16px 34px rgba(13, 13, 13, 0.14);
}

.booking-hero__intro h1 {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-style: normal;
}

.nav,
.interactive-shell,
.comp-card,
.sales-flow-card,
.leader-shell,
.leader-story,
.leader-story--reverse,
.leader-loop,
.leader-badge,
.leader-note,
.solution-capability-shell,
.solution-capability-card,
.response-card,
.industry-fit-card,
.usecase-scenario-card,
.faq-card,
.price-card,
.contact-sections-shell,
.contact-videos,
.contact-video-card,
.contact-bottom-cta,
.visual-card,
.feature-card,
.about-card,
.resource-card,
.step-card,
.story-card,
.stat-card,
.panel-card,
.timeline-card {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--border);
  
}

.leader-badge,
.benefit-card,
.referral-feature,
.ref-step,
.use-card,
.footer-showcase__logos span,
.mega-footer__grid > div,
.contact-qr-card,
.contact-video-card__watch,
.leader-note--bottom .leader-reply {
    background: #ffffff !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
    box-shadow: var(--shadow) !important;
}

.leader-badge span,
.leader-badge small,
.leader-note p,
.referral-feature p,
.benefit-card p,
.ref-step p,
.use-card p,
.mega-footer__grid a {
    color: var(--muted) !important;
}

.solution-capability-card__icon,
.industry-fit-card__icon,
.contact-video-card__play,
.selector-item.active,
.growth-pill--accent,
 .response-list--autopilot i,
.price-card--featured .eyebrow,
.flow-line-fill,
.slider-dot {
    background: var(--brand-gradient);
    color: #ffffff;
}

.selector-item.active,
.faq-item.is-open {
    border-color: rgba(13, 13, 13, 0.2);
}

.problem h3,
.solution h3,
.interactive-header h2 span,
.sales-flow-icon--pink,
.sales-flow-icon--red,
.response-list--problem i,
.leader-copy .eyebrow + h2 span {
    color: var(--text);
}

.growth-pill,
.chaos-pill,
.response-list li,
.contact-video-card__watch,
.leader-note,
.info-pill,
.tool-badge,
.list-chip {
    background: #ffffff;
    color: var(--text);
    border-color: var(--border);
}

.solution-capability-card,
.response-card--problem,
.response-card--autopilot,
.industry-fit-card,
.industry-fit-cta,
.contact-bottom-cta,
.home-closing-cta,
.contact-video-card__thumb,
.leader-loop__visual {
    background-image: none;
}

.industry-fit-cta,
.contact-whatsapp,
.footer-showcase {
    background: #0d0d0d;
    color: #ffffff;
}

.footer-showcase__logos span,
.mega-footer__grid > div {
    background: transparent !important;
    box-shadow: none !important;
}

.mega-footer__grid > div h4,
.mega-footer__contact,
.mega-footer__socials a,
.footer-showcase__copy h2 {
    color: #ffffff !important;
}

.industry-fit-cta p,
.contact-whatsapp p,
.footer-showcase__copy p {
    color: rgba(255, 255, 255, 0.78);
}

.industry-fit-cta .btn,
.footer-showcase .btn-primary,
.contact-bottom-cta .btn-primary,
.home-closing-cta .btn-primary {
    background: var(--brand-gradient);
    color: #ffffff;
}

.contact-whatsapp__orb,
.contact-whatsapp__ring,
.leader-loop__graphic,
.leader-badge::after,
.tool-logo,
.chart-bar,
.insight-chip {
    filter: grayscale(1);
}

.mega-footer,
.site-footer-shell {
    background: #0d0d0d;
}

.mega-footer__legal span:last-child,
.mega-footer__contact a,
.footer-showcase__copy h2 a {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: #f8f8f899;
}

.price-card--featured {
    background: var(--brand-gradient) !important;
    color: #ffffff !important;
}

.price-card--featured h3,
.price-card--featured .price-value,
.price-card--featured .list-plain li,
.price-card--featured p {
    color: #ffffff !important;
}

.price-card--featured .price-value span {
    color: rgba(255, 255, 255, 0.82) !important;
}

.price-card--featured .btn-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.faq-item {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, margin 0.2s ease, padding 0.2s ease;
}

.faq-item.is-open {
    margin: 12px 0;
    padding: 0 20px;
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.faq-item.is-open .faq-question {
    background: transparent;
    color: var(--text);
}

.faq-item.is-open + .faq-item {
    border-top-color: transparent;
}

.faq-item.is-open .faq-question i {
    color: var(--text);
}

@media (max-width: 767px) {
    .section,
    .page-hero,
    .section-tight {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    section.section.indus {
    padding-top: 34px;
}
.contact-whatsapp__copy {
    display: grid;
    gap: 16px;
    padding: 20px 12px;
    align-content: center;
}

    .hero-copy h1,
    .page-hero h1,
    .booking-hero__intro h1,
    .section-intro h2,
    .band-copy h2,
    .cta-shell h2,
    .interactive-header h2,
    .sales-compare-head h2,
    .flow-section h2,
    .leader-copy h2,
    .solution-capability-intro h2,
    .response-problem__intro h2,
    .industry-fit-intro h2,
    .usecase-scenarios__intro h2,
    .home-closing-cta h2,
    .contact-whatsapp h2,
    .contact-bottom-cta h2,
    .faq-section__intro h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.02;
    }

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

    .brand-mark--footer .brand-mark__text {
        font-size: clamp(42px, 16vw, 78px);
        white-space: normal;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .nav {
        width: min(var(--container), calc(100% - 18px));
        padding: 14px 16px;
    }
}

/* Footer refresh: shared across all pages */
.site-footer-shell {
    margin-top: 64px;
    background: #12110e !important;
    color: #f5f1e8;
}

.site-footer-shell > .container-main {
    max-width: 100%;
    padding-inline: 0;
}

.site-footer-shell .footer-showcase {
    background: #1f4729 !important;
    color: #f5f1e8;
    border-radius: 36px;
    padding: 56px 48px 42px;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
    align-items: center;
}

.site-footer-shell .footer-showcase__copy {
    gap: 18px;
    max-width: 430px;
}

.site-footer-shell .footer-showcase__eyebrow {
    color: rgba(245, 241, 232, 0.88) !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.site-footer-shell .footer-showcase__copy h2 {
    color: #f5f1e8 !important;
    max-width: 420px;
    font-size: clamp(18px, 2.2vw, 28px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.site-footer-shell .footer-showcase__promise {
    display: grid;
    gap: 8px;
    max-width: 420px;
}

.site-footer-shell .footer-showcase__promise span,
.site-footer-shell .footer-showcase__promise strong {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.site-footer-shell .footer-showcase__promise span {
    color: rgba(245, 241, 232, 0.78);
    font-weight: 500;
}

.site-footer-shell .footer-showcase__promise strong {
    color: #ffffff;
    font-weight: 800;
    margin-top: 4px;
}

.site-footer-shell .footer-showcase__actions {
    gap: 10px;
    margin-top: 4px;
}

.site-footer-shell .footer-showcase__actions .btn {
    min-height: 0;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: none;
}

.site-footer-shell .footer-showcase__actions .btn-primary {
    background: #d7ff63 !important;
    color: #122514 !important;
    border: 1px solid #d7ff63;
}

.site-footer-shell .footer-showcase__actions .btn-secondary {
    background: transparent !important;
    color: #f5f1e8 !important;
    border: 1px solid rgba(245, 241, 232, 0.38);
}

.site-footer-shell .footer-showcase__media {
    min-height: 360px;
}

.site-footer-shell .footer-showcase__image {
    border-radius: 26px;
    box-shadow: none;
    object-fit: contain;
    background: transparent;
}

.site-footer-shell .footer-showcase__image--main {
    top: 4px;
    left: 10px;
    width: min(48%, 250px);
    height: 300px;
}

.site-footer-shell .footer-showcase__image--alt {
    right: 8px;
    bottom: 4px;
    width: min(54%, 300px);
    height: 280px;
}

.site-footer-shell .footer-showcase__logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    padding-top: 22px;
    color: rgba(245, 241, 232, 0.88);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.site-footer-shell .footer-showcase__logos span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #ffffff !important;
    background: transparent !important;
    color: #ffffff !important;
    text-align: center;
    white-space: nowrap;
    -webkit-text-fill-color: #ffffff;
}

.site-footer-shell .mega-footer {
    background: #12110e !important;
    padding: 46px 48px 22px;
}

.site-footer-shell .mega-footer .container-main {
    max-width: 100%;
    padding-inline: 0;
}

.site-footer-shell .mega-footer__grid {
    gap: 36px;
}

.site-footer-shell .mega-footer__grid > div {
    background: transparent !important;
    box-shadow: none !important;
}

.site-footer-shell .mega-footer__grid h4 {
    color: #f5f1e8 !important;
    font-size: 18px;
    margin-bottom: 18px;
}

.site-footer-shell .mega-footer__grid a {
    color: rgba(245, 241, 232, 0.76) !important;
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.site-footer-shell .mega-footer__grid a:hover {
    color: #d7ff63 !important;
}

.site-footer-shell .mega-footer__contact {
    margin-top: 34px;
    padding: 34px 0;
    border-top: 1px solid rgba(245, 241, 232, 0.16);
    border-bottom: 1px solid rgba(245, 241, 232, 0.16);
    color: #f5f1e8 !important;
    font-size: clamp(30px, 3.1vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.site-footer-shell .mega-footer__contact a {
    color: #d7ff63 !important;
    background: none !important;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.site-footer-shell .mega-footer__socials {
    gap: 16px;
    font-size: 24px;
}

.site-footer-shell .mega-footer__socials a {
    color: #f5f1e8 !important;
}

.site-footer-shell .mega-footer__wordmark {
    margin-top: 26px;
    justify-content: center;
    overflow: visible;
}

.site-footer-shell .brand-mark--footer {
    width: 100%;
}

.site-footer-shell .brand-mark--footer .brand-mark__text {
    color: #ffffff;
    font-size: clamp(110px, 18vw, 260px);
    line-height: 0.92;
    letter-spacing: -0.085em;
    white-space: nowrap;
}

.site-footer-shell .mega-footer__legal {
    margin-top: 18px;
    justify-content: flex-start;
    gap: 14px;
    color: rgba(245, 241, 232, 0.6);
    font-size: 11px;
}

@media (max-width: 1100px) {
    .site-footer-shell .footer-showcase {
        padding: 48px 32px 38px;
        gap: 28px;
    }

    .site-footer-shell .footer-showcase__copy h2 {
        font-size: clamp(18px, 2.2vw, 24px);
    }

    .site-footer-shell .footer-showcase__promise span,
    .site-footer-shell .footer-showcase__promise strong {
        font-size: 16px;
    }

    .site-footer-shell .footer-showcase__image--main {
        width: min(46%, 220px);
        height: 274px;
    }

    .site-footer-shell .footer-showcase__image--alt {
        width: min(54%, 260px);
        height: 250px;
    }

    .site-footer-shell .mega-footer {
        padding: 42px 32px 22px;
    }
}

@media (max-width: 900px) {
    .site-footer-shell .footer-showcase {
        grid-template-columns: 1fr;
        padding: 38px 24px 30px;
        border-radius: 28px;
    }

    .site-footer-shell .footer-showcase__copy {
        max-width: none;
    }

    .site-footer-shell .footer-showcase__media {
        min-height: 320px;
    }

    .site-footer-shell .footer-showcase__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 22px;
        text-align: left;
    }

    .site-footer-shell .footer-showcase__promise {
        max-width: none;
    }

    .site-footer-shell .mega-footer {
        padding: 34px 24px 20px;
    }

    .site-footer-shell .mega-footer__contact {
        flex-direction: column;
        align-items: flex-start;
        font-size: 30px;
        gap: 18px;
    }

    .site-footer-shell .mega-footer__wordmark {
        margin-top: 30px;
    }

    .site-footer-shell .brand-mark--footer .brand-mark__text {
        font-size: clamp(72px, 18vw, 138px);
    }

    .site-footer-shell .mega-footer__legal {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .site-footer-shell {
        margin-top: 48px;
    }

    .site-footer-shell .footer-showcase {
        padding: 32px 18px 26px;
    }

    .site-footer-shell .footer-showcase__copy h2 {
        max-width: 300px;
        font-size: 1.4rem;
    }

    .site-footer-shell .footer-showcase__promise span,
    .site-footer-shell .footer-showcase__promise strong {
        font-size: 15px;
        line-height: 1.45;
    }

    .site-footer-shell .footer-showcase__media {
        min-height: 280px;
    }

    .site-footer-shell .footer-showcase__image--main {
        left: 0;
        top: 0;
        width: min(48%, 160px);
        height: 210px;
    }

    .site-footer-shell .footer-showcase__image--alt {
        right: 0;
        bottom: 0;
        width: min(58%, 190px);
        height: 205px;
    }

    .site-footer-shell .footer-showcase__logos {
        grid-template-columns: 1fr;
        font-size: 16px;
        padding-top: 18px;
    }

    .site-footer-shell .footer-showcase__logos span {
        justify-self: start;
    }

    .site-footer-shell .mega-footer {
        padding: 28px 18px 18px;
    }

    .site-footer-shell .mega-footer__contact {
        font-size: 24px;
        padding: 26px 0;
    }

    .site-footer-shell .mega-footer__socials {
        justify-content: flex-start;
        font-size: 20px;
    }

    .site-footer-shell .brand-mark--footer .brand-mark__text {
        font-size: clamp(58px, 20vw, 92px);
        line-height: 0.96;
    }

    .site-footer-shell .mega-footer__legal {
        gap: 8px 14px;
        font-size: 10px;
    }
}

/* Typography sync: match remaining pages to the homepage hierarchy */
body.page--internal .page-hero h1,
body.page--internal .booking-hero__intro h1,
body.page--internal .section-intro h2,
body.page--internal .solution-capability-intro h2,
body.page--internal .response-problem__intro h2,
body.page--internal .industry-fit-intro h2,
body.page--internal .usecase-scenarios__intro h2,
body.page--internal .contact-whatsapp h2,
body.page--internal .contact-bottom-cta h2,
body.page--internal .faq-section__intro h2 {
    font-size: 42px !important;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

body.page--internal .page-hero p,
body.page--internal .booking-hero__intro p,
body.page--internal .section-intro p,
body.page--internal .solution-capability-intro p,
body.page--internal .response-problem__copy p,
body.page--internal .industry-fit-intro p,
body.page--internal .usecase-scenarios__intro p,
body.page--internal .contact-whatsapp p,
body.page--internal .contact-bottom-cta p,
body.page--internal .faq-answer p,
body.page--internal .faq-section__intro p,
body.page--internal .lede {
    font-size: 16px !important;
    line-height: 1.65;
}

@media (max-width: 767px) {
    body.page--internal .page-hero h1,
    body.page--internal .booking-hero__intro h1,
    body.page--internal .section-intro h2,
    body.page--internal .solution-capability-intro h2,
    body.page--internal .response-problem__intro h2,
    body.page--internal .industry-fit-intro h2,
    body.page--internal .usecase-scenarios__intro h2,
    body.page--internal .contact-whatsapp h2,
    body.page--internal .contact-bottom-cta h2,
    body.page--internal .faq-section__intro h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.02;
    }

    body.page--internal .page-hero p,
    body.page--internal .booking-hero__intro p,
    body.page--internal .section-intro p,
    body.page--internal .solution-capability-intro p,
    body.page--internal .response-problem__copy p,
    body.page--internal .industry-fit-intro p,
    body.page--internal .usecase-scenarios__intro p,
    body.page--internal .contact-whatsapp p,
    body.page--internal .contact-bottom-cta p,
    body.page--internal .faq-answer p,
    body.page--internal .faq-section__intro p,
    body.page--internal .lede {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Spacing and buttons sync: match the homepage rhythm across the site */
.btn {
    min-height: 52px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
}

.hero-actions,
.inline-actions,
.showcase-actions,
.footer-showcase__actions {
    gap: 12px;
}

.hero-actions,
.inline-actions {
    margin-top: 28px;
}

/*
.hero-copy,
.page-hero__grid > .reveal:first-child,
.section-intro,
.interactive-header,
.solution-capability-intro,
.response-problem__intro,
.industry-fit-intro,
.usecase-scenarios__intro,
.contact-videos__intro,
.faq-section__intro,
.footer-showcase__copy,
.split-copy,
.leader-copy,
.leader-content,
.home-closing-cta,
.booking-hero__intro {
    gap: 16px;
}
*/

.section-intro {
    margin-bottom: 36px;
}

.section-intro h2,
.band-copy h2,
.cta-shell h2 {
    margin: 14px 0 12px;
}

.booking-hero__intro {
    margin-bottom: 30px;
}

.interactive-header__meta,
.sales-compare-head p,
.faq-answer p {
    line-height: 1.65;
}

@media (max-width: 767px) {
    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }

    .hero-actions,
    .inline-actions,
    .showcase-actions,
    .footer-showcase__actions {
        gap: 10px;
    }

/*
    .hero-copy,
    .page-hero__grid > .reveal:first-child,
    .section-intro,
    .interactive-header,
    .solution-capability-intro,
    .response-problem__intro,
    .industry-fit-intro,
    .usecase-scenarios__intro,
    .contact-videos__intro,
    .faq-section__intro,
    .footer-showcase__copy,
    .split-copy,
    .leader-copy,
    .leader-content,
    .home-closing-cta,
    .booking-hero__intro {
        gap: 14px;
    }
*/

    .section-intro {
        margin-bottom: 28px;
    }

    .hero-actions,
    .inline-actions {
        margin-top: 22px;
    }

    .booking-hero__intro {
        margin-bottom: 24px;
    }
}

/* Solutions industry cards: replace photos with vector-style icons and cleaner text scale */
.industry-fit-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 150px;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.industry-fit-card__copy {
    padding-bottom: 0;
    padding-right: 16px;
}

.industry-fit-card h3 {
    font-size: 16px !important;
    line-height: 1.5;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.industry-fit-card__icon {
    width: 82px;
    height: 82px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.98));
    border: 1px solid rgba(13, 13, 13, 0.08);
    box-shadow: 0 16px 30px rgba(13, 13, 13, 0.08);
}

.industry-fit-card__icon i {
    font-size: 38px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.industry-fit-card img {
    display: none;
}

.industry-fit-intro p {
    max-width: 820px;
    margin-inline: auto;
}

.industry-fit-cta h3 {
    font-size: 21px;
    line-height: 1.08;
}

@media (max-width: 900px) {
    .industry-fit-card {
        min-height: 136px;
        padding: 20px 18px;
    }

    .industry-fit-card__icon {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .industry-fit-card__icon i {
        font-size: 32px;
    }

    .industry-fit-cta h3 {
        font-size: 19px;
    }
}

@media (max-width: 640px) {
    .industry-fit-card {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .industry-fit-card h3 {
        font-size: 16px !important;
        line-height: 1.45;
    }

    .industry-fit-card__icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .industry-fit-card__icon i {
        font-size: 28px;
    }

    .industry-fit-cta h3 {
        font-size: 18px;
    }
}

/* Remove overlay boxes from most image areas, but keep homepage showcase notes */
.floating-badge {
    display: none !important;
}

.showcase-band .showcase-note {
    display: block !important;
}

@media (max-width: 980px) {
    .usecase-admin-grid {
        grid-template-columns: 1fr;
    }

    .usecase-admin-app__header,
    .usecase-editor__meta {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 720px) {
    .cms-login-card,
    .usecase-admin-app,
    .usecase-detail {
        padding: 22px;
        border-radius: 24px;
    }

    .usecase-editor__canvas {
        min-height: 260px;
        padding: 18px;
        font-size: 17px;
    }

    .usecase-detail h1 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .usecase-detail__summary,
    .usecase-detail__content {
        font-size: 16px;
    }

    .usecase-admin-item__actions {
        flex-direction: column;
    }

    .usecase-admin-item__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(220, 226, 236, 0.95);
    }

    .admin-main {
        padding: 20px;
    }

    .admin-topbar,
    .admin-panel__grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .admin-table-shell {
        overflow-x: auto;
        padding: 18px;
    }

    .admin-table {
        min-width: 760px;
    }

    .howto-library__grid {
        grid-template-columns: 1fr;
    }

    .howto-group-card__head h3 {
        font-size: 17px;
    }

    .howto-group-card__link,
    .howto-group-card__more {
        font-size: 14px;
        padding: 13px 16px;
    }

    .howto-article-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .howto-article-aside {
        position: static;
        gap: 16px;
    }

    .howto-article {
        max-width: 100%;
        gap: 18px;
    }

    .howto-article h1 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .howto-article__content,
    .howto-article__summary {
        font-size: 16px;
    }

    .howto-article__content h2 {
        font-size: 30px;
    }

    .howto-article__content h3 {
        font-size: 22px;
    }
}

/* How to dropdown */
.nav__dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 0;
    margin: -12px 0;
    z-index: 60;
}

.nav__dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.nav__dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    min-width: 240px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 44px rgba(13, 13, 13, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__dropdown-menu a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.nav__dropdown-menu a:hover {
    background: rgba(13, 13, 13, 0.05);
}

.nav__dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav__dropdown:hover .nav__dropdown-toggle i,
.nav__dropdown:focus-within .nav__dropdown-toggle i,
.nav__dropdown.is-open .nav__dropdown-toggle i {
    transform: rotate(180deg);
}

.nav__dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: currentColor;
    transition: transform 0.22s ease;
}

.nav__dropdown:hover .nav__dropdown-toggle::after,
.nav__dropdown:focus-within .nav__dropdown-toggle::after,
.nav__dropdown-toggle.is-active::after {
    transform: scaleX(1);
}

/* Utility tool pages */
.tool-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 22px;
    align-items: start;
}

.tool-panel,
.tool-preview-card,
.tool-copy-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.tool-panel,
.tool-preview-card {
    padding: clamp(24px, 3vw, 34px);
}

.tool-copy-card {
    padding: 24px 22px;
}

.tool-form {
    display: grid;
    gap: 16px;
}

.tool-field {
    display: grid;
    gap: 8px;
}

.tool-field label {
    font-size: 14px;
    font-weight: 700;
}

.tool-field input,
.tool-field textarea,
.tool-field select,
.tool-output {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    color: var(--text);
    font: inherit;
    resize: vertical;
}

.tool-panel__actions,
.tool-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.qr-preview-box {
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
}

.qr-preview-box img {
    width: min(100%, 320px);
    aspect-ratio: 1;
    object-fit: contain;
    padding: 14px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 34px rgba(13, 13, 13, 0.08);
}

.qr-preview-box p,
.tool-copy-card p,
.widget-preview__message {
    font-size: 16px;
    line-height: 1.6;
}

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

.tool-insight {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: 0 14px 28px rgba(13, 13, 13, 0.05);
}

.tool-insight i {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 16px;
    background: var(--brand-gradient);
    color: #fff;
    font-size: 20px;
}

.widget-preview-stage {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(rgba(13, 13, 13, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 13, 13, 0.04) 1px, transparent 1px),
        #fefefe;
    background-size: 58px 58px, 58px 58px, auto;
    border: 1px solid rgba(13, 13, 13, 0.08);
}

.widget-preview-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(13, 13, 13, 0.08);
    color: rgba(13, 13, 13, 0.58);
    font-size: 13px;
    font-weight: 700;
}

.widget-preview-shell {
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    max-width: 320px;
}

.widget-preview-shell[data-position="left"] {
    left: 32px;
    right: auto;
    align-items: flex-start;
}

.widget-preview {
    width: min(100%, 320px);
    overflow: hidden;
    border: 1px solid rgba(13, 13, 13, 0.1);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(13, 13, 13, 0.18);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.widget-preview-shell[data-position="left"] .widget-preview {
    transform-origin: bottom left;
}

.widget-preview-shell:not(.is-open) .widget-preview {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9) translateY(20px);
}

.widget-preview__bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(13, 13, 13, 0.22);
    transition: all 0.3s ease;
}

.widget-preview__bubble:hover {
    transform: scale(1.08);
}

.is-open .widget-preview__bubble {
    background: #0d0d0d;
}

.widget-preview__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    color: #fff;
    background: var(--brand-gradient);
}

.widget-preview__avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 20px;
}

.widget-preview__title {
    font-size: 16px;
    font-weight: 800;
}

.widget-preview__body {
    padding: 16px;
}

.widget-preview__message {
    margin-bottom: 0;
}

.tool-output {
    min-height: 180px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .nav__dropdown {
        width: 100%;
        display: grid;
        padding: 0;
        margin: 0;
    }

    .nav__dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        min-height: 48px;
    }

    .nav__dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 8px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: none;
        box-shadow: none;
        border-radius: 18px;
    }

    .nav__dropdown.is-open .nav__dropdown-menu {
        display: block;
    }

    .nav__dropdown::after {
        display: none;
    }

    .tool-shell {
        grid-template-columns: 1fr;
    }

    .tool-insight-grid {
        grid-template-columns: 1fr;
    }
}

/* Product pages and solution navigation */
.product-jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.product-jump-links .btn {
    min-height: 46px;
    padding: 11px 18px;
    font-size: 13px;
    color: #ffffff !important;
    border-color: transparent !important;
    background: var(--brand-gradient) !important;
    box-shadow: 0 14px 30px rgba(13, 13, 13, 0.16) !important;
}

.rag-trust-shell,
.rag-home-shell,
.channel-rag-shell,
.chatbot-rag-shell,
.calling-rag-shell {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: clamp(28px, 4vw, 44px);
}

.rag-trust-copy,
.rag-home-copy,
.channel-rag-copy,
.chatbot-rag-copy {
    max-width: 900px;
    margin-bottom: 28px;
}

.rag-trust-grid,
.rag-home-grid,
.channel-rag-grid,
.chatbot-rag-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rag-trust-card,
.rag-home-card,
.channel-rag-card,
.chatbot-rag-panel,
.calling-mini-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px 22px;
    box-shadow: 0 16px 30px rgba(13, 13, 13, 0.06);
}

.rag-trust-card__icon,
.rag-home-card__icon,
.channel-rag-card__icon,
.chatbot-rag-panel__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--brand-gradient);
    color: #fff;
    margin-bottom: 16px;
    font-size: 24px;
}

.rag-trust-card h3,
.rag-home-card h3,
.channel-rag-card h3,
.chatbot-rag-panel h3,
.calling-mini-card h3 {
    font-size: 24px;
    line-height: 1.12;
    margin-bottom: 10px;
}

.rag-trust-card p,
.rag-home-card p,
.channel-rag-card p,
.chatbot-rag-panel p,
.calling-mini-card p,
.calling-rag-main p {
    font-size: 16px;
    line-height: 1.65;
}

.rag-home-card,
.channel-rag-card,
.chatbot-rag-panel,
.rag-trust-card {
    min-height: 100%;
}

.calling-rag-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 26px;
    align-items: start;
}

.calling-rag-main .list-plain {
    margin-top: 18px;
}

.calling-rag-main .list-plain li {
    font-size: 16px;
    line-height: 1.65;
}

.calling-rag-visual {
    display: grid;
    gap: 18px;
}

.call-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 26px;
    border-radius: 999px;
    background: #111111;
    color: #43e27a;
    box-shadow: 0 20px 40px rgba(13, 13, 13, 0.14);
}

.call-strip span {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 800;
    line-height: 1.1;
}

.call-strip__actions {
    display: flex;
    gap: 14px;
    flex: 0 0 auto;
}

.call-strip__action,
.phone-action {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
}

.call-strip__action--answer,
.phone-action--accept {
    background: #30c95f;
}

.call-strip__action--end,
.phone-action--decline {
    background: #ef4b4b;
}

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

.calling-mini-card__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
    color: #6f3dff;
    border: 1px solid rgba(111, 61, 255, 0.18);
    font-size: 28px;
}

.phone-mock {
    padding: 10px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,255,0.98));
    border: 1px solid rgba(13,13,13,0.08);
}

.phone-mock__screen {
    min-height: 340px;
    border-radius: 24px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(18, 22, 26, 0.96), rgba(31, 37, 42, 0.88));
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

.phone-mock__avatar {
    position: absolute;
    inset: 20px auto auto 50%;
    transform: translateX(-50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 42%, rgba(255,255,255,0.55) 0 18px, transparent 19px), rgba(255,255,255,0.18);
}

.phone-mock__actions {
    display: flex;
    justify-content: space-between;
    margin-top: 110px;
}

.phone-mock__message {
    background: rgba(248, 244, 255, 0.96);
    color: #111111;
    padding: 16px;
    border-radius: 20px;
}

.phone-mock__message p {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.phone-mock__message span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid rgba(13, 13, 13, 0.12);
    background: #fff;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .calling-rag-shell {
        grid-template-columns: 1fr;
    }

    .calling-rag-grid,
    .rag-trust-grid,
    .rag-home-grid,
    .channel-rag-grid,
    .chatbot-rag-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .product-jump-links {
        gap: 10px;
    }

    .product-jump-links .btn {
        width: 100%;
        justify-content: center;
    }

    .calling-rag-grid,
    .rag-trust-grid,
    .rag-home-grid,
    .channel-rag-grid,
    .chatbot-rag-layout {
        grid-template-columns: 1fr;
    }

    .call-strip {
        border-radius: 28px;
        padding: 16px 18px;
    }

    .call-strip span {
        font-size: 20px;
    }

    .call-strip__action,
    .phone-action {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* --- Mobile Responsiveness Optimization --- */
@media (max-width: 767px) {
    .section {
        padding: 0px 0;
    }

    .section-tight {
        padding: 34px 0;
    }

    .container-main {
        width: calc(100% - 32px);
    }

    .hero {
        padding: 40px 0 40px;
    }

    .page-hero {
        padding: 40px 0 34px;
    }

    .hero-grid,
    .page-hero__grid,
    .split-layout,
    .about-layout,
    .resource-layout,
    .demo-shell,
    .calling-rag-shell {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .hero-copy p,
    .lede,
    .page-hero p,
    .section-intro p {
        font-size: 16px;
    }

    .hero-actions,
    .inline-actions {
        margin-top: 24px;
        gap: 10px;
    }

    .hero-actions .btn,
    .inline-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .mega-footer {
        padding: 48px 0 32px;
    }

    .mega-footer__grid {
        gap: 24px;
    }

    /* Reduce spacing in feature cards */
    .rag-trust-card,
    .rag-home-card,
    .channel-rag-card,
    .chatbot-rag-panel,
    .calling-mini-card {
        padding: 20px 18px;
    }

    /* Adjust pricing cards if any */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Interactive sales grid on home */
    .interactive-sales-grid {
        grid-template-columns: 1fr;
    }

    /* Showcase band rows */
    .showcase-band__row,
    .showcase-band__row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}



.container-main.footer_paiding {
    padding-top: 91px;
}
h1.allyou {
    line-height: 53px;
}
h2.Relate {
    line-height: 53px;
}
h3.Bizreach {
    line-height: 50px;
}
span.gradient-text{
 background: linear-gradient(90deg, #0a623a, #41c860);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
p.thegoal {
    padding: 0px 0px 0px 164px !important;
    margin: 0px;
    width: 86%;
    padding-left: 20%;
    text-align: center;
    line-height: 33px;
}

.showcase-copy-card.helps {
    margin-top: -80px;
}
@media (max-width: 768px) {
  .hero-copy {
    gap: 0px;
    }
p.thegoal {
    padding: 0px 0px 0px 0px !important;
    margin: 0px;
    width: 100%;
    padding-left: 20%;
    text-align: center;
    line-height: 33px;
}
    .interactive-header{
            gap: 0px;
    }
.interactive-header {
    margin-bottom: 17px;
    text-align: center;
}
    section.section.cpadding1 {
    padding-top: 32px;
}
.showcase-badge {
    width: 50%;
}
    
    
    
.showcase-band__badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-content: center;
    align-items: stretch;
  }

  .showcase-badge {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .showcase-badge img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
.showcase-copy-card.helps {
    margin-top: -3px;
}
    .referral-visual {
        min-height: 0px;
    }
    section.section-tight.why {
    padding-top: 0px;
}
    section.section-tight.faq {
    padding-bottom: 0px;
}
    .container-main.footer_paiding {
    padding-top: 43px;
}
        .site-footer-shell .footer-showcase__logos {
        grid-template-columns: 1fr;
        font-size: 16px;
        padding-top: 18px;
        display: block;
    }
    

.site-footer-shell .footer-showcase__logos span {
   
    margin: 3px;
}
.brand-mark__stack {
    display: grid;
    min-width: 0;
    gap: 0;
    margin-left: -19px;
}
span.brand-mark__text.main-logo {
    padding-left: 12px;
}
h2.the {
    line-height: 55px !important;
}
section.section-tight.peight {
    padding-top: 0px;
}
    h3.Bizreach {
    line-height: 41px;
}
section.section.usecase {
    padding-top: 14px;
}
    section.section.plans {
    padding-top: 17px;
}
    h1.in {
    line-height: 47px !important;
}
    .howto-library {
    display: grid;
    gap: 5px !important;
}
    
    
    
    .Powered_by {
    font-size: 34px !important;
    font-weight: 800;
    line-height: 1.4;
    color: #000;
    /* max-width: 365px; */
    padding: 0px !important;
    margin: 0px;
}
    .showcase-band__intro {
    display: grid;
    gap: 14px;
    max-width: 460px;
    margin-top: 6px;
}
    
.showcase-badge {
    width: 158px !important;
    height: 110px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
    .showcase-badge img {
    max-width: 100%;
    height: auto;
}
}

/* Right side full section */
.showcase-band__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

/* Text ko full width pe upar lane ke liye */
.Powered__by {
  width: 100%;
  margin-bottom: 20px;
}

/* Heading styling */
.Powered_by {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    color: #000;
    /* max-width: 365px; */
    padding: 0px !important;
    margin: 0px;
}
/* Logos ka design */
.showcase-badge {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Logo image */
.showcase-badge img {
  max-width: 70%;
  height: auto;
}

.contact-bottom-cta.reveal.ddemo.is-visible {
    /* display: grid; */
    /* justify-items: center; */
    gap: 24px;
    padding: clamp(38px, 5vw, 72px);
    border: 1px solid rgba(215, 223, 238, 0.88);
    border-radius: 42px;
    background: white;
    box-shadow: 0 30px 80px rgba(71, 96, 140, 0.12);
    text-align: center;
}
/* Password Toggle Styles */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 45px !important;
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: var(--admin-muted);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 10;
}

.password-toggle-icon:hover {
    color: var(--admin-accent);
}

/* Admin Dropdown Styles */
.admin-topbar__actions {
    position: relative;
    user-select: none;
}

.admin-dropdown {
    position: relative;
}

.admin-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--admin-border);
    border-radius: var(--radius-md);
    box-shadow: var(--admin-shadow);
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
    animation: slideDown 0.2s ease-out;
}

.admin-dropdown.is-open .admin-dropdown__menu {
    display: flex;
}

.admin-dropdown__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--admin-text);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-dropdown__item:hover {
    background: var(--admin-accent-glow);
    color: var(--admin-accent);
}

.admin-dropdown__item i {
    font-size: 1.1rem;
}

.admin-dropdown__divider {
    height: 1px;
    background: var(--admin-border);
    margin: 5px 0;
}

/* Professional Admin Editor Styles */
.admin-editor-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.editor-main-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sticky-sidebar {
    position: sticky;
    top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-card {
    background: #ffffff;
    border: 1px solid var(--admin-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--admin-shadow);
}

.admin-card h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 800;
    color: var(--admin-text);
}

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

.form-group label span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--admin-muted);
}

.form-group input[type="text"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--admin-border);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--admin-text);
    transition: all 0.2s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--admin-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--admin-accent-glow);
}

/* Dropzone UI */
.media-dropzone {
    border: 2px dashed var(--admin-border);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.media-dropzone:hover {
    border-color: var(--admin-accent);
    background: var(--admin-accent-glow);
}

.media-dropzone i {
    font-size: 32px;
    color: var(--admin-accent);
    margin-bottom: 12px;
}

.media-dropzone-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--admin-text);
}

.media-dropzone-hint {
    font-size: 11px;
    color: var(--admin-muted);
    margin-top: 4px;
}

.image-preview-premium {
    margin-top: 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.image-preview-premium img {
    width: 100%;
    display: block;
}

.image-preview-premium__remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

/* Rich Text Toolbar Premium */
.editor-toolbar-premium {
    background: #ffffff;
    border: 1px solid var(--admin-border);
    border-radius: 16px 16px 0 0;
    padding: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.editor-toolbar-premium .btn-tool {
    padding: 8px 12px;
    border-radius: 10px;
    background: transparent;
    border: none;
    color: var(--admin-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.editor-toolbar-premium .btn-tool:hover {
    background: var(--admin-accent-glow);
    color: var(--admin-accent);
}

.usecase-editor__canvas {
    border: 1px solid var(--admin-border) !important;
    border-top: none !important;
    border-radius: 0 0 16px 16px !important;
    padding: 24px !important;
    min-height: 400px !important;
    background: #ffffff !important;
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .admin-editor-grid {
        grid-template-columns: 1fr;
    }
    .sticky-sidebar {
        position: static;
    }
}
