:root {
    --navy: #071a38;
    --navy-deep: #041127;
    --blue: #4b66f2;
    --blue-dark: #3c55d9;
    --blue-soft: #eef1ff;

    --text: #172033;
    --muted: #667085;
    --light-muted: #98a2b3;

    --border: #e4e7ec;
    --surface: #ffffff;
    --surface-soft: #f7f8fb;

    --green: #2fa66c;
    --orange: #e99a33;
    --red: #df5757;
    --purple: #7858e8;

    --shadow:
        0 18px 50px rgba(16, 24, 40, 0.10);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: #ffffff;
}


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


button,
input {
    font: inherit;
}


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


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(228, 231, 236, 0.9);
}


.header-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


.brand {
    display: flex;
    align-items: center;

    gap: 10px;

    font-weight: 700;
}


.brand-logo {
    width: 38px;
    height: 38px;

    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #7b8dff,
            #4b66f2
        );

    color: white;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 8px 18px
        rgba(75, 102, 242, 0.22);
}


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


.desktop-nav {
    display: flex;
    align-items: center;

    gap: 26px;
}


.desktop-nav a {
    color: #475467;

    font-size: 13px;
    font-weight: 500;
}


.desktop-nav a:hover {
    color: var(--blue);
}


.header-actions {
    display: flex;
    align-items: center;

    gap: 10px;
}


.header-login {
    padding: 10px 12px;

    color: #344054;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.primary-button,
.secondary-button {
    min-height: 46px;

    padding: 0 18px;

    border-radius: 9px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;
}


.primary-button {
    background: var(--blue);
    color: white;

    box-shadow:
        0 10px 24px
        rgba(75, 102, 242, 0.22);
}


.primary-button:hover {
    background: var(--blue-dark);
}


.primary-button.small {
    min-height: 40px;
    padding: 0 14px;

    font-size: 12px;
}


.secondary-button {
    border: 1px solid var(--border);

    background: white;

    color: #344054;
}


.secondary-button:hover {
    background: #f9fafb;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding: 92px 0 100px;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(93, 110, 255, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f9fd 100%
        );
}


.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -200px;
    top: 80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(75, 102, 242, 0.09),
            transparent 70%
        );
}


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

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(520px, 1.08fr);

    gap: 70px;

    align-items: center;
}


.eyebrow,
.section-kicker {
    display: inline-block;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.35px;
}


.hero-copy h1 {
    max-width: 690px;

    margin: 20px 0 22px;

    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.02;

    letter-spacing: -2.7px;
}


.hero-subtitle {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.7;
}


.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 24px;

    color: #667085;

    font-size: 11px;
}


.trust-dot {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #c1c7d0;
}


/* =========================================================
   PRODUCT PREVIEW
   ========================================================= */

.hero-visual {
    min-width: 0;
}


.product-preview {
    background: white;

    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow:
        0 28px 80px
        rgba(16, 24, 40, 0.14);

    overflow: hidden;
}


.preview-topbar {
    min-height: 54px;

    padding: 0 18px;

    border-bottom: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.preview-brand {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 11px;
    font-weight: 700;
}


.mini-logo {
    width: 25px;
    height: 25px;

    border-radius: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--blue);

    color: white;

    font-size: 11px;
    font-weight: 800;
}


.preview-status {
    padding: 5px 8px;

    border-radius: 999px;

    background: #edf8f2;

    color: #2f8f63;

    font-size: 9px;
    font-weight: 700;
}


.preview-case-header {
    padding: 22px 22px 18px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}


.preview-label {
    color: #98a2b3;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}


.preview-case-header h3 {
    margin: 6px 0 4px;

    font-size: 20px;
}


.preview-case-header p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
}


.case-status {
    padding: 6px 9px;

    border-radius: 999px;

    background: var(--blue-soft);

    color: var(--blue);

    font-size: 10px;
    font-weight: 700;
}


.preview-metrics {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


.preview-metric {
    padding: 17px 15px;

    border-right: 1px solid var(--border);
}


.preview-metric:last-child {
    border-right: 0;
}


.preview-metric span {
    display: block;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 9px;
}


.preview-metric strong {
    font-size: 17px;
}


.preview-metric.warning strong {
    color: var(--orange);
}


.preview-metric.danger strong {
    color: var(--red);
}


.preview-ai-card {
    margin: 18px;

    padding: 18px;

    border: 1px solid #e7e0ff;
    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            #fbf9ff,
            #f7f4ff
        );
}


.preview-ai-heading {
    display: flex;
    align-items: center;

    gap: 10px;
}


.ai-icon,
.ai-example-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #8a6df3,
            #6551e2
        );

    color: white;
}


.preview-ai-heading span {
    display: block;

    color: var(--purple);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.8px;
}


.preview-ai-heading strong {
    display: block;

    margin-top: 3px;

    font-size: 12px;
}


