:root {
    --novo-violet: #6d28d9;
    --novo-violet-dark: #4c1d95;
    --novo-blue: #2563eb;
    --novo-sky: #38bdf8;
    --novo-ink: #101828;
    --novo-text: #344054;
    --novo-muted: #667085;
    --novo-line: #e4e7ec;
    --novo-soft: #f5f7fb;
    --novo-white: #ffffff;
    --novo-success: #16a34a;
    --novo-gradient: linear-gradient(135deg, #6d28d9 0%, #2563eb 62%, #38bdf8 100%);
    --novo-shadow-sm: 0 10px 30px rgba(16, 24, 40, .07);
    --novo-shadow-lg: 0 30px 80px rgba(40, 32, 90, .16);
    --novo-radius-sm: 12px;
    --novo-radius-md: 20px;
    --novo-radius-lg: 32px;
    --novo-shell: 1180px;
}

html { scroll-behavior: smooth; }
body { margin: 0; }

.novo-skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--novo-ink);
    color: #fff;
    transform: translateY(-160%);
}

.novo-skip-link:focus { transform: translateY(0); }
.novo-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.novo-shell {
    width: min(calc(100% - 40px), var(--novo-shell));
    margin-inline: auto;
}

.novo-button {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font: 700 14px/1 Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.novo-button:hover { transform: translateY(-2px); }
.novo-button:focus-visible,
.novo-site-header a:focus-visible,
.novo-site-footer a:focus-visible {
    outline: 3px solid rgba(56, 189, 248, .45);
    outline-offset: 3px;
}
.novo-button--primary {
    color: #fff;
    background: var(--novo-gradient);
    box-shadow: 0 12px 24px rgba(79, 70, 229, .22);
}
.novo-button--quiet {
    color: var(--novo-ink);
    border-color: var(--novo-line);
    background: #fff;
}
.novo-button--light { color: var(--novo-violet-dark); background: #fff; }
.novo-button--outline-light { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.novo-button--wide { width: 100%; }

.novo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--novo-violet);
    font: 800 12px/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.novo-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--novo-gradient);
}
.novo-eyebrow--light { color: rgba(255,255,255,.78); }
.novo-eyebrow--light::before { background: #fff; }

/* Shared header */
.novo-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--novo-ink);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(228, 231, 236, .9);
    box-shadow: 0 6px 24px rgba(16, 24, 40, .035);
    backdrop-filter: blur(18px);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
.novo-topline { color: #fff; background: #111827; }
.novo-topline__inner {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}
.novo-topline p { margin: 0; display: flex; align-items: center; gap: 8px; }
.novo-topline a { color: #fff; text-decoration: none; }
.novo-topline__inner > div { display: flex; align-items: center; gap: 10px; }
.novo-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, .14);
}
.novo-navbar {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}
.novo-brand { width: 148px; height: 42px; display: flex; align-items: center; overflow: hidden; }
.novo-brand img { width: 100%; height: auto; display: block; }
.novo-main-nav { display: flex; align-items: center; gap: 22px; }
.novo-main-nav a {
    position: relative;
    padding: 23px 0;
    color: #475467;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.novo-main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 13px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--novo-gradient);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.novo-main-nav a:hover,
.novo-main-nav a.is-active { color: var(--novo-ink); }
.novo-main-nav a:hover::after,
.novo-main-nav a.is-active::after { transform: scaleX(1); }
.novo-navbar__actions { display: flex; align-items: center; gap: 10px; }
.novo-menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    border: 1px solid var(--novo-line);
    border-radius: 50%;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}
