:root {
    --bg: #ffffff;
    --text: #1b3561;
    --muted: #1b3561;
    --muted-soft: #7b8fb6;
    --line: rgba(69, 105, 166, 0.16);
    --primary: #0f73d9;
    --primary-deep: #1557b8;
    --primary-soft: #75caf6;
    --panel: #f8fbff;
    --footer: #344560;
    --shadow: 0 18px 40px rgba(40, 92, 171, 0.12);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
}

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

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

button,
input,
textarea {
    font: inherit;
}

main,
site-header,
site-footer {
    display: block;
}

.shell {
    width: min(1080px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(100, 128, 182, 0.08);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: #1c4d88;
}

.brand-logo {
    display: block;
    width: clamp(124px, 8.4vw, 158px);
    height: auto;
}

.brand-wordmark,
.brand-word,
.footer-logo {
    font-family: "Quicksand", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ==========================================================================
   Dropdown Navigation
   ========================================================================== */

.nav-item {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: #fff;
    border: 1px solid rgba(51, 103, 179, 0.14);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0.4rem;
    list-style: none;
    margin: 0;
    z-index: 200;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    display: block;
}

.nav-dropdown li a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: var(--text);
    border-radius: 8px;
    font-size: 1rem;
    white-space: nowrap;
    transition: background 120ms ease, color 120ms ease;
}

.nav-dropdown li a:hover {
    background: rgba(51, 103, 179, 0.07);
    color: var(--primary-deep);
}

.nav-link {
    padding: 0.35rem 0;
    font-size: 1rem;
    color: var(--text);
    border-radius: 999px;
    transition: color 160ms ease, background-color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--primary-deep);
    background: transparent;
}

.menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(15, 115, 217, 0.15);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 1rem;
    height: 2px;
    margin: 0.18rem auto;
    background: var(--primary-deep);
}

