/* =========================================================
   CODECFACTORY — REAL ESTATE / PREMIUM INDUSTRY PAGE
   Clean light editorial + product UI direction
   Bootstrap 5 compatible
========================================================= */

.cf-re {
    --re-ink: #0f172a;
    --re-text: #334155;
    --re-muted: #64748b;
    --re-line: #e2e8f0;
    --re-bg: #f1f4f6;
    --re-white: #ffffff;
    --re-indigo: #6366f1;
    --re-purple: #d946ef;
    --re-cyan: #06b6d4;
    --re-green: #16a34a;
    --re-soft-indigo: #eef2ff;
    --re-soft-cyan: #ecfeff;
    --re-soft-purple: #fdf4ff;

    background: var(--re-bg);
    color: var(--re-ink);
    overflow: hidden;
    font-family: "Inter Tight", sans-serif;
}

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

.cf-re h1,
.cf-re h2,
.cf-re h3,
.cf-re h4,
.cf-re strong,
.cf-re .re-display {
    font-family: "Sora", sans-serif;
}

.cf-re a { text-decoration: none; }

.re-wrap {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

.re-section { padding: 118px 0; }

.re-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--re-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.re-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--re-indigo), var(--re-purple));
}

.re-gradient {
    background: linear-gradient(100deg, var(--re-indigo), var(--re-purple) 65%, var(--re-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.re-title {
    margin: 18px 0 20px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -.055em;
    font-weight: 500;
}

.re-lead {
    max-width: 690px;
    color: var(--re-muted);
    font-size: 18px;
    line-height: 1.8;
}

.re-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 13px;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: .25s ease;
}

.re-btn-primary {
    color: #fff;
    background: var(--re-ink);
    box-shadow: 0 14px 30px rgba(15,23,42,.12);
}

.re-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(15,23,42,.17);
}

.re-btn-outline {
    color: var(--re-ink);
    border: 1px solid var(--re-line);
    background: #fff;
}

.re-btn-outline:hover {
    color: var(--re-indigo);
    border-color: rgba(99,102,241,.35);
}

/* =========================================================
   HERO — asymmetric editorial layout
========================================================= */

.re-hero {
    position: relative;
    padding: 200px 0 105px;
    background:
        radial-gradient(circle at 9% 8%, rgba(99,102,241,.12), transparent 24%),
        radial-gradient(circle at 91% 18%, rgba(217,70,239,.09), transparent 24%),
        #fff;
}

.re-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background-image:
        linear-gradient(rgba(15,23,42,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.re-hero-grid {
    position: relative;
    z-index: 2;
}

.re-hero-copy {
    padding: 30px 0 0;
}

.re-hero h1 {
    max-width: 800px;
    margin: 20px 0 24px;
    font-size: 50px;
    line-height: .99;
    letter-spacing: -.065em;
    font-weight: 500;
}

.re-hero .re-lead { max-width: 620px; }

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

.re-proof {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 26px;
    color: var(--re-muted);
    font-size: 12px;
}

.re-proof i {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #ecfdf3;
    color: var(--re-green);
}

/* Product visual */
.re-product-stage {
    position: relative;
    min-height: 610px;
}

.re-orbit {
    position: absolute;
    width: 530px;
    height: 530px;
    top: 10px;
    right: -65px;
    border: 1px solid rgba(99,102,241,.12);
    border-radius: 50%;
}

.re-orbit::before,
.re-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.re-orbit::before {
    inset: 65px;
    border: 1px dashed rgba(99,102,241,.16);
}

.re-orbit::after {
    inset: 145px;
    border: 1px solid rgba(6,182,212,.12);
}

.re-console {
    position: absolute;
    z-index: 3;
    top: 55px;
    right: 0;
    width: min(100%, 540px);
    border: 1px solid rgba(15,23,42,.09);
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 40px 90px rgba(15,23,42,.13);
    overflow: hidden;
}

.re-console-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 19px;
    border-bottom: 1px solid var(--re-line);
}

.re-console-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font: 600 11px "Sora", sans-serif;
}

.re-console-brand span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--re-indigo), var(--re-purple));
}

.re-console-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 50px;
    background: #ecfdf3;
    color: #15803d;
    font: 700 9px "Sora", sans-serif;
}

.re-console-live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
}

.re-console-body {
    padding: 20px;
    background: #f8fafc;
}

.re-console-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 17px;
}

.re-console-top small {
    color: var(--re-muted);
    font-size: 10px;
}

.re-console-top strong {
    display: block;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 600;
}

.re-filter {
    padding: 7px 10px;
    border: 1px solid var(--re-line);
    border-radius: 9px;
    background: #fff;
    color: var(--re-muted);
    font-size: 9px;
}