.novo-menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: var(--novo-ink); }
.novo-mobile-menu { border-top: 1px solid var(--novo-line); background: #fff; }
.novo-mobile-menu .novo-shell { padding-block: 14px 22px; display: grid; gap: 2px; }
.novo-mobile-menu a {
    padding: 13px 4px;
    color: var(--novo-ink);
    border-bottom: 1px solid #f0f2f5;
    font: 700 15px/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
    text-decoration: none;
}
.novo-mobile-menu .novo-button { margin-top: 12px; color: #fff; }

/* Shared contact panel */
.novo-contact-layer {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.novo-contact-layer[hidden] { display: none; }
.novo-contact-backdrop { border: 0; background: rgba(15, 23, 42, .48); backdrop-filter: blur(4px); }
.novo-contact-panel {
    position: relative;
    height: 100%;
    padding: 58px 48px;
    overflow-y: auto;
    color: var(--novo-ink);
    background: #fff;
    box-shadow: -30px 0 80px rgba(15, 23, 42, .18);
}
.novo-contact-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--novo-line);
    border-radius: 50%;
    color: var(--novo-ink);
    background: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.novo-contact-panel__intro h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -.04em;
}
.novo-contact-panel__intro p { margin: 0; color: var(--novo-muted); font-size: 16px; line-height: 1.65; }
.novo-contact-form { margin-top: 34px; display: grid; gap: 18px; }
.novo-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.novo-contact-form label { display: grid; gap: 8px; }
.novo-contact-form label > span { color: #344054; font-size: 13px; font-weight: 700; }
.novo-contact-form input,
.novo-contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    color: var(--novo-ink);
    background: #fff;
    font: 500 16px/1.5 Inter, ui-sans-serif, system-ui, sans-serif;
}
.novo-contact-form input:focus,
.novo-contact-form textarea:focus {
    outline: none;
    border-color: var(--novo-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}
.novo-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.novo-form-status { min-height: 20px; margin: 0; color: var(--novo-muted); font-size: 13px; }
.novo-form-status.is-success { color: var(--novo-success); }
.novo-form-status.is-error { color: #dc2626; }
.novo-form-note { margin: 0; color: var(--novo-muted); font-size: 13px; text-align: center; }
.novo-form-note a { color: var(--novo-violet); font-weight: 700; }
body.novo-modal-open { overflow: hidden; }

/* Homepage */
.novo-home {
    min-height: 100vh;
    overflow: hidden;
    color: var(--novo-ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.6;
}
.novo-home *,
.novo-home *::before,
.novo-home *::after { box-sizing: border-box; }
.novo-home h1,
.novo-home h2,
.novo-home h3,
.novo-home p { margin-top: 0; }
.novo-home img { max-width: 100%; }
.novo-home-section { padding: 68px 0; }
.novo-home-section--soft { background: var(--novo-soft); }
.novo-home-heading { max-width: 680px; margin-bottom: 32px; }
.novo-home-heading--center { margin-inline: auto; text-align: center; }
.novo-home-heading h2 {
    margin-bottom: 16px;
    color: var(--novo-ink);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.04;
    letter-spacing: -.048em;
}
.novo-home-heading p { margin-bottom: 0; color: var(--novo-muted); font-size: 16px; line-height: 1.65; }

.novo-hero {
    position: relative;
    padding: 46px 0 36px;
    background:
        radial-gradient(circle at 78% 15%, rgba(37, 99, 235, .12), transparent 30%),
        radial-gradient(circle at 18% 22%, rgba(109, 40, 217, .10), transparent 27%),
        linear-gradient(180deg, #fbfcff 0%, #ffffff 82%);
}
.novo-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dbe3f5, transparent);
}
.novo-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 46px; align-items: center; }
.novo-hero-copy h1 {
    max-width: 730px;
    margin: 0 0 22px;
    color: var(--novo-ink);
    font-size: clamp(44px, 5.4vw, 66px);
    line-height: .99;
    letter-spacing: -.058em;
}
.novo-gradient-text {
    color: transparent;
    background: var(--novo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}
.novo-hero-copy > p { max-width: 620px; margin-bottom: 24px; color: var(--novo-text); font-size: clamp(17px, 1.7vw, 19px); line-height: 1.6; }
.novo-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.novo-hero-actions .novo-button { min-height: 48px; padding-inline: 22px; font-size: 14px; }
.novo-hero-proof { display: flex; flex-wrap: wrap; gap: 22px; }
.novo-hero-proof div { display: grid; gap: 2px; }
.novo-hero-proof strong { color: var(--novo-ink); font-size: 22px; line-height: 1.2; }
.novo-hero-proof span { color: var(--novo-muted); font-size: 12px; font-weight: 650; }
.novo-hero-visual { position: relative; min-height: 440px; }
.novo-hero-photo {
    position: absolute;
    inset: 0 0 34px 40px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--novo-shadow-lg);
}
.novo-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(16, 24, 40, .28));
}
.novo-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.novo-hero-card {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: min(310px, 82%);
    padding: 18px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--novo-shadow-lg);
    backdrop-filter: blur(16px);
}
.novo-hero-card__top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 15px; }
.novo-hero-card__top span:first-child { color: var(--novo-muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.novo-hero-card__top span:last-child { color: var(--novo-success); font-size: 12px; font-weight: 800; }
.novo-hero-card h2 { margin: 0 0 8px; font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }
.novo-hero-card p { margin: 0; color: var(--novo-muted); font-size: 14px; }
.novo-hero-orbit {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--novo-gradient);
    box-shadow: 0 20px 40px rgba(79,70,229,.3);
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.novo-choice-bar { margin-top: 32px; padding: 10px; border: 1px solid var(--novo-line); border-radius: 20px; display: grid; grid-template-columns: auto 1fr 1fr; gap: 8px; background: #fff; box-shadow: var(--novo-shadow-sm); }
.novo-choice-bar > p { margin: 0; padding: 0 16px; display: flex; align-items: center; color: var(--novo-muted); font-size: 13px; font-weight: 800; }
.novo-choice {
    min-height: 64px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--novo-ink);
    background: #f8fafc;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.novo-choice:hover { transform: translateY(-2px); border-color: #c7d2fe; background: #fff; }
.novo-choice__icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--novo-gradient); }
.novo-choice svg { width: 22px; height: 22px; }
.novo-choice strong { display: block; font-size: 15px; }
.novo-choice span { color: var(--novo-muted); font-size: 12px; }
.novo-choice > b { margin-left: auto; font-size: 20px; }

.novo-trust-strip { padding: 20px 0; border-bottom: 1px solid var(--novo-line); background: #fff; }
.novo-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.novo-trust-item { padding: 4px 26px; border-right: 1px solid var(--novo-line); }
.novo-trust-item:first-child { padding-left: 0; }
.novo-trust-item:last-child { border-right: 0; }
.novo-trust-item strong { display: block; margin-bottom: 4px; color: var(--novo-ink); font-size: 17px; }
.novo-trust-item span { color: var(--novo-muted); font-size: 13px; }

.novo-audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.novo-audience-card {
    position: relative;
    min-height: 390px;
    padding: 28px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--novo-shadow-sm);
}
.novo-audience-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.novo-audience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.04) 30%, rgba(15,23,42,.88) 100%); }
.novo-audience-card:hover img { transform: scale(1.035); }
.novo-audience-card__content { position: relative; z-index: 1; max-width: 520px; }
.novo-audience-card__content span { display: inline-flex; margin-bottom: 12px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.novo-audience-card h3 { margin-bottom: 8px; font-size: clamp(28px, 3.3vw, 39px); line-height: 1.05; letter-spacing: -.04em; }
.novo-audience-card p { margin-bottom: 20px; color: rgba(255,255,255,.78); font-size: 16px; }
.novo-audience-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; }