.preview-ai-card ul {
    margin: 14px 0;
    padding-left: 18px;
}


.preview-ai-card li {
    margin: 6px 0;

    color: #475467;

    font-size: 10px;
    line-height: 1.45;
}


.next-action {
    padding: 10px 12px;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.8);
}


.next-action span {
    display: block;

    color: var(--muted);

    font-size: 8px;
}


.next-action strong {
    display: block;

    margin-top: 3px;

    font-size: 10px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 92px 0;
}


.section-light {
    background: var(--surface-soft);
}


.section-dark {
    background:
        linear-gradient(
            160deg,
            var(--navy) 0%,
            var(--navy-deep) 100%
        );

    color: white;
}


.section-heading {
    max-width: 700px;

    margin-bottom: 42px;
}


.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.section-heading.light {
    color: white;
}


.section-heading h2 {
    margin: 14px 0 12px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;

    letter-spacing: -1.5px;
}


.section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.7;
}


.section-heading.light p {
    color: #b9c3d6;
}


/* =========================================================
   PROBLEM
   ========================================================= */

.problem-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.problem-card {
    padding: 26px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow:
        0 12px 30px
        rgba(16, 24, 40, 0.05);
}


.problem-number {
    margin-bottom: 32px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
}


.problem-card h3 {
    margin: 0 0 10px;

    font-size: 18px;
}


.problem-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   FEATURES
   ========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.feature-card {
    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: white;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}


.feature-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 34px
        rgba(16, 24, 40, 0.08);
}


.feature-icon {
    width: 40px;
    height: 40px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: var(--blue-soft);

    color: var(--blue);

    font-size: 18px;
    font-weight: 700;
}


.feature-card h3 {
    margin: 0 0 9px;

    font-size: 17px;
}


.feature-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   WORKFLOW
   ========================================================= */

.workflow-steps {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: start;

    gap: 12px;

    margin-top: 12px;
}


.workflow-step {
    padding: 18px 4px;
}


.step-number {
    width: 30px;
    height: 30px;

    margin-bottom: 16px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(92, 114, 255, 0.18);

    color: #a8b7ff;

    font-size: 11px;
    font-weight: 800;
}


.workflow-step h3 {
    margin: 0 0 8px;

    font-size: 18px;
}


.workflow-step p {
    margin: 0;

    color: #aeb9cc;

    font-size: 12px;
    line-height: 1.65;
}


.workflow-connector {
    padding-top: 28px;

    color: #53688e;

    font-size: 24px;
}


/* =========================================================
   AI ADMINISTRATOR
   ========================================================= */

.ai-section-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(430px, 0.9fr);

    gap: 70px;

    align-items: center;
}


.ai-section-copy h2 {
    margin: 14px 0 16px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;

    letter-spacing: -1.4px;
}


.ai-section-copy > p {
    margin: 0;

    max-width: 600px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}


.ai-capability-list {
    display: grid;

    gap: 10px;

    margin-top: 28px;
}


.ai-capability {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #344054;

    font-size: 13px;
}


.ai-capability span {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf8f2;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;
}


.ai-example {
    padding: 22px;

    border: 1px solid #e6e0ff;
    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            #fbf9ff,
            #f7f4ff
        );

    box-shadow: var(--shadow);
}


.ai-example-header {
    display: flex;
    align-items: center;

    gap: 11px;

    padding-bottom: 17px;

    border-bottom: 1px solid #e8e1ff;
}


.ai-example-header span {
    display: block;

    color: var(--purple);

    font-size: 9px;
    font-weight: 700;
}


.ai-example-header strong {
    display: block;

    margin-top: 3px;

    font-size: 13px;
}


.ai-response {
    display: grid;

    gap: 10px;

    margin-top: 15px;
}


.response-item {
    padding: 12px;

    border: 1px solid rgba(228, 231, 236, 0.8);
    border-radius: 9px;

    background: rgba(255, 255, 255, 0.82);

    display: flex;
    align-items: flex-start;

    gap: 10px;
}


.response-indicator {
    width: 9px;
    height: 9px;

    margin-top: 4px;

    flex: 0 0 9px;

    border-radius: 50%;
}


.response-indicator.red {
    background: var(--red);
}


.response-indicator.orange {
    background: var(--orange);
}


.response-indicator.blue {
    background: var(--blue);
}


.response-indicator.purple {
    background: var(--purple);
}


.response-item strong {
    display: block;

    font-size: 10px;
}


.response-item span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 8px;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 10px;
}


.industry-list span {
    padding: 11px 16px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: white;

    color: #475467;

    font-size: 12px;
    font-weight: 600;
}


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

.security-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(420px, 1.15fr);

    gap: 70px;

    align-items: start;
}


.security-grid h2 {
    margin: 14px 0 14px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;

    letter-spacing: -1.3px;
}