.re-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.re-stat {
    min-height: 78px;
    padding: 13px;
    border: 1px solid var(--re-line);
    border-radius: 14px;
    background: #fff;
}

.re-stat small {
    display: block;
    margin-bottom: 7px;
    color: var(--re-muted);
    font-size: 9px;
}

.re-stat strong {
    font-size: 18px;
    font-weight: 600;
}

.re-stat em {
    display: block;
    margin-top: 5px;
    color: #16a34a;
    font-size: 8px;
    font-style: normal;
}

.re-funnel {
    margin-top: 10px;
    padding: 17px;
    border: 1px solid var(--re-line);
    border-radius: 16px;
    background: #fff;
}

.re-funnel-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 10px;
}

.re-funnel-head span:last-child { color: var(--re-muted); }

.re-funnel-row {
    display: grid;
    grid-template-columns: 88px 1fr 38px;
    align-items: center;
    gap: 10px;
    margin-top: 9px;
    color: var(--re-muted);
    font-size: 9px;
}

.re-bar {
    height: 7px;
    overflow: hidden;
    border-radius: 50px;
    background: #eef2f7;
}

.re-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--re-indigo), var(--re-purple));
}

.re-float {
    position: absolute;
    z-index: 5;
    padding: 13px 15px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 45px rgba(15,23,42,.12);
}

.re-float small {
    display: block;
    margin-bottom: 4px;
    color: var(--re-muted);
    font-size: 8px;
    letter-spacing: .08em;
}

.re-float strong {
    font-size: 12px;
    font-weight: 600;
}

.re-float-a { top: 15px; left: 12px; }
.re-float-b { right: -8px; bottom: 86px; }
.re-float-c { left: 0; bottom: 26px; }

.re-dot-field {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 150px;
    left: 15px;
    bottom: 45px;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 11px 11px;
}

/* =========================================================
   TRUST / NUMBERS
========================================================= */

.re-trust {
    position: relative;
    z-index: 3;
    border-top: 1px solid var(--re-line);
    border-bottom: 1px solid var(--re-line);
    background: #fff;
}

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

.re-trust-item {
    min-height: 125px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 30px;
    border-right: 1px solid var(--re-line);
}

.re-trust-item:last-child { border-right: 0; }

.re-trust-item strong {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -.05em;
}

.re-trust-item span {
    color: var(--re-muted);
    font-size: 18px;
    line-height: 1.5;
}

/* =========================================================
   THE PROBLEM — editorial split
========================================================= */

.re-problem {
    background: var(--re-bg);
}

.re-problem-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 100px;
    align-items: start;
}

.re-problem-sticky {
    position: sticky;
    top: 120px;
}

.re-problem-sticky h2,
.re-section-heading h2 {
    margin: 16px 0 20px;
    font-size: 50px;
    line-height: 1.06;
    letter-spacing: -.05em;
    font-weight: 500;
}

.re-problem-sticky p,
.re-section-heading p {
    color: var(--re-muted);
    font-size: 16px;
    line-height: 1.8;
}

.re-problem-list {
    border-top: 1px solid var(--re-line);
}

.re-problem-row {
    display: grid;
    grid-template-columns: 58px 1fr 24px;
    gap: 20px;
    align-items: center;
    min-height: 130px;
    border-bottom: 1px solid var(--re-line);
}

.re-problem-no {
    color: var(--re-muted);
    font: 600 10px "Sora", sans-serif;
}

.re-problem-row h3 {
    margin: 0 0 7px;
    font-size: 18px;
    font-weight: 600;
}

.re-problem-row p {
    margin: 0;
    color: var(--re-muted);
    font-size: 13px;
    line-height: 1.65;
}

.re-problem-row > i {
    color: #94a3b8;
    font-size: 13px;
}

/* =========================================================
   SYSTEM FLOW — unique horizontal architecture
========================================================= */

.re-system {
    background: #fff;
}