.novo-category-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.novo-category-card {
    grid-column: span 4;
    min-height: 208px;
    padding: 22px;
    border: 1px solid var(--novo-line);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    color: var(--novo-ink);
    background: #fff;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.novo-category-card:nth-child(1),
.novo-category-card:nth-child(5) { grid-column: span 6; }
.novo-category-card:hover { transform: translateY(-5px); border-color: #c4b5fd; box-shadow: var(--novo-shadow-sm); }
.novo-category-icon { width: 46px; height: 46px; margin-bottom: auto; border-radius: 14px; display: grid; place-items: center; color: var(--novo-violet); background: #f2edff; }
.novo-category-icon svg { width: 25px; height: 25px; }
.novo-category-card h3 { margin: 22px 0 6px; font-size: 19px; line-height: 1.25; letter-spacing: -.025em; }
.novo-category-card p { min-height: 43px; margin: 0 0 20px; color: var(--novo-muted); font-size: 14px; line-height: 1.55; }
.novo-category-card > span { display: flex; justify-content: space-between; align-items: center; color: var(--novo-violet); font-size: 13px; font-weight: 800; }
.novo-category-card--gradient { color: #fff; border: 0; background: var(--novo-gradient); }
.novo-category-card--gradient .novo-category-icon { color: #fff; background: rgba(255,255,255,.16); }
.novo-category-card--gradient p,
.novo-category-card--gradient > span { color: rgba(255,255,255,.84); }

.novo-policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.novo-policy-card {
    padding: 18px 20px;
    border: 1px solid var(--novo-line);
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    color: var(--novo-ink);
    background: #fff;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.novo-policy-card:hover { transform: translateY(-3px); border-color: #c4b5fd; box-shadow: var(--novo-shadow-sm); }
.novo-policy-card small { display: block; margin-bottom: 6px; color: var(--novo-violet); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.novo-policy-card strong { display: block; margin-bottom: 5px; font-size: 16px; line-height: 1.35; }
.novo-policy-card p { margin: 0; color: var(--novo-muted); font-size: 13px; line-height: 1.5; }
.novo-policy-card > span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--novo-violet); background: #f2edff; font-size: 18px; font-weight: 800; }
.novo-section-action { margin-top: 28px; display: flex; justify-content: center; }

.novo-process-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items: start; }
.novo-process-intro { position: sticky; top: 140px; }
.novo-process-intro h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 48px); line-height: 1.05; letter-spacing: -.05em; }
.novo-process-intro p { color: var(--novo-muted); font-size: 17px; }
.novo-process-list { display: grid; gap: 14px; }
.novo-process-step {
    padding: 22px;
    border: 1px solid var(--novo-line);
    border-radius: 22px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    background: #fff;
}
.novo-process-step > span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--novo-gradient); font-weight: 800; }
.novo-process-step h3 { margin: 1px 0 7px; font-size: 20px; }
.novo-process-step p { margin: 0; color: var(--novo-muted); font-size: 15px; }

.novo-claims-card {
    position: relative;
    padding: 40px;
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    color: #fff;
    background: #111827;
}
.novo-claims-card::before { content: ""; position: absolute; width: 520px; height: 520px; top: -310px; right: -120px; border-radius: 50%; background: var(--novo-gradient); filter: blur(12px); opacity: .8; }
.novo-claims-card > * { position: relative; z-index: 1; }
.novo-claims-card h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 50px); line-height: 1.03; letter-spacing: -.05em; }
.novo-claims-card p { max-width: 690px; margin-bottom: 28px; color: rgba(255,255,255,.72); font-size: 17px; }
.novo-claims-facts { display: grid; align-content: center; gap: 14px; }
.novo-claims-facts div { padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); }
.novo-claims-facts span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; color: #111827; background: #fff; font-weight: 900; }
.novo-claims-facts strong { font-size: 14px; }