.security-copy {
    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}


.security-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


.security-item {
    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: #fff;
}


.security-item strong {
    display: block;

    margin-bottom: 6px;

    font-size: 12px;
}


.security-item span {
    color: var(--muted);

    font-size: 10px;
    line-height: 1.5;
}


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

.cta-section {
    padding: 72px 0;

    background:
        linear-gradient(
            135deg,
            #102c66,
            #071a38
        );

    color: white;
}


.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.cta-inner h2 {
    max-width: 700px;

    margin: 12px 0 12px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;

    letter-spacing: -1.5px;
}


.cta-inner p {
    max-width: 650px;

    margin: 0;

    color: #bcc8dd;

    font-size: 14px;
    line-height: 1.7;
}


.light-kicker {
    color: #aab8ff;
}


.cta-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.light-button {
    background: white;
    color: var(--navy);

    box-shadow: none;
}


.light-button:hover {
    background: #f5f7ff;
}


.dark-secondary {
    border-color: rgba(255, 255, 255, 0.22);

    background: transparent;

    color: white;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 28px 0;

    border-top: 1px solid var(--border);

    background: #ffffff;
}


.footer-inner {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 24px;
}


.footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;
}


.footer-brand strong {
    display: block;

    font-size: 12px;
}


.footer-brand span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;
}


.footer-links {
    display: flex;
    align-items: center;

    gap: 18px;
}


.footer-links a {
    color: var(--muted);

    font-size: 10px;
}


.footer-copy {
    text-align: right;

    color: var(--light-muted);

    font-size: 9px;
}


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

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-copy {
        max-width: 760px;
    }

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

    .ai-section-grid,
    .security-grid {
        grid-template-columns: 1fr;

        gap: 44px;
    }

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

    .workflow-connector {
        display: none;
    }

}


@media (max-width: 760px) {

    .site-container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 64px;
    }

    .header-login {
        display: none;
    }

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

    .hero {
        padding: 64px 0 72px;
    }

    .hero-copy h1 {
        font-size: 44px;

        letter-spacing: -1.8px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .preview-metric:nth-child(2) {
        border-right: 0;
    }

    .preview-metric:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .problem-grid,
    .feature-grid,
    .security-list {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 68px 0;
    }

    .section-heading h2,
    .ai-section-copy h2,
    .security-grid h2,
    .cta-inner h2 {
        font-size: 36px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;

        text-align: left;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-copy {
        text-align: left;
    }

}


@media (max-width: 520px) {

    .header-actions .primary-button {
        min-height: 36px;

        padding: 0 10px;

        font-size: 10px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions a {
        width: 100%;
    }

    .preview-case-header {
        flex-direction: column;
    }

    .preview-metrics {
        grid-template-columns: 1fr;
    }

    .preview-metric {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .preview-metric:last-child {
        border-bottom: 0;
    }

    .preview-metric:nth-child(2) {
        border-right: 0;
    }

    .cta-actions {
        width: 100%;

        align-items: stretch;
        flex-direction: column;
    }

}

/* =========================================================
   FEATURE CARD INTERACTION
   ========================================================= */

.feature-card {
    cursor: pointer;
}


.feature-card:focus {
    outline: none;

    border-color: #b8c2ff;

    box-shadow:
        0 0 0 4px
        rgba(75, 102, 242, 0.08),
        0 16px 34px
        rgba(16, 24, 40, 0.08);
}


/* =========================================================
   FEATURE MODAL
   ========================================================= */

.feature-modal {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 28px;
}


.feature-modal.open {
    display: flex;
}


.feature-modal-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(4, 17, 39, 0.66);

    backdrop-filter: blur(8px);
}


.feature-modal-card {
    position: relative;
    z-index: 2;

    width: min(620px, 100%);

    max-height:
        calc(100vh - 56px);

    overflow-y: auto;

    padding: 34px;

    border: 1px solid
        rgba(228, 231, 236, 0.95);

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcff 100%
        );

    box-shadow:
        0 32px 90px
        rgba(4, 17, 39, 0.28);
}


.feature-modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 9px;

    background: #f2f4f7;

    color: #667085;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}


.feature-modal-close:hover {
    background: #e9ecf1;

    color: var(--text);
}


.feature-modal-kicker {
    margin-bottom: 12px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


.feature-modal-card h2 {
    margin: 0;

    padding-right: 44px;

    font-size: 30px;
    line-height: 1.08;

    letter-spacing: -0.8px;
}


.feature-modal-card h3 {
    margin: 12px 0 0;

    color: #344054;

    font-size: 15px;
    line-height: 1.5;

    font-weight: 600;
}


.feature-modal-card > p {
    margin: 16px 0 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


.feature-modal-list {
    display: grid;

    gap: 10px;

    margin: 24px 0 0;

    padding: 0;

    list-style: none;
}


.feature-modal-list li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding: 12px 13px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: #ffffff;

    color: #344054;

    font-size: 12px;
    line-height: 1.5;
}


.feature-check {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--blue-soft);

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;
}


.feature-modal-footer {
    margin-top: 24px;

    padding-top: 18px;

    border-top: 1px solid var(--border);

    display: flex;
    justify-content: flex-end;
}


/* =========================================================
   FEATURE MODAL RESPONSIVE
   ========================================================= */

@media (max-width: 620px) {

    .feature-modal {
        padding: 14px;
    }

    .feature-modal-card {
        padding: 26px 20px;

        max-height:
            calc(100vh - 28px);
    }

    .feature-modal-card h2 {
        font-size: 25px;
    }

    .feature-modal-footer {
        justify-content: stretch;
    }

    .feature-modal-footer .primary-button {
        width: 100%;
    }

}

/* =========================================================
   HOW IT WORKS - WORKFLOW JOURNEY
   ========================================================= */

.workflow-journey {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;

    margin-top: 48px;
}


.workflow-journey-step {
    position: relative;

    min-height: 390px;

    padding: 24px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.035)
        );

    display: flex;
    flex-direction: column;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.workflow-journey-step:hover {
    transform: translateY(-4px);

    border-color:
        rgba(120, 140, 255, 0.42);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.045)
        );
}