.re-section-heading.center {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.re-system-board {
    position: relative;
    padding: 42px;
    border: 1px solid var(--re-line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 0, rgba(217,70,239,.08), transparent 30%),
        radial-gradient(circle at 0 100%, rgba(99,102,241,.08), transparent 32%),
        #f8fafc;
}

.re-system-track {
    position: absolute;
    top: 106px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, #c7d2fe, #d8b4fe, #a5f3fc);
}

.re-system-nodes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.re-system-node {
    position: relative;
    z-index: 2;
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--re-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.re-node-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 26px;
    border-radius: 14px;
    color: var(--re-indigo);
    background: var(--re-soft-indigo);
    font-size: 18px;
}

.re-system-node:nth-child(2) .re-node-icon { color: #0891b2; background: var(--re-soft-cyan); }
.re-system-node:nth-child(3) .re-node-icon { color: #9333ea; background: var(--re-soft-purple); }
.re-system-node:nth-child(4) .re-node-icon { color: #db2777; background: #fdf2f8; }
.re-system-node:nth-child(5) .re-node-icon { color: #15803d; background: #f0fdf4; }

.re-system-node h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.re-system-node p {
    margin: 0;
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.7;
}

.re-system-node small {
    display: block;
    margin-top: 20px;
    color: #94a3b8;
    font: 600 9px "Sora", sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* =========================================================
   SERVICES — editorial 2x2 + one feature
========================================================= */

.re-services { background: var(--re-bg); }

.re-services-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.re-services-head .re-section-heading { max-width: 720px; }

.re-service-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    grid-template-rows: repeat(2, minmax(235px, auto));
    gap: 16px;
}

.re-service {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid var(--re-line);
    border-radius: 24px;
    background: #fff;
    transition: .25s ease;
}

.re-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(15,23,42,.08);
}

.re-service-feature {
    grid-row: span 2;
    padding: 40px;
    background:
        radial-gradient(circle at 90% 15%, rgba(99,102,241,.15), transparent 35%),
        #fff;
}

.re-service-number {
    color: #94a3b8;
    font: 600 10px "Sora", sans-serif;
    letter-spacing: .1em;
}

.re-service-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 20px 0 25px;
    border-radius: 15px;
    color: var(--re-indigo);
    background: var(--re-soft-indigo);
}

.re-service h3 {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -.025em;
}

.re-service p {
    max-width: 500px;
    margin: 0;
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.75;
}

.re-service-feature .re-ui-list {
    margin-top: 38px;
}

.re-ui-list {
    display: grid;
    gap: 9px;
}

.re-ui-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid #edf1f5;
    color: var(--re-muted);
    font-size: 14px;
}

.re-ui-line strong {
    color: var(--re-ink);
    font-size: 15px;
    font-weight: 600;
}

.re-ui-line:last-child { border-bottom: 0; }

/* =========================================================
   LEAD JOURNEY — large numbered editorial
========================================================= */

.re-journey { background: #fff; }

.re-journey-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 100px;
}

.re-journey-intro {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.re-journey-intro h2 {
    margin: 16px 0;
    font-size: 50px;
    line-height: 1.06;
    letter-spacing: -.05em;
    font-weight: 500;
}

.re-journey-intro p {
    color: var(--re-muted);
    font-size: 15px;
    line-height: 1.8;
}

.re-journey-steps { border-top: 1px solid var(--re-line); }

.re-journey-step {
    display: grid;
    grid-template-columns: 85px 1fr 50px;
    align-items: center;
    gap: 20px;
    min-height: 132px;
    border-bottom: 1px solid var(--re-line);
}

.re-journey-step > strong {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -.06em;
    color: #cbd5e1;
}

.re-journey-step h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
}

.re-journey-step p {
    margin: 0;
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.65;
}

.re-journey-step > i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--re-indigo);
    background: var(--re-soft-indigo);
}

/* =========================================================
   AI — chat + workflow visual
========================================================= */

.re-ai { background: var(--re-bg); }

.re-ai-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border: 1px solid var(--re-line);
    border-radius: 30px;
    background: #fff;
}

.re-ai-copy {
    padding: 62px 55px;
}

.re-ai-copy h2 {
    margin: 16px 0;
    font-size: 50px;
    line-height: 1.06;
    letter-spacing: -.05em;
    font-weight: 500;
}

.re-ai-copy p {
    color: var(--re-muted);
    font-size: 15px;
    line-height: 1.8;
}

.re-ai-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.re-ai-point {
    display: flex;
    gap: 11px;
    color: var(--re-text);
    font-size: 15px;
}

.re-ai-point i { color: var(--re-indigo); }

.re-ai-screen {
    position: relative;
    padding: 35px;
    background:
        radial-gradient(circle at 75% 20%, rgba(99,102,241,.13), transparent 35%),
        #f8fafc;
    border-left: 1px solid var(--re-line);
}

.re-ai-window {
    max-width: 520px;
    margin: auto;
    padding: 17px;
    border: 1px solid var(--re-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 25px 55px rgba(15,23,42,.08);
}

.re-ai-window-top {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 13px;
    border-bottom: 1px solid #edf1f5;
    font: 600 10px "Sora", sans-serif;
}

.re-ai-avatar {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--re-indigo), var(--re-purple));
}

