:root {
    --bg: #ffffff;
    --panel: #ffffff;
    --text: #04243D;
    --muted: #8C8C8C;
    --line: #E2E4E6;
    --brand: #def3bf;
    --brand-dark: #c7e39a;
    --accent: #967842;
    --heading: #04243D;
    --hero-bg: #04243D;
    --panel-tint: #eef7df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Barlow", Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-shell { min-height: 100vh; }
.section { padding: 72px 20px; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; }
.header-bar {
    background: var(--heading) !important;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    padding: 12px 20px;
}
.brand img { width: 252px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 16px; color: #fff; }
.site-nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.site-nav-link.is-active {
    color: var(--brand) !important;
}
.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: var(--heading);
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 8px 18px rgba(87, 109, 120, 0.16);
}
.hero {
    background-image:
        linear-gradient(rgba(4, 36, 61, 0.68), rgba(4, 36, 61, 0.68)),
        url("../img/form-header-bg.jpg"),
        linear-gradient(180deg, #0A2A45 0%, #04243D 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 990px;
    padding-top: 300px;
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
    align-items: end;
    min-height: 100%;
}
.hero-copy {
    max-width: 760px;
    position: relative;
    z-index: 1;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 36, 61, 0.2) 0%, rgba(4, 36, 61, 0) 40%),
        radial-gradient(ellipse at 78% 18%, rgba(150, 120, 66, 0.12) 0%, transparent 58%);
    pointer-events: none;
}
.eyebrow {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading);
    margin-bottom: 14px;
}
h1, h2, h3 { margin: 0 0 16px; line-height: 1.06; }
h1, .section-heading h2 {
    font-family: "DM Sans", "Barlow", Arial, Helvetica, sans-serif;
    font-weight: 800;
    color: var(--heading);
}
h1 {
    font-size: 68px;
    max-width: 1120px;
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.hero h1 { color: #fff; }
.subhead {
    font-size: 20px;
    font-family: "Barlow", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    max-width: 840px;
    margin-bottom: 26px;
    line-height: 1.35;
}
.button-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.button-primary, .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid transparent;
}
.button-primary { background: var(--brand); color: var(--heading); }
.button-secondary {
    background: #fff;
    color: var(--heading);
    border-color: rgba(87, 109, 120, 0.12);
    box-shadow: 0 10px 24px rgba(87, 109, 120, 0.12);
}
.button-gmstudio {
    background: #576d78;
    color: var(--brand);
    border-color: rgba(222, 243, 191, 0.24);
    box-shadow: 0 10px 24px rgba(87, 109, 120, 0.22);
}
.button-gmstudio:hover { background: #4f646e; }
.button-secondary:hover { background: #f8fafc; }
.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-heading h2 { font-size: 48px; letter-spacing: -0.03em; }
#Credibility .section-heading h2 { white-space: nowrap; }
.section-heading p { margin: 0; color: var(--muted); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}
.feature-card, .testimonial-card, .form-card {
    background: var(--panel);
    border: 1px solid rgba(4, 36, 61, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(4, 36, 61, 0.06);
}
.form-card {
    padding: 32px;
}
.form-card form {
    padding: 0;
}
.icon-box-card {
    text-align: center;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 24px 20px;
}
.icon-box-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid #576d78;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: var(--heading);
    flex-shrink: 0;
}
.icon-box-circle svg {
    width: 34px;
    height: 34px;
    fill: #576d78;
}
.feature-card h3 { font-size: 22px; margin: 0; letter-spacing: -0.01em; line-height: 1.2; }
.feature-card p { font-size: 14px; color: var(--muted); margin: 4px 0 0; line-height: 1.4; }
.testimonial-card p, .lead-copy p, .contact-list, .field-help, .submit-message {
    color: var(--muted);
}
.credibility-section {
    background: #576d78;
}
.credibility-heading {
    max-width: 760px;
    margin-bottom: 56px;
}
.credibility-section .credibility-heading .eyebrow {
    color: var(--brand);
    margin-bottom: 18px;
}
.credibility-section .credibility-heading h2 {
    color: #fff;
    font-size: 54px;
    line-height: 1.04;
    letter-spacing: -0.04em;
    white-space: normal;
}
.credibility-section .feature-card {
    border: none;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: none;
}
.credibility-section .icon-box-card {
    min-height: 262px;
    gap: 26px;
}
.credibility-section .icon-box-circle {
    width: 100px;
    height: 100px;
}
.credibility-section .icon-box-circle svg {
    width: 42px;
    height: 42px;
}
.credibility-section .feature-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--heading);
}
.credibility-section .feature-card p {
    display: none;
}
.methodology-section {
    background: #576d78;
    position: relative;
    overflow: hidden;
}
.methodology-section::before,
.methodology-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.03);
}
.methodology-section::before { left: 8%; }
.methodology-section::after { left: 22%; }
.process-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    margin-bottom: 56px;
}
.methodology-section .process-heading .eyebrow {
    color: var(--brand);
    margin-bottom: 18px;
}
.methodology-section .process-heading h2 {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}
.process-card {
    background: #fff;
    color: var(--heading);
    border-radius: 16px;
    padding: 20px 24px 18px;
    min-height: 180px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 16px;
}
.process-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 78px;
    left: calc(100% + 1px);
    width: 28px;
    border-top: 2px dashed var(--brand);
}
.process-card-number {
    position: absolute;
    top: -15px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #576d78;
    letter-spacing: 0;
}
.process-card-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 1px solid #576d78;
    background: #576d78;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-card-icon svg {
    width: 34px;
    height: 34px;
    fill: var(--brand);
}
.process-card h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading);
}
.process-card p {
    display: none;
}
.demo-section {
    background-image:
        linear-gradient(rgba(87, 109, 120, 0.64), rgba(87, 109, 120, 0.64)),
        url("../img/ACCURACY-SLIDE-01-1140x500.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}
.demo-shell {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    position: relative;
}
.demo-play {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    cursor: pointer;
    padding: 0;
}
.demo-play svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 4px;
}
.demo-play:hover,
.demo-play:focus {
    border-color: var(--brand);
    background: rgba(222, 243, 191, 0.18);
}
.demo-play:hover svg,
.demo-play:focus svg {
    fill: var(--brand);
}
.video-modal-open {
    overflow: hidden;
}
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.video-modal[hidden] {
    display: none;
}
.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(87, 109, 120, 0.82);
}
.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
}
.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
}
.video-modal-close:hover,
.video-modal-close:focus {
    color: var(--brand);
}
.video-modal-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.demo-copy {
    max-width: 860px;
    position: relative;
    z-index: 1;
}
.demo-eyebrow {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.demo-copy h2 {
    font-family: "DM Sans", "Barlow", Arial, Helvetica, sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 14px;
}
.demo-copy p {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}
.testimonial-section { position: relative; }
.testimonial-card {
    background: #fff;
    color: var(--heading);
    border: none;
    border-radius: 0;
    padding: 18px 48px 26px 36px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    max-width: none;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
    min-width: 0;
    clear: both;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #576d78;
}
.testimonial-quote-svg {
    position: absolute;
    right: 28px;
    bottom: 18px;
    width: 76px;
    height: 76px;
    opacity: 1;
}
.testimonial-quote-svg svg { fill: none; stroke: #576d78; stroke-width: 20px; width: 100%; height: 100%; }
.testimonial-card blockquote {
    display: block;
    margin: 0;
    font-family: "DM Sans", "Barlow", Arial, Helvetica, sans-serif;
    font-size: 32px;
    line-height: 1.26;
    font-weight: 800;
    color: #576d78;
    max-width: 1220px;
    width: 100%;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}
.testimonial-card blockquote .highlight {
    color: #fff;
    background: #576d78;
    padding: 0 8px 2px;
    border-radius: 6px;
    font-style: italic;
}
.testimonial-attribution {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.testimonial-name {
    font-size: 26px;
    font-weight: 700;
    color: #576d78;
    letter-spacing: -0.01em;
}
.testimonial-title {
    font-size: 16px;
    font-weight: 700;
    color: #576d78;
}
.lead-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}
.lead-copy {
    position: relative;
    max-width: none;
    min-height: 640px;
    padding: 120px 40px 48px;
    border-radius: 24px;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(87, 109, 120, 0.78), rgba(87, 109, 120, 0.78)),
        url("../img/lead-panel-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 45px rgba(87, 109, 120, 0.08);
}
.lead-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(87, 109, 120, 0.18) 0%, rgba(87, 109, 120, 0.34) 100%);
    pointer-events: none;
}
.lead-copy > * {
    position: relative;
    z-index: 1;
}
.lead-copy .lead-eyebrow {
    font-family: "Barlow", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
}
.lead-copy .lead-title {
    font-family: "DM Sans", "Barlow", Arial, Helvetica, sans-serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.07;
    color: #fff;
    margin-bottom: 20px;
}
.lead-title-primary {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    padding-top: 26px;
}
.lead-copy p {
    max-width: 500px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
}
.lead-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    color: #fff;
}
.lead-list li {
    position: relative;
    padding-left: 34px;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}