.journey-number {
    margin-bottom: 16px;

    color: #7f92ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


.journey-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 22px;

    border:
        1px solid
        rgba(126, 145, 255, 0.28);

    border-radius: 11px;

    background:
        rgba(75, 102, 242, 0.16);

    color: #a7b4ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
}


.journey-content {
    display: flex;
    flex-direction: column;

    flex: 1;
}


.journey-label {
    display: block;

    margin-bottom: 9px;

    color: #9dacf9;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.journey-content h3 {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.35;
}


.journey-content > p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.64);

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   JOURNEY CONNECTORS
   ========================================================= */

.journey-connector {
    display: none;
}


/* =========================================================
   STEP 1 - EXAMPLE
   ========================================================= */

.journey-example {
    margin-top: auto;

    padding: 13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.045);
}


.journey-example span {
    display: block;

    margin-bottom: 6px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.journey-example strong {
    display: block;

    color:
        rgba(255, 255, 255, 0.83);

    font-size: 10px;
    line-height: 1.55;

    font-weight: 600;
}


/* =========================================================
   STEP 2 - STATUS
   ========================================================= */

.journey-status-row {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 6px;

    margin-top: auto;
}


.journey-status {
    padding: 10px 8px;

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.05);
}


.journey-status span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 7px;

    text-transform: uppercase;
}


.journey-status strong {
    color: white;

    font-size: 15px;
}


.journey-status.success strong {
    color: #65d39b;
}


.journey-status.warning strong {
    color: #f2b256;
}


.journey-status.danger strong {
    color: #f07979;
}


/* =========================================================
   STEP 3 - ALERT
   ========================================================= */

.journey-alert {
    margin-top: auto;

    padding: 12px;

    border:
        1px solid
        rgba(238, 169, 71, 0.18);

    border-radius: 10px;

    background:
        rgba(239, 157, 51, 0.075);

    display: flex;
    align-items: center;

    gap: 9px;
}


.journey-alert-dot {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: #efa03f;

    box-shadow:
        0 0 0 4px
        rgba(239, 160, 63, 0.10);
}


.journey-alert span {
    display: block;

    color: #d9b887;

    font-size: 8px;
}


.journey-alert strong {
    display: block;

    margin-top: 3px;

    color: #ffffff;

    font-size: 10px;
}


/* =========================================================
   STEP 4 - NEXT ACTION
   ========================================================= */

.journey-next-action {
    margin-top: auto;

    padding: 13px;

    border:
        1px solid
        rgba(122, 105, 240, 0.22);

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(117, 92, 232, 0.14),
            rgba(75, 102, 242, 0.08)
        );
}


.journey-next-action span {
    display: block;

    margin-bottom: 5px;

    color: #9d91ef;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.8px;
}


.journey-next-action strong {
    display: block;

    color: white;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   WORKFLOW RESULT
   ========================================================= */

.workflow-result {
    margin-top: 20px;

    padding: 24px 28px;

    border:
        1px solid
        rgba(100, 124, 255, 0.28);

    border-radius: 15px;

    background:
        linear-gradient(
            120deg,
            rgba(75, 102, 242, 0.15),
            rgba(75, 102, 242, 0.045)
        );

    display: flex;
    align-items: center;

    gap: 16px;
}


.workflow-result-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 50%;

    background:
        rgba(89, 111, 255, 0.20);

    color: #b1bdff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 800;
}