.novo-logo-cloud { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.novo-logo-item { min-height: 78px; padding: 14px; border: 1px solid var(--novo-line); border-radius: 14px; display: grid; place-items: center; background: #fff; }
.novo-logo-item img { max-width: 120px; max-height: 48px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .2s, opacity .2s; }
.novo-logo-item:hover img { filter: grayscale(0); opacity: 1; }
.novo-logo-item span { color: var(--novo-muted); font-size: 13px; font-weight: 800; text-align: center; }
.novo-client-ribbon { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--novo-line); }
.novo-client-ribbon > span { display: block; margin-bottom: 14px; color: var(--novo-muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.novo-client-ribbon__names { display: flex; flex-wrap: wrap; gap: 9px; }
.novo-client-ribbon__names span { padding: 8px 12px; border-radius: 999px; color: var(--novo-text); background: #eef1f7; font-size: 12px; font-weight: 700; }

.novo-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.novo-quote-card { margin: 0; padding: 22px; border: 1px solid var(--novo-line); border-radius: 20px; background: #fff; }
.novo-quote-mark { width: 42px; height: 42px; margin-bottom: 22px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--novo-gradient); font-size: 24px; font-weight: 900; }
.novo-quote-card blockquote { margin: 0 0 24px; color: var(--novo-text); font-size: 15px; line-height: 1.75; }
.novo-quote-card figcaption { padding-top: 18px; border-top: 1px solid var(--novo-line); display: grid; gap: 3px; }
.novo-quote-card figcaption strong { font-size: 14px; }
.novo-quote-card figcaption span { color: var(--novo-muted); font-size: 12px; }

.novo-news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.novo-news-card { border: 1px solid var(--novo-line); border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: .82fr 1.18fr; color: var(--novo-ink); background: #fff; text-decoration: none; }
.novo-news-card__image { min-height: 220px; overflow: hidden; background: #e8ecf5; }
.novo-news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.novo-news-card:hover img { transform: scale(1.04); }
.novo-news-card__body { padding: 22px; display: flex; flex-direction: column; align-items: flex-start; }
.novo-news-card__meta { margin-bottom: 18px; color: var(--novo-violet); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.novo-news-card h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.25; letter-spacing: -.025em; }
.novo-news-card p { margin-bottom: 24px; color: var(--novo-muted); font-size: 14px; line-height: 1.6; }
.novo-news-card__body > span:last-child { margin-top: auto; color: var(--novo-violet); font-size: 13px; font-weight: 800; }

.novo-location-card { padding: 36px; border: 1px solid var(--novo-line); border-radius: 26px; display: grid; grid-template-columns: 1fr .86fr; gap: 44px; align-items: center; background: #fff; }
.novo-location-card h2 { margin-bottom: 14px; font-size: clamp(34px, 4vw, 48px); line-height: 1.05; letter-spacing: -.05em; }
.novo-location-card p { margin-bottom: 26px; color: var(--novo-muted); font-size: 17px; }
.novo-location-card__address { padding: 26px; border-radius: 20px; background: var(--novo-soft); }
.novo-location-card__address span { display: block; margin-bottom: 8px; color: var(--novo-violet); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.novo-location-card__address strong { display: block; margin-bottom: 8px; font-size: 20px; }
.novo-location-card__address p { margin: 0; color: var(--novo-text); font-size: 14px; }

.novo-reveal { opacity: 1; transform: none; }
.novo-js .novo-reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.novo-js .novo-reveal.is-visible { opacity: 1; transform: translateY(0); }

.novo-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    min-height: 48px;
    padding: 0 17px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    background: #16a34a;
    box-shadow: 0 14px 34px rgba(22,163,74,.27);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

/* Shared footer */
.novo-site-footer {
    padding: 56px 0 22px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 10%, rgba(56,189,248,.22), transparent 26%),
        radial-gradient(circle at 14% 36%, rgba(109,40,217,.3), transparent 32%),
        #0f172a;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
.novo-footer-lead { padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.novo-footer-lead h2 { max-width: 640px; margin: 0; font-size: clamp(32px, 4vw, 46px); line-height: 1.05; letter-spacing: -.045em; }
.novo-footer-lead__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.novo-footer-grid { padding: 38px 0; display: grid; grid-template-columns: 1.25fr .7fr .9fr 1.2fr; gap: 36px; }
.novo-footer-brand img { width: 170px; height: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.novo-footer-brand > p { max-width: 310px; margin: 0 0 18px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.7; }
.novo-footer-contact { display: grid; gap: 5px; }
.novo-footer-contact a,
.novo-footer-grid nav a,
.novo-social-links a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s ease; }
.novo-footer-contact a:hover,
.novo-footer-grid nav a:hover,
.novo-social-links a:hover { color: #fff; }
.novo-footer-grid h3 { margin: 0 0 18px; color: #fff; font-size: 14px; }
.novo-footer-grid nav { display: flex; flex-direction: column; align-items: flex-start; }
.novo-footer-grid nav a { margin-bottom: 10px; font-size: 13px; }
.novo-footer-newsletter > p { margin: 0 0 16px; color: rgba(255,255,255,.62); font-size: 13px; }
.novo-footer-newsletter form > div { padding: 5px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; display: grid; grid-template-columns: 1fr 42px; background: rgba(255,255,255,.08); }
.novo-footer-newsletter input[type="email"] { min-width: 0; padding: 0 13px; border: 0; outline: 0; color: #fff; background: transparent; font: 500 14px Inter, ui-sans-serif, system-ui, sans-serif; }
.novo-footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.novo-footer-newsletter button { width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--novo-violet-dark); background: #fff; font-size: 18px; cursor: pointer; }
.novo-footer-newsletter .novo-form-status { color: rgba(255,255,255,.72); margin-top: 7px; }
.novo-social-links { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; }
.novo-social-links a { font-size: 12px; font-weight: 700; }
.novo-footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.46); font-size: 12px; }
.novo-footer-bottom p { margin: 0; }
.novo-footer-bottom > div { display: flex; gap: 18px; }
.novo-footer-bottom a { color: rgba(255,255,255,.56); text-decoration: none; }

/* V3.1 compact page system */
.novo-v3-type-page,
.novo-v3-category-page,
.novo-v3-about-page,
.novo-v3-contact-page,
.novo-v3-news-page {
    color: var(--novo-ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.novo-v3-type-page main,
.novo-v3-category-page main,
.novo-v3-about-page main,
.novo-v3-contact-page main,
.novo-v3-news-page main { overflow: clip; }

/* Insurance type: individual and corporate share this denser template. */
.novo-v3-type-page .container { max-width: 1180px; }
.novo-v3-type-page .breadcrumb { padding: 22px 0 8px; }
.novo-v3-type-page .hero { padding: 14px 0 34px; }
.novo-v3-type-page .hero-grid { gap: 36px; grid-template-columns: 1.12fr .88fr; }
.novo-v3-type-page .hero h1 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 14px; }
.novo-v3-type-page .hero-subtitle { margin-bottom: 22px; font-size: 16px; }
.novo-v3-type-page .hero-cta { margin-bottom: 0; }
.novo-v3-type-page .hero-image img { height: 330px; }
.novo-v3-type-page .trust-strip { padding: 18px 0; }
.novo-v3-type-page .trust-grid { gap: 14px; }
.novo-v3-type-page .trust-card { padding: 13px; }
.novo-v3-type-page .trust-icon { margin-bottom: 6px; font-size: 25px; }
.novo-v3-type-page .how-works,
.novo-v3-type-page .why-section,
.novo-v3-type-page .testimonial-section { padding: 50px 0; }
.novo-v3-type-page .categories-section { padding: 54px 0; }
.novo-v3-type-page .section-header { margin-bottom: 30px; }
.novo-v3-type-page .section-title { font-size: clamp(30px, 3.5vw, 40px); }
.novo-v3-type-page .steps-grid { gap: 18px; }
.novo-v3-type-page .step-card { padding: 24px 20px; }
.novo-v3-type-page .step-number { width: 52px; height: 52px; margin-bottom: 14px; font-size: 22px; }
.novo-v3-type-page .categories-grid { gap: 18px; }
.novo-v3-type-page .category-image { height: 150px; }
.novo-v3-type-page .category-content { padding: 19px; }
.novo-v3-type-page .category-content p { margin-bottom: 12px; }
.novo-v3-type-page .policy-preview { margin-bottom: 13px; padding: 10px 12px; }
.novo-v3-type-page .why-grid { gap: 18px; }
.novo-v3-type-page .why-card { padding: 22px; }
.novo-v3-type-page .why-icon { width: 48px; height: 48px; }
.novo-v3-type-page .stats-section { padding: 34px 0; }
.novo-v3-type-page .stats-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.novo-v3-type-page .stat-card { padding: 20px 14px; }
.novo-v3-type-page .testimonial-card { padding: 30px; }

/* Category: keep the filter visible and move the quote form below the grid. */
.novo-v3-category-page .container { max-width: 1180px; }
.novo-v3-category-page .breadcrumb { padding: 18px 0; font-size: 13px; }
.novo-v3-category-page .hero { padding: 34px; margin-bottom: 24px; border-radius: 20px; }
.novo-v3-category-page .hero-content { max-width: 720px; }
.novo-v3-category-page .hero-badge { padding: 6px 12px; margin-bottom: 10px; }
.novo-v3-category-page .hero h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 10px; }
.novo-v3-category-page .hero p { margin-bottom: 20px; font-size: 16px; }
.novo-v3-category-page .btn { padding: 11px 20px; font-size: 14px; }
.novo-v3-category-page .main-grid { grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; margin-bottom: 42px; align-items: start; }
.novo-v3-category-page .search-bar { margin-bottom: 14px; }
.novo-v3-category-page .search-input { padding: 13px 16px 13px 48px; border-width: 1px; border-radius: 12px; }
.novo-v3-category-page .results-count { margin-bottom: 16px; font-size: 13px; }
.novo-v3-category-page .policy-grid { gap: 16px; margin-bottom: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.novo-v3-category-page .policy-card { border: 1px solid var(--novo-line); border-radius: 16px; box-shadow: 0 8px 26px rgba(16,24,40,.06); }
.novo-v3-category-page .policy-image { height: 160px; }
.novo-v3-category-page .policy-body { padding: 18px; }
.novo-v3-category-page .policy-title { font-size: 17px; }
.novo-v3-category-page .policy-description { margin-bottom: 14px; font-size: 13px; }
.novo-v3-category-page .policy-actions { gap: 9px; }
.novo-v3-category-page .policy-link,
.novo-v3-category-page .btn-whatsapp { font-size: 12px; }
.novo-v3-category-page .btn-whatsapp { padding: 8px 11px; }
.novo-v3-category-page .sidebar-section { padding: 18px; border: 1px solid var(--novo-line); border-radius: 16px; box-shadow: 0 8px 26px rgba(16,24,40,.06); }
.novo-v3-category-page .sidebar-title { margin-bottom: 12px; font-size: 16px; }
.novo-v3-category-page .category-list { max-height: 410px; gap: 7px; }
.novo-v3-category-page .category-item { padding: 8px; gap: 9px; border-width: 1px; }
.novo-v3-category-page .category-icon { width: 42px; height: 42px; }
.novo-v3-category-page .category-name { font-size: 13px; }
.novo-v3-category-page .category-count { font-size: 11px; }
.novo-v3-category-page .contact-form { padding: 24px; border: 1px solid var(--novo-line); border-radius: 18px; box-shadow: 0 10px 32px rgba(16,24,40,.07); }
.novo-v3-category-page .form-subtitle { margin-bottom: 18px; }
.novo-v3-category-page .form-input,
.novo-v3-category-page .form-select,
.novo-v3-category-page .form-textarea { padding: 10px 12px; border-width: 1px; font-size: 13px; }
.novo-v3-category-page .form-label { margin-bottom: 6px; font-size: 12px; }
.novo-v3-category-page .form-textarea { min-height: 74px; }
.novo-v3-category-page .novo-trust-ribbon { padding: 22px 0; }
.novo-v3-category-page .novo-trust-header { margin-bottom: 12px; }
.novo-v3-category-page .novo-trust-rail-wrapper { height: 76px; }
.novo-v3-category-page .testimonials-section { padding: 52px 20px; }

@media (min-width: 901px) {
    .novo-v3-category-page .sidebar { display: contents; }
    .novo-v3-category-page .sidebar-section { grid-column: 2; grid-row: 1; position: sticky; top: 116px; }
    .novo-v3-category-page .contact-form { grid-column: 1 / -1; grid-row: 2; }
    .novo-v3-category-page .contact-form form { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: end; }
    .novo-v3-category-page .contact-form .form-group { margin: 0; }
    .novo-v3-category-page .contact-form .form-group:last-of-type { grid-column: span 3; }
    .novo-v3-category-page .contact-form .btn-submit { align-self: end; min-height: 42px; }
    .novo-v3-category-page .contact-form .form-error[style] { grid-column: 1 / -1; }
}

/* About: remove the near-full-screen hero and oversized card rhythm. */
.novo-v3-about-page section { padding: 52px 0; }
.novo-v3-about-page .hero { min-height: 560px; padding: 52px 0; }
.novo-v3-about-page .hero-content { grid-template-columns: 1.12fr .88fr; gap: 38px; }
.novo-v3-about-page .hero-title { font-size: clamp(38px, 5vw, 58px); margin-bottom: 16px; }
.novo-v3-about-page .hero-description { margin-bottom: 22px; font-size: 16px; }
.novo-v3-about-page .hero-stats { gap: 18px; }
.novo-v3-about-page .hero-visual,
.novo-v3-about-page .story-image-container { height: 390px; }
.novo-v3-about-page .story-grid { gap: 40px; }
.novo-v3-about-page .section-header { margin-bottom: 32px; }
.novo-v3-about-page .section-title { font-size: clamp(32px, 4vw, 42px); }
.novo-v3-about-page .mission-vision-grid,
.novo-v3-about-page .why-choose-grid,
.novo-v3-about-page .values-grid { gap: 16px; }
.novo-v3-about-page .mv-card { padding: 30px; }
.novo-v3-about-page .why-card { padding: 24px; }
.novo-v3-about-page .value-card { padding: 26px 22px; }
.novo-v3-about-page .novo-about-block { padding: 52px 24px; }
.novo-v3-about-page .novo-journey-card { min-height: 200px; padding: 22px; }
.novo-v3-about-page .novo-journey-card h3 { margin-top: 24px; }
.novo-v3-about-page .novo-about-contact-card { padding: 32px; }
.novo-v3-about-page .mobile-footer { display: none; }

/* Contact: equal-height cards created a large empty lower half. */
.novo-v3-contact-page .hero { min-height: 300px; }
.novo-v3-contact-page .hero-content { padding: 44px 20px; }
.novo-v3-contact-page .hero h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 12px; }
.novo-v3-contact-page .hero p { margin-bottom: 20px; }
.novo-v3-contact-page .main-section { padding: 52px 20px 60px; }
.novo-v3-contact-page .content-wrapper { gap: 24px; align-items: start; }
.novo-v3-contact-page .form-card,
.novo-v3-contact-page .info-card { height: auto; padding: 30px; }
.novo-v3-contact-page .form-header,
.novo-v3-contact-page .info-header { margin-bottom: 22px; }
.novo-v3-contact-page .form-group { margin-bottom: 14px; }
.novo-v3-contact-page .contact-list { gap: 8px; }
.novo-v3-contact-page .contact-item { padding: 13px; }
.novo-v3-contact-page .contact-icon { width: 42px; height: 42px; min-width: 42px; }
.novo-v3-contact-page .quick-actions { margin: 18px 0 0; }
.novo-v3-contact-page .map-container { margin-top: 18px; }
.novo-v3-contact-page .map-container iframe { height: 220px; }

/* News: canonical page now uses the shared header, hero and footer. */
.novo-news-hero {
    padding: 54px 0;
    border-bottom: 1px solid var(--novo-line);
    background: radial-gradient(circle at 85% 10%, rgba(56,189,248,.15), transparent 30%), radial-gradient(circle at 10% 80%, rgba(109,40,217,.12), transparent 34%), #f8faff;
}
.novo-news-hero__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.novo-news-hero__inner > div { max-width: 760px; }
.novo-news-hero h1 { margin: 0 0 12px; font-size: clamp(38px, 5vw, 58px); line-height: 1.02; letter-spacing: -.05em; }
.novo-news-hero p { margin: 0; color: var(--novo-muted); font-size: 17px; line-height: 1.65; }
.novo-v3-news-page .novo-news-section { padding: 52px 20px 64px; background: #fff; }
.novo-v3-news-page .novo-news-section__inner { max-width: 1180px; }
.novo-v3-news-page .novo-news-section__header { margin-bottom: 24px; }
.novo-v3-news-page .novo-news-section__header h2 { font-size: 28px; font-weight: 800; }
.novo-v3-news-page .novo-news-section__grid { gap: 18px; }
.novo-v3-news-page .novo-news-section-card { border-color: var(--novo-line); border-radius: 18px; box-shadow: 0 10px 32px rgba(16,24,40,.06); }
.novo-v3-news-page .novo-news-section-card__img img { height: 230px; }
.novo-v3-news-page .novo-news-section-card__body { padding: 20px; }

/* Shared compact CTA for legacy templates. */
.novo-public-cta { padding: 48px 20px; color: var(--novo-ink); background: var(--novo-soft); }
.novo-public-cta__inner { width: min(1140px, 100%); margin: 0 auto; padding: 30px; border: 1px solid var(--novo-line); border-radius: 22px; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: radial-gradient(circle at 100% 0, rgba(56,189,248,.12), transparent 32%), radial-gradient(circle at 0 100%, rgba(109,40,217,.10), transparent 38%), #fff; }
.novo-public-cta__inner > div:first-child { max-width: 680px; }
.novo-public-cta__eyebrow { display: block; margin-bottom: 8px; color: var(--novo-violet); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.novo-public-cta h2 { margin: 0 0 8px; font-size: clamp(28px, 3vw, 38px); line-height: 1.08; letter-spacing: -.035em; }
.novo-public-cta p { margin: 0; color: var(--novo-muted); font-size: 15px; line-height: 1.6; }
.novo-public-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.novo-public-cta__actions a { min-height: 42px; padding: 0 18px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.novo-public-cta__primary { color: #fff; background: var(--novo-gradient); }
.novo-public-cta__secondary { color: var(--novo-text); border: 1px solid var(--novo-line); background: #fff; }

@media (max-width: 1080px) {
    .novo-main-nav { gap: 18px; }
    .novo-desktop-call { display: none; }
    .novo-hero-grid { gap: 40px; }
    .novo-hero-visual { min-height: 500px; }
    .novo-logo-cloud { grid-template-columns: repeat(4, 1fr); }
    .novo-news-card { grid-template-columns: 1fr; }
    .novo-news-card__image { min-height: 220px; }
    .novo-footer-grid { grid-template-columns: 1.2fr .7fr .9fr; }
    .novo-footer-newsletter { grid-column: 1 / -1; max-width: 520px; }
}

@media (max-width: 900px) {
    .novo-main-nav { display: none; }
    .novo-menu-toggle { display: flex; }
    .novo-navbar__actions > .novo-button--primary { display: none; }
    .novo-hero { padding-top: 48px; }
    .novo-hero-grid { grid-template-columns: 1fr; }
    .novo-hero-copy { max-width: 760px; }
    .novo-hero-visual { min-height: 560px; }
    .novo-choice-bar { grid-template-columns: 1fr 1fr; }
    .novo-choice-bar > p { grid-column: 1 / -1; padding: 4px 8px; }
    .novo-trust-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
    .novo-trust-item:nth-child(2) { border-right: 0; }
    .novo-trust-item:nth-child(3) { padding-left: 0; }
    .novo-audience-card { min-height: 430px; padding: 28px; }
    .novo-category-card,
    .novo-category-card:nth-child(1),
    .novo-category-card:nth-child(5) { grid-column: span 6; }
    .novo-process-layout { grid-template-columns: 1fr; gap: 36px; }
    .novo-policy-grid { grid-template-columns: 1fr; }
    .novo-process-intro { position: static; }
    .novo-claims-card { grid-template-columns: 1fr; }
    .novo-logo-cloud { grid-template-columns: repeat(3, 1fr); }
    .novo-testimonial-grid { grid-template-columns: 1fr; }
    .novo-news-grid { grid-template-columns: 1fr; }
    .novo-location-card { grid-template-columns: 1fr; gap: 34px; }
    .novo-footer-lead { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
    .novo-shell { width: min(calc(100% - 28px), var(--novo-shell)); }
    .novo-topline__inner { justify-content: center; }
    .novo-topline__inner > div { display: none; }
    .novo-navbar { min-height: 66px; }
    .novo-brand { width: 142px; height: 42px; }
    .novo-contact-layer { grid-template-columns: 1fr; }
    .novo-contact-backdrop { display: none; }
    .novo-contact-panel { padding: 56px 20px 30px; }
    .novo-contact-form__row { grid-template-columns: 1fr; }
    .novo-home-section { padding: 50px 0; }
    .novo-home-heading { margin-bottom: 26px; }
    .novo-home-heading p { font-size: 16px; }
    .novo-hero-copy h1 { font-size: clamp(38px, 12vw, 52px); }
    .novo-hero-copy > p { font-size: 17px; }
    .novo-hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .novo-hero-proof strong { font-size: 18px; }
    .novo-hero-visual { min-height: 350px; }
    .novo-hero-photo { inset: 0 0 52px 18px; border-radius: 24px; }
    .novo-hero-card { padding: 18px; }
    .novo-hero-orbit { width: 82px; height: 82px; top: -12px; right: -7px; font-size: 10px; }
    .novo-choice-bar { grid-template-columns: 1fr; border-radius: 20px; }
    .novo-choice-bar > p { grid-column: auto; }
    .novo-trust-grid { grid-template-columns: 1fr 1fr; }
    .novo-trust-item { padding-inline: 14px; }
    .novo-trust-item strong { font-size: 15px; }
    .novo-audience-grid { grid-template-columns: 1fr; }
    .novo-audience-card { min-height: 340px; }
    .novo-category-card,
    .novo-category-card:nth-child(1),
    .novo-category-card:nth-child(5) { grid-column: 1 / -1; min-height: 190px; }
    .novo-process-step { padding: 22px; grid-template-columns: 42px 1fr; gap: 15px; }
    .novo-process-step > span { width: 42px; height: 42px; }
    .novo-claims-card { padding: 34px 24px; }
    .novo-logo-cloud { grid-template-columns: repeat(2, 1fr); }
    .novo-news-card__body { padding: 22px; }
    .novo-location-card { padding: 30px 22px; }
    .novo-whatsapp-float { right: 14px; bottom: 14px; width: 48px; padding: 0; justify-content: center; }
    .novo-whatsapp-float span { display: none; }
    .novo-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
    .novo-footer-brand,
    .novo-footer-newsletter { grid-column: 1 / -1; }
    .novo-footer-bottom { flex-direction: column; }
}

@media (max-width: 900px) {
    .novo-v3-type-page .hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .novo-v3-type-page .hero-image img { height: 300px; }
    .novo-v3-type-page .categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .novo-v3-type-page .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .novo-v3-category-page .main-grid { grid-template-columns: 1fr; }
    .novo-v3-category-page .sidebar { position: static; }
    .novo-v3-category-page .contact-form form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .novo-v3-category-page .contact-form .form-group { margin: 0; }
    .novo-v3-category-page .contact-form .form-group:last-of-type,
    .novo-v3-category-page .contact-form .btn-submit { grid-column: 1 / -1; }

    .novo-v3-about-page .hero { min-height: auto; }
    .novo-v3-about-page .hero-content,
    .novo-v3-about-page .story-grid { grid-template-columns: 1fr; gap: 28px; }
    .novo-v3-about-page .hero-visual,
    .novo-v3-about-page .story-image-container { height: 340px; }

    .novo-news-hero__inner { align-items: flex-start; flex-direction: column; gap: 24px; }
}

@media (max-width: 680px) {
    .novo-v3-type-page .container,
    .novo-v3-category-page .container,
    .novo-v3-about-page .container { padding-inline: 16px; }
    .novo-v3-type-page .breadcrumb { padding-top: 16px; }
    .novo-v3-type-page .hero { padding-bottom: 28px; }
    .novo-v3-type-page .hero h1 { font-size: 34px; }
    .novo-v3-type-page .hero-cta { flex-direction: column; }
    .novo-v3-type-page .hero-cta .btn { width: 100%; justify-content: center; }
    .novo-v3-type-page .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .novo-v3-type-page .how-works,
    .novo-v3-type-page .categories-section,
    .novo-v3-type-page .why-section,
    .novo-v3-type-page .testimonial-section { padding: 42px 0; }
    .novo-v3-type-page .steps-grid,
    .novo-v3-type-page .categories-grid { grid-template-columns: 1fr; }
    .novo-v3-type-page .category-image { height: 170px; }

    .novo-v3-category-page .breadcrumb { padding: 14px 0; }
    .novo-v3-category-page .hero { padding: 26px 20px; margin-bottom: 18px; }
    .novo-v3-category-page .hero h1 { font-size: 31px; }
    .novo-v3-category-page .hero p { font-size: 15px; }
    .novo-v3-category-page .policy-grid { grid-template-columns: 1fr; }
    .novo-v3-category-page .policy-image { height: 180px; }
    .novo-v3-category-page .contact-form form { grid-template-columns: 1fr; }
    .novo-v3-category-page .contact-form .form-group:last-of-type,
    .novo-v3-category-page .contact-form .btn-submit { grid-column: auto; }
    .novo-v3-category-page .testimonials-section { padding: 42px 14px; }

    .novo-v3-about-page section,
    .novo-v3-about-page .novo-about-block { padding: 42px 18px; }
    .novo-v3-about-page .hero { padding: 38px 0; }
    .novo-v3-about-page .hero-visual,
    .novo-v3-about-page .story-image-container { height: 290px; }
    .novo-v3-about-page .mv-card,
    .novo-v3-about-page .why-card,
    .novo-v3-about-page .value-card { padding: 22px; }

    .novo-v3-contact-page .hero { min-height: 270px; }
    .novo-v3-contact-page .hero-content { padding: 34px 18px; }
    .novo-v3-contact-page .hero h1 { font-size: 34px; }
    .novo-v3-contact-page .main-section { padding: 38px 14px 84px; }
    .novo-v3-contact-page .form-card,
    .novo-v3-contact-page .info-card { padding: 22px 18px; }

    .novo-news-hero { padding: 40px 0; }
    .novo-news-hero h1 { font-size: 38px; }
    .novo-v3-news-page .novo-news-section { padding: 40px 14px 48px; }
    .novo-v3-news-page .novo-news-section-card__img img { height: 190px; }

    .novo-public-cta { padding: 40px 14px; }
    .novo-public-cta__inner { padding: 24px 20px; align-items: flex-start; flex-direction: column; }
    .novo-public-cta__actions { width: 100%; justify-content: flex-start; }
    .novo-public-cta__actions a { flex: 1 1 180px; }
    .novo-site-footer { padding-top: 44px; }
    .novo-footer-grid { padding: 32px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .novo-home *,
    .novo-site-header *,
    .novo-site-footer * {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .novo-js .novo-reveal { opacity: 1; transform: none; }
}