.re-chat {
    display: grid;
    gap: 10px;
    padding: 18px 0 14px;
}

.re-bubble {
    max-width: 82%;
    padding: 11px 13px;
    border-radius: 13px;
    color: var(--re-text);
    background: #f1f5f9;
    font-size: 10px;
    line-height: 1.6;
}

.re-bubble.out {
    margin-left: auto;
    color: #4338ca;
    background: #eef2ff;
}

.re-ai-result {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 7px;
    padding-top: 12px;
    border-top: 1px solid #edf1f5;
}

.re-ai-result div {
    padding: 10px;
    border-radius: 11px;
    background: #f8fafc;
}

.re-ai-result small {
    display: block;
    margin-bottom: 5px;
    color: var(--re-muted);
    font-size: 12px;
}

.re-ai-result strong {
    font-size: 14px;
    font-weight: 600;
}

/* =========================================================
   BUSINESS TYPES
========================================================= */

.re-audience { background: #fff; }

.re-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--re-line);
    border-bottom: 1px solid var(--re-line);
}

.re-audience {
    min-height: 290px;
    padding: 30px;
    border-right: 1px solid var(--re-line);
}

.re-audience:last-child { border-right: 0; }

.re-audience > span {
    color: var(--re-muted);
    font: 600 9px "Sora", sans-serif;
    letter-spacing: .12em;
}

.re-audience h3 {
    margin: 55px 0 12px;
    font-size: 20px;
    font-weight: 600;
}

.re-audience p {
    margin: 0;
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.7;
}

.re-audience ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.re-audience li {
    margin-bottom: 6px;
    color: var(--re-text);
    font-size: 14px;
}

/* =========================================================
   ACQUISITION / INTEGRATIONS
========================================================= */

.re-acquisition { background: var(--re-bg); }

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

.re-acq-panel {
    min-height: 430px;
    padding: 42px;
    border: 1px solid var(--re-line);
    border-radius: 26px;
    background: #fff;
}

.re-acq-panel h3 {
    margin: 15px 0 10px;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -.04em;
}

.re-acq-panel > p {
    max-width: 480px;
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.75;
}

.re-channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 30px;
}

.re-channel {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid #edf1f5;
    border-radius: 12px;
    background: #fbfcfd;
}

.re-channel i {
    color: var(--re-indigo);
    font-size: 22px;
}

.re-channel span {
    font: 600 14px "Sora", sans-serif;
}

.re-integration-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.re-integration-pill {
    padding: 10px 13px;
    border: 1px solid var(--re-line);
    border-radius: 50px;
    background: #fff;
    color: var(--re-text);
    font-size: 14px;
}

/* =========================================================
   WHY CODECFACTORY
========================================================= */

.re-why { background: #fff; }

.re-why-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.re-why-intro h2 {
    margin: 16px 0;
    font-size: 50px;
    line-height: 1.06;
    letter-spacing: -.05em;
    font-weight: 500;
}

.re-why-intro p {
    color: var(--re-muted);
    font-size: 15px;
    line-height: 1.8;
}

.re-why-list { border-top: 1px solid var(--re-line); }

.re-why-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid var(--re-line);
}

.re-why-item > strong {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
}

.re-why-item h3 {
    margin: 0 0 7px;
    font-size: 18px;
    font-weight: 600;
} 

.re-why-item p {
    margin: 0;
    max-width: 650px;  
    color: var(--re-muted);
    font-size: 15px;
    line-height: 1.7;
}


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

.re-faq { background: var(--re-bg); }

.re-faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.re-faq-title h2 {
    margin: 16px 0;
    font-size: 50px;
    line-height: 1.06;
    letter-spacing: -.05em;
    font-weight: 500;
}

.re-faq-title p {
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.8;
}

.re-faq .accordion-item {
    margin-bottom: 9px;
    overflow: hidden;
    border: 1px solid var(--re-line);
    border-radius: 15px !important;
    background: #fff;
}

.re-faq .accordion-button {
    padding: 21px 22px;
    color: var(--re-ink);
    background: #fff;
    box-shadow: none;
    font: 600 16px "Sora", sans-serif;
}

.re-faq .accordion-button:not(.collapsed) {
    color: var(--re-indigo);
    background: #fafbff;
}

.re-faq .accordion-body {
    padding: 0 22px 21px;
    color: var(--re-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   FINAL CTA
========================================================= */

.re-cta {
    padding: 115px 0 130px;
    background: #fff;
}

.re-cta-box {
    position: relative;
    overflow: hidden;
    padding: 75px 45px;
    border: 1px solid var(--re-line);
    border-radius: 32px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0, rgba(99,102,241,.12), transparent 38%),
        #f8fafc;
}

.re-cta-box::before,
.re-cta-box::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(99,102,241,.08);
    border-radius: 50%;
    pointer-events: none;
}