.lead-list li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand);
    color: #576d78;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}
.lead-secondary-block {
    margin-top: 34px;
    padding-top: 28px;
}
.lead-title-primary {
    margin-top: 30px;
}
.lead-secondary-block h3,
.lead-secondary-block h4 {
    margin: 0;
    color: #fff;
}
.lead-secondary-block h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}
.lead-secondary-block h4 {
    font-family: "DM Sans", "Barlow", Arial, Helvetica, sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.lead-list-secondary {
    margin-top: 0;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.field.full { grid-column: 1 / -1; }
label { font-size: 15px; font-weight: 700; }
input, textarea, select {
    width: 100%;
    border: 1px solid rgba(87, 109, 120, 0.45);
    border-radius: 10px;
    padding: 16px 18px;
    font: inherit;
    color: var(--text);
    background: #fff;
}
.field-help-inline {
    margin-top: -2px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}
.form-card {
    min-height: 640px;
    display: flex;
    align-items: stretch;
}
.form-card form {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.interest-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px;
    border-radius: 16px;
    background: #eef3f7;
    border: 1px solid rgba(87, 109, 120, 0.16);
}
.interest-option {
    position: relative;
    cursor: pointer;
}
.interest-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}
.interest-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid rgba(87, 109, 120, 0.28);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #576d78;
    background: transparent;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.interest-option input:checked + span {
    background: var(--brand);
    color: #04243D;
    border-color: #576d78;
    box-shadow: 0 10px 24px rgba(87, 109, 120, 0.12);
}
.form-error {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff2f0;
    border: 1px solid #f1b5ad;
    color: #8b2a1f;
    font-size: 15px;
    font-weight: 600;
}
select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(87, 109, 120, 0.65) 50%), linear-gradient(135deg, rgba(87, 109, 120, 0.65) 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}
textarea { min-height: 220px; resize: vertical; }
.form-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.submit-button {
    border: 1px solid #576d78;
    border-radius: 8px;
    min-height: 54px;
    padding: 14px 20px;
    background: var(--brand);
    color: var(--heading);
    font: inherit;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0;
    cursor: pointer;
    box-shadow: none;
}
.submit-button:hover {
    background: #576d78;
    color: var(--brand);
}
.submit-message {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #7f7164;
}
.footer { background: #576d78; color: #fff; padding-top: 48px; padding-bottom: 48px; }
.footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.footer .brand img { filter: none; }
.footer .field-help { color: rgba(255, 255, 255, 0.6); }
.footer h3 { color: #fff; margin-bottom: 20px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    color: #fff;
}
.contact-list .icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.contact-list .icon-svg svg { fill: var(--brand); width: 100%; height: 100%; }
.social-icon-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}
.social-icon-link:hover { background: rgba(255, 255, 255, 0.2); }
.social-icon-link svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.copyright {
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

@media (max-width: 960px) {
    .hero-grid, .lead-grid, .footer-grid, .feature-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card:not(:last-child)::after { display: none; }
    .testimonial-card {
        max-width: 100%;
        padding: 18px 28px 88px 24px;
    }
    .nav-links nav { display: none; }
    h1 { font-size: 46px; }
    .demo-copy h2 { font-size: 40px; }
    .credibility-section .credibility-heading h2 { font-size: 42px; }
    .methodology-section .process-heading h2 { font-size: 42px; }
    .section-heading h2, .lead-copy .lead-title { font-size: 36px; }
    .testimonial-card blockquote { font-size: 24px; }
    .testimonial-name { font-size: 22px; }
    .lead-copy {
        min-height: auto;
        padding: 120px 28px 32px;
    }
    .hero { padding-top: 72px; padding-bottom: 72px; }
    .header-inner { padding-top: 20px; padding-bottom: 20px; }
}

@media (max-width: 640px) {
    .header-inner, .section { padding-left: 16px; padding-right: 16px; }
    .form-grid { grid-template-columns: 1fr; }
    .interest-slider { grid-template-columns: 1fr; }
    .feature-grid, .process-grid { grid-template-columns: 1fr; }
    h1 { font-size: 36px; }
    .subhead { font-size: 20px; }
    .demo-shell { min-height: 440px; }
    .demo-play {
        width: 84px;
        height: 84px;
    }
    .demo-copy h2 { font-size: 32px; }
    .credibility-section .credibility-heading h2 { font-size: 34px; }
    .methodology-section .process-heading h2 { font-size: 34px; }
    .section-heading h2, .lead-copy .lead-title { font-size: 32px; }
    .testimonial-card blockquote { font-size: 20px; }
    .testimonial-quote-svg {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
    }
    .lead-copy {
        padding: 96px 24px 28px;
    }
    .feature-card, .form-card, .process-card { padding: 24px; }
    .testimonial-card { padding: 40px 24px; }
    .process-grid { grid-template-columns: 1fr; }
    .testimonial-quote-icon { width: 60px; top: -20px; left: 10px; }
    .form-card { padding: 24px; }
    .form-card form { padding: 0; }
}