.workflow-result span {
    display: block;

    margin-bottom: 6px;

    color: #889bff;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.workflow-result h3 {
    max-width: 850px;

    margin: 0;

    color: white;

    font-size: 17px;
    line-height: 1.45;
}


/* =========================================================
   HOW IT WORKS - RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

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

}


@media (max-width: 700px) {

    .workflow-journey {
        grid-template-columns: 1fr;
    }


    .workflow-journey-step {
        min-height: 0;
    }


    .journey-example,
    .journey-status-row,
    .journey-alert,
    .journey-next-action {
        margin-top: 22px;
    }


    .workflow-result {
        align-items: flex-start;
    }

}


@media (max-width: 520px) {

    .workflow-journey {
        margin-top: 34px;
    }


    .workflow-journey-step {
        padding: 20px;
    }


    .journey-status-row {
        grid-template-columns: 1fr;
    }


    .workflow-result {
        padding: 20px;

        flex-direction: column;
    }


    .workflow-result h3 {
        font-size: 15px;
    }

}

/* =========================================================
   AI ADMINISTRATOR - LIVE PRODUCT DEMO
   ========================================================= */

.ai-live-section {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(112, 84, 235, 0.08),
            transparent 32%
        ),
        #ffffff;
}


.ai-live-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(520px, 1.08fr);

    gap: 76px;

    align-items: center;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.ai-live-copy h2 {
    max-width: 650px;

    margin: 15px 0 18px;

    font-size: clamp(
        38px,
        4.2vw,
        58px
    );

    line-height: 1.06;

    letter-spacing: -1.8px;
}


.ai-live-copy > p {
    max-width: 600px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.75;
}


.ai-live-capabilities {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 30px;
}


.ai-live-capability {
    padding: 15px;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: rgba(255, 255, 255, 0.88);
}


.ai-capability-check {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf8f1;

    color: #31a56d;

    font-size: 11px;
    font-weight: 800;
}


.ai-live-capability strong {
    display: block;

    color: #344054;

    font-size: 12px;
}


.ai-live-capability p {
    margin: 5px 0 0;

    color: var(--muted);

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   PRODUCT DEMO
   ========================================================= */

.ai-live-demo {
    position: relative;
}


.ai-demo-window {
    overflow: hidden;

    border:
        1px solid
        rgba(121, 97, 232, 0.24);

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            #fcfbff,
            #f8f6ff
        );

    box-shadow:
        0 28px 70px
        rgba(37, 29, 78, 0.13);
}


.ai-demo-topbar {
    min-height: 66px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom:
        1px solid
        rgba(121, 97, 232, 0.12);

    background:
        rgba(255, 255, 255, 0.80);
}


.ai-demo-brand {
    display: flex;
    align-items: center;

    gap: 10px;
}


.ai-demo-logo {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #896ef2,
            #6750df
        );

    color: white;

    box-shadow:
        0 8px 20px
        rgba(103, 80, 223, 0.22);

    animation:
        aiLogoPulse
        3s
        ease-in-out
        infinite;
}


.ai-demo-brand strong {
    display: block;

    color: var(--text);

    font-size: 12px;
}


.ai-demo-brand span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;
}