.re-cta-box::before {
    width: 500px;
    height: 500px;
    top: -330px;
    left: 50%;
    transform: translateX(-50%);
}

.re-cta-box::after {
    width: 700px;
    height: 700px;
    top: -430px;
    left: 50%;
    transform: translateX(-50%);
}

.re-cta-box > * { position: relative; z-index: 2; }

.re-cta-box h2 {
    max-width: 850px;
    margin: 18px auto;
    font-size: 50px;
    line-height: 1.03;
    letter-spacing: -.055em;
    font-weight: 500;
}

.re-cta-box p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: var(--re-muted);
    font-size: 16px;
    line-height: 1.8;
}

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

@media (max-width: 1100px) {
    .re-system-nodes { grid-template-columns: repeat(3, 1fr); }
    .re-system-track { display: none; }
    .re-system-node:nth-child(4),
    .re-system-node:nth-child(5) { margin-top: 0; }

    .re-audience-grid { grid-template-columns: 1fr 1fr; }
    .re-audience:nth-child(2) { border-right: 0; }
    .re-audience:nth-child(-n+2) { border-bottom: 1px solid var(--re-line); }
}

@media (max-width: 991px) {
    .re-wrap { width: min(100% - 32px, 1280px); }
    .re-section { padding: 85px 0; }

    .re-hero { padding: 65px 0 80px; }
    .re-product-stage { min-height: 570px; margin-top: 20px; }

    .re-problem-layout,
    .re-journey-grid,
    .re-why-layout,
    .re-faq-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .re-problem-sticky,
    .re-journey-intro { position: static; }

    .re-service-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .re-service-feature { grid-row: span 2; }

    .re-ai-panel { grid-template-columns: 1fr; }
    .re-ai-screen {
        border-left: 0;
        border-top: 1px solid var(--re-line);
    }

    .re-acquisition-grid { grid-template-columns: 1fr; }
    .re-acq-panel { min-height: auto; }
}

@media (max-width: 767px) {
    .re-wrap { width: min(100% - 26px, 1280px); }
    .re-section { padding: 72px 0; }

    .re-hero h1 { font-size: 47px; }
    .re-lead { font-size: 16px; }

    .re-product-stage { min-height: 470px; }
    .re-orbit { width: 400px; height: 400px; right: -90px; }
    .re-console { top: 30px; }
    .re-float-a { left: -3px; }
    .re-float-b { right: -2px; }
    .re-float-c { left: -4px; }

    .re-trust-grid { grid-template-columns: 1fr 1fr; }
    .re-trust-item {
        min-height: 100px;
        padding: 18px;
    }
    .re-trust-item:nth-child(2) { border-right: 0; }
    .re-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--re-line); }

    .re-system-board { padding: 22px; }
    .re-system-nodes { grid-template-columns: 1fr 1fr; }
    .re-system-node { min-height: 190px; padding: 18px; }

    .re-services-head { display: block; }
    .re-service-grid { display: block; }
    .re-service { min-height: 230px; margin-bottom: 12px; }
    .re-service-feature { min-height: 430px; }

    .re-audience-grid { grid-template-columns: 1fr; }
    .re-audience {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--re-line);
    }
    .re-audience:last-child { border-bottom: 0; }
    .re-audience h3 { margin-top: 28px; }

    .re-ai-copy { padding: 42px 28px; }
    .re-ai-screen { padding: 22px 15px; }
    .re-ai-result { grid-template-columns: 1fr; }

    .re-cta { padding: 75px 0; }
    .re-cta-box { padding: 55px 22px; }
}

@media (max-width: 575px) {
    .re-hero h1 { font-size: 40px; }
    .re-hero-actions .re-btn { width: 100%; }

    .re-product-stage { min-height: 405px; }
    .re-console-body { padding: 12px; }
    .re-stat-grid { gap: 6px; }
    .re-stat { padding: 10px; }
    .re-stat strong { font-size: 15px; }
    .re-funnel { padding: 12px; }
    .re-funnel-row { grid-template-columns: 68px 1fr 28px; }

    .re-system-nodes { grid-template-columns: 1fr; }
    .re-system-node { min-height: auto; }

    .re-journey-step {
        grid-template-columns: 52px 1fr 35px;
        gap: 12px;
    }
    .re-journey-step > strong { font-size: 25px; }

    .re-channel-grid { grid-template-columns: 1fr; }

    .re-faq .accordion-button {
        padding: 18px;
        font-size: 12px;
    }
}