.hero-band {
    background: linear-gradient(90deg, #9fd7f4 0%, #f9ffff 64%, #dff8f8 100%);
    overflow: hidden;
}

.hero-band .shell {
    width: min(1080px, calc(100% - 2rem));
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 390px) minmax(420px, 720px);
    justify-content: space-between;
    align-items: center;
    min-height: 600px;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-copy {
    max-width: 430px;
    padding: 3.55rem 0;
}

.hero-kicker {
    margin: 0 0 1rem;
    padding-top: 1rem;
    width: 280px;
    border-top: 4px dotted rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: transparent;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.75rem, 4.35vw, 4.35rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero-copy h1 {
    font-size: clamp(2.9rem, calc(1.8rem + 1.35vw), 54px);
}

.hero-text,
.section-heading p,
.capability-card p,
.trust-card p,
.contact-form input,
.contact-form textarea,
.form-note,
.footer-column p,
.footer-brandmark p {
    color: var(--muted);
    line-height: 1.55;
}

.hero-text {
    margin-top: 1.25rem;
    max-width: 24rem;
    font-size: clamp(1rem, 1.08vw, 1.22rem);
    color: rgba(41, 70, 127, 0.82);
    text-wrap: balance;
}

.hero-actions {
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 1.45rem;
    border: 0;
    border-radius: 999px;
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
}

.button-primary,
.button-small,
.button-submit {
    background: linear-gradient(90deg, #7cd6f7 0%, #15a3ef 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(21, 163, 239, 0.18);
}

.hero-actions .button-primary {
    min-width: 186px;
    min-height: 56px;
    padding: 0 2rem;
    background: #ffffff;
    color: #57bfe8;
    font-size: 1.03rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 28px rgba(111, 190, 224, 0.24);
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
    background: #f8feff;
    color: #39afe0;
}

.button-small {
    min-height: 32px;
    padding: 0.45rem 1.05rem;
    font-size: 1rem;
}

.button-submit {
    width: fit-content;
    min-width: 96px;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
}

.hero-image {
    width: min(100%, 720px);
    margin-inline: auto;
    filter: saturate(1.02);
    opacity: 0;
    transform: translate3d(5.5rem, 0, 0) scale(0.94);
    transform-origin: center;
    animation: hero-globe-reveal 1.7s cubic-bezier(0.2, 0.9, 0.2, 1) 0.18s forwards;
    will-change: transform, opacity;
}

@keyframes hero-globe-reveal {
    0% {
        opacity: 0;
        transform: translate3d(8rem, 0, 0) scale(0.9);
    }

    65% {
        opacity: 1;
    }

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

@media (prefers-reduced-motion: reduce) {
    .hero-image {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@media (min-width: 1600px) {
    .hero-copy {
        max-width: 410px;
        padding: 3.75rem 0;
    }

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

    .hero-text {
        font-size: 1.08rem;
        max-width: 23rem;
    }
}

.intro-section,
.trust-section {
    padding: 4.5rem 0;
}

.section-heading {
    text-align: center;
}

.section-heading.align-left {
    text-align: left;
}

.section-heading.narrow {
    max-width: 760px;
    margin: 0 auto;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary);
}

.section-heading p {
    margin: 1rem 0 0;
    font-size: 1rem;
}

.intro-section .section-heading.narrow {
    max-width: 1120px;
}

.intro-section .section-heading h2 {
    font-size: clamp(2rem, 1.7vw, 2.2rem);
    line-height: 1.14;
    font-weight: 500;
    color: #3367cd;
}

.intro-section .section-heading p {
    max-width: 860px;
    margin: 2rem auto 0;
    font-size: 1.125rem;
    line-height: 1.36;
    color: #52658e;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
    max-width: 980px;
    margin: 3.2rem auto 0;
}

.capability-card {
    min-height: 348px;
    padding: 2rem 1.25rem 1.6rem;
    border-radius: 24px;
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 34px rgba(41, 98, 191, 0.14);
}

.capability-light { background: linear-gradient(180deg, #77aeee 0%, #6ea8eb 100%); }
.capability-bright { background: linear-gradient(180deg, #4da0ed 0%, #4497e8 100%); }
.capability-soft { background: linear-gradient(180deg, #75bbe6 0%, #6ab4e2 100%); }
.capability-deep { background: linear-gradient(180deg, #335bbc 0%, #3158b8 100%); }

.capability-icon {
    margin: 0 auto 1.05rem;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}

.capability-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.96);
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.capability-card h3 {
    font-size: 1.84rem;
    font-weight: 500;
    line-height: 1.06;
    margin-bottom: 0.95rem;
}

.capability-card h3::after {
    content: "";
    display: block;
    width: 110px;
    margin: 0.95rem auto 0;
    border-top: 4px dotted rgba(255, 255, 255, 0.74);
}

.capability-card p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.0625rem;
    line-height: 1.42;
}

.solutions-band {
    position: relative;
    margin-top: 5rem;
    padding: clamp(5rem, 10vw, 8rem) 0 5.25rem;
    color: #fff;
    background: linear-gradient(180deg, #35a8e4 0%, #0e5ac0 100%);
    overflow: visible;
}

.solutions-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg id='comp-lp1zuggk-top' preserveAspectRatio='none' data-bbox='0 91 1920 209' viewBox='0 91 1920 209' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-lp1zuggk-top %3E g %7B transform: scaleY(-1) translateY(-391px); %7D %23comp-lp1zuggk-top %7B fill: %23FFFFFF; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath fill-rule='evenodd' d='M1920 291C1656.8 169.2 1323.3 91 960 91S262.5 169.2 0 291v9h1920v-9z M0,90 h1920 v210 h-1920 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    transform: scaleY(-1);
}

.solutions-band::after {
    content: none;
}

.solutions-band .shell {
    position: relative;
    z-index: 1;
}

.section-heading.inverse h2,
.section-heading.inverse p {
    color: #fff;
}

.solutions-band .section-heading.narrow {
    max-width: 980px;
}

.solutions-band .section-heading h2 {
    font-size: clamp(2rem, 1.7vw, 2.2rem);
    line-height: 1.14;
    font-weight: 500;
}

.solutions-band .section-heading p {
    max-width: 760px;
    margin: 1.7rem auto 0;
    font-size: 1.125rem;
    line-height: 1.34;
    color: rgba(255, 255, 255, 0.94);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    max-width: 760px;
    margin: 2.85rem auto 0;
}

.solution-card {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    background: #fff;
    color: var(--text);
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(14, 69, 148, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.95rem 0.95rem 1.35rem;
    min-height: 344px;
}

.solution-card-left {
    border-radius: 30px 0 0 30px;
}

.solution-card-right {
    border-radius: 0 30px 30px 0;
}

.solution-art {
    height: 122px;
    width: calc(100% + 32px);
    display: block;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    margin: 0 -16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.solution-art-email {
    background-image: url("../images/intelligent-email-classification.png");
    background-size: 118% auto;
    background-position: center 46%;
}

.solution-art-complaint {
    background-image: url("../images/ai-complaint-management.png");
    background-size: 118% auto;
    background-position: center 48%;
}

.solution-body {
    flex: 1;
    min-height: 0;
    padding: 1.85rem 1.1rem 0.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.solution-body h3 {
    min-height: 2.8rem;
    font-size: 27px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 1rem;
    max-width: none;
    white-space: normal;
    overflow-wrap: anywhere;
}

.solutions-band .button-small {
    min-height: 38px;
    padding: 0.55rem 2.2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    border-radius: 999px;
}

.reliability-band {
    position: relative;
    background-image: url("../images/28a507_4e5ad378272441d3a4386ad8cd7e752c~mv2.avif");
    background-position: center 46%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 70px;
}

.reliability-overlay {
    display: grid;
    justify-items: center;
    row-gap: 2.9rem;
    padding: 4.6rem 0 6.2rem;
}

.reliability-heading {
    margin-bottom: 0;
}

.reliability-heading h2 {
    color: #fff;
    font-size: clamp(2rem, 1.7vw, 2.125rem);
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.reliability-heading p {
    display: none;
}

.trust-section {
    display: grid;
    grid-template-columns: minmax(280px, 310px) auto minmax(400px, 480px);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding-top: 1.5rem;
}

.trust-branding {
    display: grid;
    place-items: center;
    min-height: 360px;
    padding: 1.9rem 0.5rem;
}

.brand-lockup {
    text-align: center;
    color: #284b80;
    width: min(100%, 288px);
}

.brand-lockup .brand-word,
.trust-logo {
    display: block;
}

.trust-logo {
    width: min(212px, 100%);
    height: auto;
    margin: 0 auto;
}

.brand-lockup p {
    margin: 1.2rem 0 1.3rem;
    padding: 0.8rem 0;
    color: #1b3561;
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 500;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.microsoft-logo {
    width: min(205px, 100%);
    height: auto;
    margin: 0 auto;
}

.trust-divider {
    width: 0;
    align-self: stretch;
    border-left: 4px dotted rgba(255, 255, 255, 0.92);
    min-height: 342px;
}

.trust-card {
    padding: 2rem 2rem;
    border: 1px solid rgba(203, 219, 234, 0.72);
    box-shadow: 0 16px 26px rgba(61, 106, 165, 0.13);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    text-align: center;
}

.trust-card p {
    color: #1b3561;
    font-size: 1.125rem;
    line-height: 1.32;
    font-weight: 500;
}

.trust-card p + p {
    margin-top: 1.35rem;
}

.contact-band {
    background: linear-gradient(90deg, #ebf8ff 0%, #d6eefb 100%);
    padding: 4.5rem 0 3rem;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 2rem;
}

.contact-visual {
    display: grid;
    place-items: center;
}

.contact-orb {
    width: min(300px, 78vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.82) 42%, rgba(188, 239, 255, 0.25) 65%, transparent 80%),
        radial-gradient(circle at 50% 78%, rgba(95, 206, 243, 0.45), transparent 22%);
    box-shadow: inset 0 0 0 1px rgba(152, 220, 245, 0.18);
    position: relative;
}

.contact-orb::before {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background-image: radial-gradient(circle, rgba(106, 192, 225, 0.35) 1px, transparent 1px);
    background-size: 8px 8px;
    mask-image: radial-gradient(circle at center, black 55%, transparent 76%);
}

.contact-panel {
    max-width: 560px;
}

.contact-form {
    display: grid;
    gap: 0.45rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(61, 106, 176, 0.18);
    background: rgba(255, 255, 255, 0.82);
}

.contact-form textarea {
    resize: vertical;
    min-height: 82px;
}

.consent-row {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.35rem 0 0.2rem;
    font-size: 1rem;
    color: var(--muted);
}

.form-note {
    font-size: 1rem;
    margin: 0.1rem 0 0;
}

.site-footer {
    background: var(--footer);
    color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    padding: 3rem 0 2.5rem;
}

.footer-top {
    order: -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.footer-column {
    display: grid;
    gap: 0.55rem;
    align-content: start;
}

.footer-column h2 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.85rem;
    color: #fff;
    text-transform: uppercase;
}

.footer-logo {
    display: block;
    width: 130px;
    height: auto;
}

.footer-column a,
.footer-column p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-strong {
    color: #fff;
    font-weight: 600;
}

.footer-email-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.78;
}

.social-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.social-row a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    transition: background 160ms ease, border-color 160ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.65);
    outline: none;
}

.social-row svg {
    width: 16px;
    height: 16px;
}

.footer-brandmark {
    order: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: right;
}

.footer-brandmark p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
}

.page-main {
    padding: 4rem 0 2rem;
}

.page-hero,
.info-card,
.contact-card {
    background: #fff;
    border: 1px solid rgba(48, 88, 154, 0.12);
    box-shadow: 0 14px 30px rgba(45, 88, 162, 0.08);
}

.page-hero {
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.page-hero.compact h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

/* ==========================================================================
   Terms & Conditions Page
   ========================================================================== */

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
}

.terms-section {
    padding: 1.8rem 2rem;
    background: #fff;
    border: 1px solid rgba(48, 88, 154, 0.1);
    border-radius: var(--radius-lg);
}

.terms-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 1rem;
}

.terms-section p,
.terms-section li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}

.terms-section p + p {
    margin-top: 0.8rem;
}

.terms-section ul {
    margin: 0.8rem 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.terms-address {
    display: block;
    margin: 1rem 0;
    padding: 1rem 1.25rem;
    background: rgba(48, 88, 154, 0.04);
    border-left: 3px solid var(--primary-deep);
    border-radius: 4px;
    font-style: normal;
    line-height: 1.8;
    font-size: 1rem;
}

.info-grid,
.contact-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.info-card,
.contact-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
}

.classification-page {
    background: #fff;
}

.classification-page main {
    overflow: hidden;
}

.classification-page .benefits-section::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 86px;
    background-image: url("data:image/svg+xml,%3Csvg id='comp-losfp4tr8-top' preserveAspectRatio='none' data-bbox='0 91 1920 209' viewBox='0 91 1920 209' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-losfp4tr8-top %7B fill: %23E7F6F6; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M1920 291C1656.8 169.2 1323.3 91 960 91S262.5 169.2 0 291v9h1920v-9z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
}

.classification-page .reliability-band::before {
        content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    background-image: url("data:image/svg+xml,%3Csvg id='comp-losfp4tr8-top' preserveAspectRatio='none' data-bbox='0 91 1920 209' viewBox='0 91 1920 209' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-losfp4tr8-top %7B fill: %23E7F6F6; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M1920 291C1656.8 169.2 1323.3 91 960 91S262.5 169.2 0 291v9h1920v-9z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    transform: scaleY(-1);
}

.classification-page .setup-section::after {
    content: none;
}

.classification-hero {
    position: relative;
    min-height: 760px;
    background: url("../images/Email Landing.jpg") no-repeat center 52% / cover;
}

.classification-hero-grid {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 760px;
}

.classification-hero-card {
    width: min(50%, 100%);
    margin-left: 0;
    padding: 5rem 2.1rem 5rem;
    border: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 3px rgba(0,0,0, 0.14);
    backdrop-filter: blur(8px);
}

.classification-hero-card h1 {
    font-size: clamp(2.5rem, 3.15vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    color: #1e2e5a;
    letter-spacing: -0.03em;
}

.classification-hero-card p {
    margin: 1.3rem 0 0;
    /* max-width: 18rem; */
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.38;
    color: #4a5f88;
}

.classification-hero-card .button-primary {
    min-width: 170px;
    min-height: 48px;
    margin-top: 2rem;
    background: linear-gradient(90deg, #5bbdf8 0%, #3e8fe0 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 18px rgba(62, 143, 224, 0.28);
}

.classification-section {
    padding: 5.9rem 0;
}

.classification-section.alt {
    background: #e7f6f6;
}

.classification-heading {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.classification-heading h2 {
    font-size: clamp(2rem, 2.45vw, 2.85rem);
    font-weight: 500;
    line-height: 1.14;
    color: #295fcb;
}

.classification-heading p {
    margin: 1.45rem auto 0;
    max-width: 930px;
    font-size: 1.04rem;
    font-weight: 500;
    line-height: 1.38;
    color: #29417a;
}

.journey-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    max-width: 1020px;
    margin: 3.85rem auto 0;
}

.journey-node,
.journey-arrow {
    display: grid;
    place-items: center;
}

.journey-node {
    width: min(100%, 204px);
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    box-shadow: none;
}

.journey-node.deep { background: #355dbe; }
.journey-node.mid { background: #4392ca; }
.journey-node.bright { background: #489bef; }
.journey-node.light { background: #8ecfed; }

a.journey-node {
    cursor: pointer;
    text-decoration: none;
    transition: filter 160ms ease, transform 160ms ease;
}

a.journey-node:hover,
a.journey-node:focus-visible {
    filter: brightness(1.12);
    transform: scale(1.04);
    outline: none;
}

.journey-arrow {
    font-size: 2.35rem;
    font-weight: 500;
    color: #4e9beb;
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
    align-items: center;
    gap: 3.4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.split-copy h2,
.split-copy h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.14;
    color: #275ccd;
}

.split-copy .eyebrow {
    margin-top: 0.55rem;
    max-width: 31rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.38;
    color: #25417a;
}

.split-copy p {
    margin: 1.95rem 0 0;
    max-width: 26rem;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.56;
    color: #243a71;
}

.classification-diagram {
    width: min(100%, 520px);
    margin-left: auto;
}

.classification-diagram img {
    display: block;
    width: 100%;
    height: auto;
}

.flow-pill,
.flow-badge,
.flow-trash,
.flow-arrow {
    position: absolute;
}

.flow-pill,
.flow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.88rem 1.5rem;
    border-radius: 22px;
    background: #fff;
    color: #131d27;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: none;
}

.flow-pill.outline {
    border: 2px solid rgba(84, 120, 135, 0.55);
}

.flow-pill.inquiry {
    background: #c5efff;
    font-size: 1.45rem;
}

.flow-pill.feedback {
    background: #def4a2;
    font-size: 1.18rem;
}

.flow-pill.complaint {
    background: #f48a60;
    font-size: 1.18rem;
}

.flow-pill.irrelevant {
    background: #d3d7d9;
    color: #171717;
    font-size: 1.18rem;
}

.flow-trash {
    width: 74px;
    height: 74px;
    right: 18px;
    bottom: 4px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #2d6d69;
    color: #fff;
    font-size: 2rem;
}

.flow-arrow {
    font-size: 2.8rem;
    color: #2d6d69;
    line-height: 1;
}

.diagram-service { top: 0; left: 46px; }
.diagram-inquiry { top: 92px; left: 102px; }
.diagram-security { top: 80px; right: 70px; }
.diagram-feedback { top: 220px; left: 66px; }
.diagram-complaint { top: 150px; right: 18px; }
.diagram-marketing { top: 300px; left: 86px; }
.diagram-hr { bottom: 20px; left: 102px; }
.diagram-irrelevant { right: 2px; bottom: 92px; }
.arrow-service { top: 56px; left: 30px; transform: rotate(18deg); }
.arrow-security { top: 56px; right: 132px; transform: scaleX(-1) rotate(18deg); }
.arrow-feedback { top: 250px; left: 28px; transform: rotate(80deg); }
.arrow-complaint { top: 118px; right: -8px; transform: rotate(-92deg); }
.arrow-trash { right: -2px; bottom: 62px; transform: rotate(-58deg); }

.insight-grid,
.bilingual-grid,
.winwin-grid,
.reliability-grid,
.contact-showcase-grid {
    display: grid;
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    align-items: center;
    gap: 3.1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-visual {
    width: min(100%, 450px);
    margin: 0 auto;
}

.section-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.section-visual-results {
    width: min(100%, 425px);
}

.section-visual-language {
    width: min(100%, 455px);
    margin-left: auto;
}

.section-visual-dashboard {
    width: min(100%, 430px);
}

.insight-card,
.dashboard-card,
.pricing-card,
.trial-card,
.contact-panel-large {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(83, 125, 196, 0.12);
    box-shadow: 0 18px 34px rgba(43, 87, 160, 0.1);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.insight-card {
    padding: 2rem;
}

.insight-card h3,
.insight-card p,
.insight-card strong,
.insight-card span,
.dashboard-card h3,
.pricing-card h3,
.trial-card h3,
.mail-card {
    color: #323232;
}

.insight-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.result-block + .result-block {
    margin-top: 1.6rem;
}

.result-label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 700;
    font-size: 1rem;
}

.priority-dot {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.priority-dot::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #efa329;
}

.quote-note {
    margin-top: 2.8rem;
    color: #666;
}

.split-copy.tight p {
    max-width: 28rem;
}

.setup-section {
    position: relative;
    padding: 6.2rem 0 7.95rem;
    background: #fff;
}

.setup-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -300px;
    width: 180vw;
    height: 340px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #e7f6f6;
}

.setup-shell {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.setup-shell h2,
.benefits-heading h2,
.pricing-heading h2,
.contact-copy h2 {
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.15;
    color: #295fcb;
}

.setup-shell p {
    max-width: 680px;
    margin: 1.05rem auto 0;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    color: #5f76ad;
}

.setup-list {
    display: grid;
    gap: 1.45rem;
    width: fit-content;
    margin: 3.3rem auto 0;
    text-align: left;
}

.setup-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.42;
    color: #243a71;
    &:nth-child(2) .setup-dot{
        border: 5px solid #70b9f0;
    }
    &:nth-child(3) .setup-dot{
        border: 5px solid #3D9BE9;
    }
}

.setup-dot {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 0.1rem;
    border-radius: 50%;
    border: 5px solid #92E1FF;
    background: #fff;
}

.setup-cta {
    margin-top: 4.55rem;
}

.setup-cta h3 {
    font-size: 2.1rem;
    font-weight: 500;
    color: #295fcb;
}

.setup-cta .button-primary {
    min-width: 250px;
    min-height: 60px;
    margin-top: 1.55rem;
    background: #fff;
    color: #48bcd5;
    border: 1px solid rgba(87, 210, 233, 0.32);
    box-shadow: 0 0 26px rgba(111, 227, 233, 0.42);
}

.benefits-section {
    position: relative;
    padding: 3.9rem 0 5.35rem;
    background: #e7f6f6;
}

.benefits-section .shell {
    position: relative;
    z-index: 1;
}

.benefits-heading {
    text-align: center;
}

.benefits-heading h2 {
    font-size: clamp(1.55rem, 1.65vw, 1.95rem);
}

.benefits-heading p,
.pricing-heading p {
    margin-top: 0.8rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #5f76ad;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2.6rem auto 0;
}

.benefit-card {
    padding: 2rem 1.55rem 2.15rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 26px rgba(52, 98, 191, 0.08);
    height: fit-content;
}

.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1d1d1d;
}

.benefit-card h3::after {
    content: "";
    display: block;
    width: 100%;
    margin-top: 0.7rem;
    border-top: 4px dotted #3d938f;
}

.benefit-card p {
    margin-top: 1.55rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1f1f1f;
    line-height: 1.6;
}

.classification-reliability {
    margin-top: 0;
}

.pricing-section {
    padding: 5.25rem 0 5.4rem;
    background: #e4f4f8;
}

.pricing-heading {
    text-align: center;
}

.pricing-heading h2 {
    font-size: clamp(1.55rem, 1.65vw, 1.95rem);
}

.pricing-heading p {
    font-size: 1.15rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2.2rem auto 0;
}

.pricing-card,
.trial-card {
    padding: 2.4rem 1.8rem 2rem;
    text-align: center;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
}

.pricing-card h3,
.trial-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.plan-meta {
    margin-top: 0.55rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #8e8e8e;
}

.plan-price {
    margin: 2rem 0 0.65rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5ec9;
}

.plan-price span {
    font-size: 1.05rem;
    font-weight: 600;
}

.plan-note {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.45;
    color: #6c7ccd;
}

/* Enterprise card: "Contact us for a quote" resets plan-price to muted text */
.pricing-grid .pricing-card:last-child .plan-price {
    font-size: 1rem;
    font-weight: 500;
    color: #6c7ccd;
    margin: 1.6rem 0 1rem;
}

.pricing-card .button-small{
    
    width: 150px;
    min-height: 38px;
    margin-top: 1.8rem;
}

.trial-card .button-small {
    min-width: 150px;
    min-height: 38px;
    margin-top: 1.8rem;
}

.pricing-divider {
    width: 330px;
    max-width: 70vw;
    margin: 2.2rem auto 1.9rem;
    border-top: 4px dotted #8dd2fb;
}

.trial-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.6rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.trial-side {
    text-align: center;
}

.trial-side .plan-price {
    margin-top: 0;
}

.contact-showcase {
    padding: 5.3rem 0 6rem;
    background: linear-gradient(90deg, #ebf8ff 0%, #d6eefb 100%);
}

.contact-showcase-grid {
    max-width: 1100px;
    gap: 3rem;
}

.contact-sphere {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76) 44%, rgba(202, 237, 248, 0.46) 63%, rgba(110, 194, 235, 0.16) 77%, transparent 88%),
        radial-gradient(circle at 50% 78%, rgba(94, 198, 241, 0.45), transparent 21%);
    box-shadow: inset 0 0 0 1px rgba(161, 219, 243, 0.28), 0 0 80px rgba(255, 255, 255, 0.48);
}

.contact-sphere::before {
    content: "";
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background-image: radial-gradient(circle, rgba(86, 168, 216, 0.6) 1.1px, transparent 1.2px);
    background-size: 9px 9px;
    mask-image: radial-gradient(circle at center, black 58%, transparent 79%);
}

img.contact-sphere {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    aspect-ratio: auto;
    object-fit: contain;
    display: block;
}

.contact-copy h2 {
    color: #46a0f4;
    padding-left: 16px;
}

.contact-panel-large {
    max-width: 540px;
    padding: 1rem 1rem 1.2rem;
    box-shadow: none;
    border: 0;
    background: transparent;
}

.contact-panel-large .contact-form input,
.contact-panel-large .contact-form textarea {
    border-radius: 4px;
    border-color: rgba(95, 119, 157, 0.34);
    background: rgba(255, 255, 255, 0.9);
}

.contact-panel-large .contact-form textarea {
    min-height: 132px;
}

.captcha-mock {
    width: 234px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem 0 0.9rem;
    padding: 0.75rem 0.6rem;
    border: 1px solid rgba(95, 119, 157, 0.22);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    color: #323232;
    font-size: 1rem;
}

.captcha-box {
    width: 22px;
    height: 22px;
    border: 2px solid #6c6c6c;
    background: #fff;
}

.captcha-mark {
    margin-left: auto;
    color: #6f6f6f;
    font-size: 1rem;
}

.privacy-note {
    margin-top: 0.9rem;
    font-size: 1rem;
    color: #707070;
}

.privacy-note a {
    color: #3056a9;
    text-decoration: underline;
}

@media (max-width: 960px) {
    .hero-grid,
    .trust-section,
    .contact-grid,
    .capability-grid,
    .solution-grid,
    .info-grid,
    .contact-card {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid,
    .trust-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Show globe above text on tablet/mobile */
    .hero-visual {
        order: -1;
    }

    .trust-section {
        gap: 0;
        justify-items: center;
    }

    .trust-divider {
        display: none;
    }

    .trust-branding {
        min-height: auto;
        padding: 2rem 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(203, 219, 234, 0.72);
        border-bottom: none;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -6px 16px rgba(61, 106, 165, 0.06);
        width: min(480px, calc(100% - 2rem));
        text-align: center;
    }

    .brand-lockup p {
        border-top-color: rgba(27, 53, 97, 0.18);
        border-bottom-color: rgba(27, 53, 97, 0.18);
    }

    .microsoft-logo {
        width: min(190px, 100%);
    }

    .trust-card {
        border-radius: 0 0 16px 16px;
        border-top: none;
        width: min(480px, calc(100% - 2rem));
        max-width: none;
        margin: 0 auto;
    }

    .hero-copy {
        max-width: none;
        text-align: center;
        margin: 0 auto;
    }

    .hero-band .shell {
        width: min(1120px, calc(100% - 2rem));
    }

    .hero-text {
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
    }

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

    .solutions-band::before {
        height: clamp(70px, 11vw, 160px);
    }

    .reliability-band {
        background-attachment: scroll;
    }

    .journey-steps,
    .benefits-grid,
    .pricing-grid,
    .split-feature,
    .insight-grid,
    .bilingual-grid,
    .winwin-grid,
    .contact-showcase-grid,
    .trial-card {
        grid-template-columns: 1fr;
    }

    .classification-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .classification-hero-grid {
        min-height: auto;
        justify-items: center;
    }

    .classification-hero-card {
        text-align: center;
        margin-left: 0;
    }

    .classification-hero-card p {
        margin-left: auto;
        margin-right: auto;
    }

    .split-copy,
    .contact-copy {
        text-align: center;
    }

    .split-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .section-visual,
    .contact-panel-large {
        width: 100%;
        margin: 0 auto;
    }

    .benefits-section {
        padding-top: 7rem;
    }

    .trial-card,
    .trial-side {
        text-align: center;
    }
}

@media (max-width: 720px) {
    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.8rem;
        background: #fff;
        border: 1px solid rgba(51, 103, 179, 0.14);
        border-radius: 0 0 16px 16px;
        box-shadow: var(--shadow);
    }

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

    .header-inner {
        position: relative;
    }

    .nav-link {
        width: 100%;
        padding: 0.8rem 0.9rem;
    }

    /* Mobile dropdown — show inline, not absolutely positioned */
    .nav-item {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        display: block;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 1rem;
        background: transparent;
    }

    .nav-dropdown li a {
        font-size: 1rem;
        padding: 0.45rem 0.85rem;
        color: var(--text);
    }

    .capability-grid,
    .solution-grid,
    .info-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .capability-card {
        padding: 1.25rem 1rem 1.1rem;
        min-height: auto;
    }

    /* Footer mobile layout */
    .footer-top {
        order: 0;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .footer-col-site {
        display: none;
    }

    .footer-brandmark {
        order: -1;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        padding-top: 0;
        padding-bottom: 2rem;
        border-top: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        gap: 0.5rem;
    }

    .footer-brandmark p {
        text-align: left;
    }

    .footer-logo {
        width: 150px;
    }

    .journey-steps,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .classification-section,
    .benefits-section,
    .pricing-section,
    .contact-showcase,
    .setup-section {
        padding: 4rem 0;
    }

    #classification{
        padding-bottom: 0;
    }

    .classification-hero-card {
        padding: 1.6rem 1.3rem;
        width: 100%;
    }

    .journey-node {
        aspect-ratio: auto;
        border-radius: 999px;
        width: min(240px, 85vw);
        padding: 0.9rem 2.5rem;
        font-size: 1.05rem;
        font-weight: 600;
    }

    .journey-arrow {
        transform: rotate(90deg);
    }

    .classification-diagram {
        min-height: 368px;

        transform: scale(0.88);
        transform-origin: top center;
    }

    .setup-list {
        width: 100%;
    }

    .pricing-divider {
        width: 180px;
    }

    .captcha-mock {
        width: 100%;
        max-width: 260px;
    }

    .hero-band {
        padding-bottom: 2rem;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 1rem;
    }

    .orb-shell {
        width: min(420px, 92vw);
    }

    .solutions-band {
        padding-top: 4.8rem;
    }

    .reliability-overlay {
        padding: 4rem 0 4.4rem;
    }

    .brand-lockup .brand-word {
        font-size: 2.6rem;
    }

    .microsoft-mark {
        grid-template-columns: repeat(2, 18px) auto;
    }

    .microsoft-logo {
        width: min(170px, 100%);
    }

    .trust-card {
        padding: 1.7rem 1.4rem;
    }
}

/* ==========================================================================
   AI Complaint Management Page
   ========================================================================== */

.complaint-page {
    background: #fff;
}

.complaint-page main {
    overflow: hidden;
}

/* --- Hero --- */
.complaint-hero {
    position: relative;
    min-height: 760px;
    background: url("../images/Complaint Landing.jpg") no-repeat center 52% / cover;
}

.complaint-hero-grid {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 760px;
}

.complaint-page .pricing-section{
    background: white;
}

.complaint-page .setup-section::after {
    content: none;
}

.complaint-page .benefits-section::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 86px;
    background-image:url("data:image/svg+xml,%3Csvg id='comp-losfp4tr8-top' preserveAspectRatio='none' data-bbox='0 91 1920 209' viewBox='0 91 1920 209' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-losfp4tr8-top %7B fill: %23E7F6F6; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M1920 291C1656.8 169.2 1323.3 91 960 91S262.5 169.2 0 291v9h1920v-9z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
}

.complaint-page .reliability-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    background-image: url("data:image/svg+xml,%3Csvg id='comp-losfp4tr8-top' preserveAspectRatio='none' data-bbox='0 91 1920 209' viewBox='0 91 1920 209' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-losfp4tr8-top %7B fill: %23E7F6F6; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M1920 291C1656.8 169.2 1323.3 91 960 91S262.5 169.2 0 291v9h1920v-9z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    transform: scaleY(-1);
}
.complaint-hero-card {
    width: min(50%, 100%);
    margin-left: 0;
    padding: 5rem 2.1rem 5rem;
    border: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(8px);
}

.complaint-hero-card h1 {
    font-size: clamp(2.5rem, 3.15vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    color: #1e2e5a;
    letter-spacing: -0.03em;
}

.complaint-hero-card > p {
    margin: 1.3rem 0 0;
    /* max-width: 18rem; */
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.38;
    color: #4a5f88;
}

.complaint-hero-card .button-primary {
    min-width: 170px;
    min-height: 48px;
    margin-top: 2rem;
    background: linear-gradient(90deg, #5bbdf8 0%, #3e8fe0 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 18px rgba(62, 143, 224, 0.28);
}

/* --- Demo Video --- */
.complaint-demo {
    padding: 4.5rem 0;
}

/* --- App Demo (AIRRE portal video) --- */
.complaint-app-demo {
    padding: 4.8rem 0;
}

.complaint-app-demo-inner {
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

.complaint-app-demo-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.complaint-video-wrap {
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    background: #111;
}

.complaint-video-wrap video,
.complaint-video-wrap iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
}

/* --- Streamline Overview --- */
.complaint-overview {
    padding: 5rem 0 6rem;
    text-align: center;
}

.complaint-heading {
    max-width: 980px;
    margin: 0 auto;
}

.complaint-heading h2 {
    font-size: clamp(2rem, 2.45vw, 2.6rem);
    font-weight: 500;
    line-height: 1.2;
    color: #295fcb;
}

.complaint-heading p {
    max-width: 860px;
    margin: 1.35rem auto 0;
    font-size: 1rem;
    line-height: 1.58;
    color: #52658e;
}

/* --- Flow diagram --- */
.complaint-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    max-width: 920px;
    margin: 4rem auto 0;
}

.complaint-node {
    width: min(100%, 196px);
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    background: repeat padding-box border-box 0% 0% / auto auto scroll linear-gradient(73deg, #6eb7fd 10%, #92e1ff 100%);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
}

.complaint-arrow {
    font-size: 2.35rem;
    font-weight: 500;
    color: #82c2ec;
    display: grid;
    place-items: center;
}

/* --- Feature Sections --- */
.complaint-section {
    padding: 5.9rem 0;
    background: #fafafa;
}

.complaint-section.alt {
    background: #f8fdff;
}

.complaint-section-visual {
    width: min(100%, 460px);
    margin: 0 auto;
}

.complaint-section-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.complaint-copy h2 {
    font-size: 2.15rem;
    font-weight: 500;
    line-height: 1.14;
    color: #0057BA;
}

.complaint-copy .eyebrow {
    margin-top: 0.55rem;
    max-width: 31rem;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.38;
    color: #25417a;
}

.complaint-copy p {
    margin: 1.95rem 0 0;
    max-width: 26rem;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.56;
    color: #243a71;
}

/* --- Responsive --- */
@media (max-width: 960px) {
    .complaint-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .complaint-hero-grid {
        min-height: auto;
        justify-items: center;
    }

    .complaint-hero-card {
        text-align: center;
        padding: 1.6rem 1.3rem;
        width: 100%;
    }

    .complaint-hero-card > p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .complaint-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .complaint-section-visual {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .complaint-flow {
        grid-template-columns: 1fr;
    }

    .complaint-arrow {
        transform: rotate(90deg);
    }

    .complaint-section {
        padding: 4rem 0;
    }

    .complaint-node {
        aspect-ratio: auto;
        border-radius: 999px;
        width: min(240px, 85vw);
        padding: 0.9rem 2.5rem;
        font-size: 1.05rem;
        font-weight: 600;
    }
}
/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(15, 115, 217, 0.2);
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease, background 160ms ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
    background: #f0f8ff;
    outline: none;
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   POPUP MODAL – "Let's Get Started"
   ========================================================================== */

/* ── Overlay ─────────────────────────────────────────────────────────────── */
#airre-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: rgba(174, 205, 230, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

#airre-popup.popup--open    { display: flex; opacity: 0; }
#airre-popup.popup--visible { opacity: 1; }

/* ── Card ────────────────────────────────────────────────────────────────── */
#airre-popup__box {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 40px 44px 32px;
    max-width: 580px;
    width: 94%;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(32px) scale(0.97);
    opacity: 0;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
    box-shadow: 0 16px 56px rgba(100, 140, 180, 0.28);
}

#airre-popup.popup--visible #airre-popup__box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* ── Close button ────────────────────────────────────────────────────────── */
#airre-popup__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #aaa;
    padding: 4px 6px;
    transition: color 0.15s;
}
#airre-popup__close:hover { color: #444; }

/* ── Title ───────────────────────────────────────────────────────────────── */
#airre-popup__title {
    margin: 0 0 22px;
    font-family: "Quicksand", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

/* ── Name row (two columns) ──────────────────────────────────────────────── */
.popup-name-row {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}
.popup-name-row .popup-field { flex: 1; min-width: 0; }

/* ── Fields ──────────────────────────────────────────────────────────────── */
.popup-field {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    margin-bottom: 12px;
    border: 1px solid #b8cfe0;
    border-radius: 8px;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.popup-field::placeholder { color: #93b0c7; }
.popup-field:focus {
    border-color: #7badd4;
    box-shadow: 0 0 0 3px rgba(123, 173, 212, 0.18);
}
.popup-field.field-error {
    border-color: #e05555;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.14);
}

/* ── Select arrow ────────────────────────────────────────────────────────── */
.popup-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%2393b0c7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ── Textarea ────────────────────────────────────────────────────────────── */
.popup-textarea {
    resize: vertical;
    min-height: 96px;
}

/* ── Submit button ───────────────────────────────────────────────────────── */
.popup-submit {
    display: block;
    width: 200px;
    margin: 6px auto 0;
    padding: 13px 24px;
    background: linear-gradient(90deg, #7cd6f7 0%, #15a3ef 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: opacity 0.2s;
    box-shadow: 0 8px 20px rgba(21, 163, 239, 0.22);
}
.popup-submit:hover:not(:disabled) { opacity: 0.88; }
.popup-submit:disabled { opacity: 0.55; cursor: default; }

/* ── Privacy line ────────────────────────────────────────────────────────── */
.popup-privacy {
    margin-top: 14px;
    font-size: 1rem;
    color: #888;
    text-align: center;
}
.popup-privacy a { color: #4a7eb5; text-decoration: underline; }

/* ── Success state ───────────────────────────────────────────────────────── */
.popup-success {
    text-align: center;
    padding: 36px 16px;
}
.popup-success__icon {
    font-size: 48px;
    color: #15a3ef;
    margin-bottom: 14px;
}
.popup-success__heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}
.popup-success__body {
    font-size: 1rem;
    color: #555;
    margin: 0 0 20px;
    line-height: 1.6;
}
.popup-success__close {
    padding: 10px 32px;
    background: linear-gradient(90deg, #7cd6f7 0%, #15a3ef 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.popup-success__close:hover { opacity: 0.85; }

/* ── Inline form field-error state ──────────────────────────────────────── */
.contact-form input.field-error,
.contact-form textarea.field-error {
    border-color: #e05555;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.12);
}

/* ── Inline form success replacement ────────────────────────────────────── */
.form-success {
    text-align: center;
    padding: 48px 24px;
}
.form-success__check {
    font-size: 2.5rem;
    color: #15a3ef;
    margin: 0 0 10px;
}
.form-success__heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}
.form-success__body {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── Mobile adjustments ──────────────────────────────────────────────────── */
@media (max-width: 560px) {
    #airre-popup__box {
        padding: 32px 20px 24px;
    }
    .popup-name-row {
        flex-direction: column;
        gap: 0;
    }
    #airre-popup__title {
        font-size: 1.3rem;
    }

    .classification-page .setup-section::before,
    .classification-page .benefits-section::before,
    .complaint-page .benefits-section::before, 
    .complaint-page .reliability-band::before{
        height: 42px;
    }
}

/* ==========================================================================
   POPUP MODAL â€“ "Let's Get Started"
   ========================================================================== */

#airre-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: rgba(174, 205, 230, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

#airre-popup.popup--open    { display: flex; opacity: 0; }
#airre-popup.popup--visible { opacity: 1; }

#airre-popup__box {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 40px 44px 32px;
    max-width: 580px;
    width: 94%;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(32px) scale(0.97);
    opacity: 0;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
    box-shadow: 0 16px 56px rgba(100, 140, 180, 0.28);
}

#airre-popup.popup--visible #airre-popup__box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

#airre-popup__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #aaa;
    padding: 4px 6px;
    transition: color 0.15s;
}
#airre-popup__close:hover { color: #444; }

#airre-popup__title {
    margin: 0 0 22px;
    font-family: "Quicksand", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.popup-name-row {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}
.popup-name-row .popup-field { flex: 1; min-width: 0; }

.popup-field {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    margin-bottom: 12px;
    border: 1px solid #b8cfe0;
    border-radius: 8px;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.popup-field::placeholder { color: #93b0c7; }
.popup-field:focus {
    border-color: #7badd4;
    box-shadow: 0 0 0 3px rgba(123, 173, 212, 0.18);
}
.popup-field.field-error {
    border-color: #e05555;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.14);
}

.popup-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%2393b0c7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.popup-textarea {
    resize: vertical;
    min-height: 96px;
}

.popup-submit {
    display: block;
    width: 200px;
    margin: 6px auto 0;
    padding: 13px 24px;
    background: linear-gradient(90deg, #7cd6f7 0%, #15a3ef 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: opacity 0.2s;
    box-shadow: 0 8px 20px rgba(21, 163, 239, 0.22);
}
.popup-submit:hover:not(:disabled) { opacity: 0.88; }
.popup-submit:disabled { opacity: 0.55; cursor: default; }

.popup-privacy {
    margin-top: 14px;
    font-size: 1rem;
    color: #888;
    text-align: center;
}
.popup-privacy a { color: #4a7eb5; text-decoration: underline; }

.popup-success {
    text-align: center;
    padding: 36px 16px;
}
.popup-success__icon {
    font-size: 48px;
    color: #15a3ef;
    margin-bottom: 14px;
}
.popup-success__heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}
.popup-success__body {
    font-size: 1rem;
    color: #555;
    margin: 0 0 20px;
    line-height: 1.6;
}
.popup-success__close {
    padding: 10px 32px;
    background: linear-gradient(90deg, #7cd6f7 0%, #15a3ef 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.popup-success__close:hover { opacity: 0.85; }

.contact-form input.field-error,
.contact-form textarea.field-error {
    border-color: #e05555;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.12);
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}
.form-success__check {
    font-size: 2.5rem;
    color: #15a3ef;
    margin: 0 0 10px;
}
.form-success__heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}
.form-success__body {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 560px) {
    #airre-popup__box {
        padding: 32px 20px 24px;
    }
    .popup-name-row {
        flex-direction: column;
        gap: 0;
    }
    #airre-popup__title {
        font-size: 1.3rem;
    }
}