.ai-demo-status {
    padding: 6px 10px;

    border-radius: 999px;

    background: #efeafd;

    color: #765de0;

    font-size: 9px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.ai-demo-status.working {
    background: #fff4e4;
    color: #c17822;
}


.ai-demo-status.complete {
    background: #eaf8f1;
    color: #299665;
}


/* =========================================================
   QUESTION
   ========================================================= */

.ai-demo-body {
    padding: 22px;
}


.ai-demo-question {
    min-height: 82px;

    padding: 15px;

    border:
        1px solid
        rgba(121, 97, 232, 0.14);

    border-radius: 11px;

    background: white;
}


.ai-demo-question-label {
    display: block;

    margin-bottom: 8px;

    color: #765de0;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}


.ai-demo-question-text {
    display: inline;

    color: var(--text);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.5;
}


.ai-demo-cursor {
    width: 2px;
    height: 17px;

    margin-left: 3px;

    display: inline-block;

    vertical-align: -3px;

    background: #765de0;

    opacity: 0;
}


.ai-demo-cursor.active {
    opacity: 1;

    animation:
        aiCursorBlink
        0.7s
        infinite;
}


/* =========================================================
   THINKING
   ========================================================= */

.ai-demo-thinking {
    min-height: 46px;

    margin-top: 12px;

    padding: 12px 14px;

    display: flex;
    align-items: center;

    gap: 6px;

    border-radius: 9px;

    background:
        rgba(118, 93, 224, 0.06);

    opacity: 0;

    transform: translateY(5px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.ai-demo-thinking.visible {
    opacity: 1;

    transform: translateY(0);
}


.ai-demo-thinking span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #8068e8;

    animation:
        aiThinkingDot
        1s
        infinite
        ease-in-out;
}


.ai-demo-thinking span:nth-child(2) {
    animation-delay: 0.14s;
}


.ai-demo-thinking span:nth-child(3) {
    animation-delay: 0.28s;
}


.ai-demo-thinking strong {
    margin-left: 5px;

    color: #766b9c;

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   RESULTS
   ========================================================= */

.ai-demo-results {
    display: grid;

    gap: 9px;

    margin-top: 12px;
}


.ai-demo-result {
    padding: 12px;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 10px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.90);

    opacity: 0;

    transform: translateY(14px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.2s ease;
}


.ai-demo-result.visible {
    opacity: 1;

    transform: translateY(0);
}


.ai-demo-result.visible:hover {
    box-shadow:
        0 8px 20px
        rgba(16, 24, 40, 0.06);
}


.ai-result-indicator {
    width: 9px;
    height: 9px;

    border-radius: 50%;
}


.ai-demo-result.danger .ai-result-indicator {
    background: #df5757;
}


.ai-demo-result.warning .ai-result-indicator {
    background: #e99a33;
}


.ai-demo-result.info .ai-result-indicator {
    background: var(--blue);
}


.ai-demo-result.intelligence .ai-result-indicator {
    background: #7858e8;
}


.ai-result-content strong {
    display: block;

    color: var(--text);

    font-size: 10px;
    line-height: 1.4;
}


.ai-result-content span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 8px;
}


.ai-result-action {
    padding: 5px 7px;

    border-radius: 6px;

    background: #f4f5f7;

    color: #667085;

    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   SUMMARY
   ========================================================= */

.ai-demo-summary {
    margin-top: 13px;

    padding: 13px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    border:
        1px solid
        rgba(118, 93, 224, 0.20);

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(118, 93, 224, 0.09),
            rgba(75, 102, 242, 0.05)
        );

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


.ai-demo-summary.visible {
    opacity: 1;

    transform: translateY(0);
}


.ai-demo-summary span {
    display: block;

    margin-bottom: 4px;

    color: #7663d8;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.8px;
}


.ai-demo-summary strong {
    display: block;

    color: var(--text);

    font-size: 10px;
}


.ai-demo-review-button {
    min-height: 31px;

    padding: 0 11px;

    border: 0;
    border-radius: 7px;

    background: #6954e1;

    color: white;

    font-size: 8px;
    font-weight: 700;

    cursor: pointer;
}


.ai-demo-review-button:hover {
    background: #5c48ce;
}


/* =========================================================
   CAPTION
   ========================================================= */

.ai-demo-caption {
    margin-top: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: var(--muted);

    font-size: 9px;
}


.ai-demo-caption-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #37aa71;

    box-shadow:
        0 0 0 4px
        rgba(55, 170, 113, 0.10);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes aiCursorBlink {

    0%,
    48% {
        opacity: 1;
    }

    49%,
    100% {
        opacity: 0;
    }

}


@keyframes aiThinkingDot {

    0%,
    60%,
    100% {
        transform: translateY(0);

        opacity: 0.35;
    }

    30% {
        transform: translateY(-4px);

        opacity: 1;
    }

}


@keyframes aiLogoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

}


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

@media (max-width: 1050px) {

    .ai-live-grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }


    .ai-live-copy {
        max-width: 760px;
    }

}


@media (max-width: 650px) {

    .ai-live-capabilities {
        grid-template-columns: 1fr;
    }


    .ai-demo-body {
        padding: 16px;
    }


    .ai-demo-result {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }


    .ai-result-action {
        display: none;
    }


    .ai-demo-summary {
        align-items: flex-start;

        flex-direction: column;
    }


    .ai-demo-review-button {
        width: 100%;
    }

}


@media (prefers-reduced-motion: reduce) {

    .ai-demo-logo,
    .ai-demo-cursor,
    .ai-demo-thinking span {
        animation: none;
    }

}


/* =========================================================
   AI ADMINISTRATOR ANIMATIONS
   ========================================================= */

@keyframes aiAlertAppear {

    0%,
    8% {
        opacity: 0;

        transform: translateY(18px);
    }

    18%,
    82% {
        opacity: 1;

        transform: translateY(0);
    }

    92%,
    100% {
        opacity: 0;

        transform: translateY(-8px);
    }

}


@keyframes aiIconPulse {

    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 8px 22px
            rgba(108, 99, 255, 0.25);
    }

    50% {
        transform: scale(1.06);

        box-shadow:
            0 10px 30px
            rgba(108, 99, 255, 0.38);
    }

}


@keyframes aiGlow {

    0%,
    100% {
        opacity: 0.5;

        transform: scale(1);
    }

    50% {
        opacity: 1;

        transform: scale(1.15);
    }

}


/* =========================================================
   AI ADMINISTRATOR - RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .ai-demo {
        margin-top: 32px;
    }

}


@media (max-width: 620px) {

    .ai-demo {
        padding: 20px;

        border-radius: 16px;
    }


    .ai-demo-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    .ai-demo-question strong {
        font-size: 15px;
    }


    .ai-demo-alert {
        padding: 13px;
    }

}


/* Respect accessibility settings */

@media (prefers-reduced-motion: reduce) {

    .ai-demo::before,
    .ai-demo-icon,
    .ai-demo-alert {
        animation: none;
    }


    .ai-demo-alert {
        opacity: 1;

        transform: none;
    }

}

/* =========================================================
   PRICING
   ========================================================= */

.pricing-section {
    background: #f8faff;
}

.pricing-section .section-heading {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px;
    background: #ffffff;
    border: 1px solid #e4e8f2;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(15, 35, 75, 0.06);
}

.pricing-card-featured {
    border: 2px solid #4f67f6;
    box-shadow: 0 18px 45px rgba(79, 103, 246, 0.14);
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 16px;
    background: #4f67f6;
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.pricing-card-header h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
}

.pricing-card-header p {
    margin: 0;
    line-height: 1.7;
    color: #667085;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 30px 0;
}

.price-amount {
    font-size: 2.7rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #101828;
}

.price-period {
    color: #667085;
    font-size: 0.9rem;
}

.pricing-features {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0 0 32px;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-left: 28px;
    color: #344054;
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4f67f6;
    font-weight: 800;
}

.pricing-button {
    width: 100%;
    margin-top: auto;
    text-align: center;
    justify-content: center;
}

.pricing-note {
    margin: 32px 0 0;
    text-align: center;
    color: #667085;
    font-size: 0.9rem;
}


/* Pricing responsive */

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 600px) {
    .pricing-card {
        padding: 28px 22px;
    }

    .price-amount {
        font-size: 2.3rem;
    }
}

/* Pricing buttons */

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.pricing-card:not(.pricing-card-featured) .pricing-button {
    background: #ffffff;
    color: #101828;
    border: 1px solid #d0d5dd;
}

.pricing-card:not(.pricing-card-featured) .pricing-button:hover {
    background: #f8faff;
    border-color: #4f67f6;
    color: #4f67f6;
}

.pricing-card-featured .pricing-button {
    background: #4f67f6;
    color: #ffffff;
    border: 1px solid #4f67f6;
    box-shadow: 0 8px 20px rgba(79, 103, 246, 0.2);
}

.pricing-card-featured .pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(79, 103, 246, 0.28);
}

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

.contact-section {
    background: #ffffff;
}

.contact-section .section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

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

.contact-card {
    padding: 36px;
    background: #f8faff;
    border: 1px solid #e4e8f2;
    border-radius: 20px;
}

.contact-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #4f67f6;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.contact-card h3 {
    margin: 0 0 14px;
    font-size: 1.5rem;
    color: #101828;
}

.contact-card p {
    margin: 0 0 22px;
    color: #667085;
    line-height: 1.7;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: #4f67f6;
    font-weight: 700;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-location {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #344054;
}

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

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

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #071b3a;
    color: #ffffff;
    padding: 72px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.footer-brand {
    display: block;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 800;
}

.footer-logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #4f67f6;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(79, 103, 246, 0.25);
}

.footer-brand p {
    max-width: 360px;
    margin: 0 0 14px;
    color: #b9c3d4;
    line-height: 1.7;
}

.footer-location {
    color: #d8deea !important;
    font-weight: 600;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
}

.footer-column a {
    color: #b9c3d4;
    text-decoration: none;
    font-size: 0.93rem;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: #8f9bb0;
    font-size: 0.85rem;
}


/* =========================================================
   FOOTER — RESPONSIVE
   ========================================================= */

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

@media (max-width: 600px) {
    .site-footer {
        padding: 52px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}

/* Footer brand name fix */

.footer-logo {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-logo-mark {
    flex-shrink: 0;
}

.footer-logo .footer-logo-name {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.active-nav-link {
    color: #4f67f6 !important;
    font-weight: 700;
}

.about-hero {
    padding-top: 140px;
    padding-bottom: 96px;
    background:
        linear-gradient(
            180deg,
            #f8faff 0%,
            #ffffff 100%
        );
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about-hero-copy {
    max-width: 760px;
}

.about-hero-copy h1 {
    margin: 18px 0 24px;
    color: #101828;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.about-hero-copy p {
    max-width: 700px;
    margin: 0;
    color: #667085;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-hero-card {
    padding: 42px;
    background: #071b3a;
    color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(7, 27, 58, 0.16);
}

.about-card-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #9dadff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.about-hero-card h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.about-hero-card p {
    margin: 0;
    color: #c7d0df;
    line-height: 1.8;
}

.about-location-card {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: #f8faff;
    border: 1px solid #e4e8f2;
    border-radius: 24px;
}

.about-location-card h2 {
    margin: 14px 0 18px;
    color: #101828;
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.about-location-card p {
    max-width: 720px;
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.about-location-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e4e8f2;
    border-radius: 18px;
}

.about-location-detail span {
    color: #4f67f6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.about-location-detail strong {
    color: #101828;
    font-size: 1.15rem;
}


/* =========================================================
   ABOUT PAGE — RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    .about-hero {
        padding-top: 120px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 600px) {
    .about-hero {
        padding-top: 110px;
        padding-bottom: 64px;
    }

    .about-hero-card {
        padding: 30px 24px;
    }

    .about-location-card {
        padding: 30px 22px;
    }

    .about-location-detail {
        padding: 22px;
    }
}

/* =========================================================
   PRODUCT DEMO VIDEO
   ========================================================= */

.product-demo-section {
    padding: 100px 24px;
    background: #f7f9fc;
}

.product-demo-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.product-demo-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.product-demo-heading .section-kicker {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;

    color: #5065ff;
}

.product-demo-heading h2 {
    margin: 0;

    font-size: clamp(
        2rem,
        4vw,
        3.2rem
    );

    line-height: 1.1;
    color: #101828;
}

.product-demo-heading p {
    max-width: 650px;
    margin: 18px auto 0;

    font-size: 1.06rem;
    line-height: 1.7;

    color: #667085;
}


/* VIDEO FRAME */

.product-demo-video-wrap {
    position: relative;
    overflow: hidden;

    border-radius: 22px;

    border: 1px solid
        rgba(15, 23, 42, 0.08);

    background: #06152f;

    box-shadow:
        0 30px 80px
        rgba(15, 23, 42, 0.18);
}

.product-demo-video {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;

    background: #06152f;
}


/* TABLET */

@media (max-width: 900px) {

    .product-demo-section {
        padding: 80px 20px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .product-demo-section {
        padding: 64px 16px;
    }

    .product-demo-heading {
        margin-bottom: 28px;
    }

    .product-demo-heading h2 {
        font-size: 2rem;
    }

    .product-demo-heading p {
        font-size: 1rem;
    }

    .product-demo-video-wrap {
        border-radius: 14px;
    }

}

/* =========================================================
   ANNUAL PRICING DETAILS
   ========================================================= */

.pricing-monthly-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-annual {
    display: flex;
    flex-direction: column;

    margin-top: 12px;

    font-size: 0.95rem;
    line-height: 1.5;

    color: #667085;
}

.pricing-annual strong {
    font-size: 1.05rem;
    font-weight: 700;

    color: #101828;
}

.pricing-billing-note {
    max-width: 760px;

    margin: 34px auto 0;

    padding: 18px 22px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    text-align: center;

    border:
        1px solid
        rgba(79, 102, 255, 0.14);

    border-radius: 14px;

    background:
        rgba(79, 102, 255, 0.04);
}

.pricing-billing-note strong {
    color: #101828;
}

.pricing-billing-note span {
    color: #667085;
    font-size: 0.94rem;
}

@media (max-width: 600px) {

    .pricing-monthly-line {
        justify-content: flex-start;
    }

    .pricing-billing-note {
        text-align: left;
    }

}

/* =========================================================
   ANNUAL DISCOUNT PRICING
   ========================================================= */

.pricing-annual-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-old-price {
    font-size: 1.05rem;
    font-weight: 600;

    color: #98a2b3;

    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.pricing-new-price {
    font-size: 1.15rem;
    font-weight: 800;

    color: #101828;
}

.pricing-annual-period {
    font-size: 0.95rem;

    color: #667085;
}

.pricing-saving {
    margin-top: 6px;

    font-size: 0.9rem;
    font-weight: 700;

    color: #039855;
}

/* =========================================================
   EARLY FEEDBACK
   ========================================================= */

.feedback-section {
    background: linear-gradient(
        180deg,
        #f8faff 0%,
        #ffffff 100%
    );
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feedback-card {
    position: relative;
    padding: 32px;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.feedback-quote-mark {
    margin-bottom: 10px;
    font-size: 3.2rem;
    line-height: 1;
    color: #5065ff;
}

.feedback-quote {
    margin: 0 0 28px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #344054;
}

.feedback-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feedback-avatar {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #5065ff,
        #7c5cff
    );
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
}

.feedback-person strong {
    display: block;
    margin-bottom: 3px;
    color: #101828;
}

.feedback-person span {
    display: block;
    font-size: 0.9rem;
    color: #667085;
}

.feedback-disclaimer {
    margin: 28px auto 0;
    text-align: center;
    font-size: 0.82rem;
    color: #98a2b3;
}

@media (max-width: 900px) {
    .feedback-grid {
        grid-template-columns: 1fr;
    }
}