:root {
    --geo-bg: #071015;
    --geo-bg-soft: #0d1920;
    --geo-surface: #ffffff;
    --geo-surface-soft: #f3f7f7;
    --geo-ink: #122027;
    --geo-muted: #607078;
    --geo-line: #dce6e6;
    --geo-line-dark: #26363d;
    --geo-primary: #00a982;
    --geo-primary-dark: #007e63;
    --geo-cyan: #42d7e9;
    --geo-white: #f8ffff;
    --geo-max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--geo-ink);
    background: var(--geo-surface);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.geo-menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 8px;
    left: 8px;
    padding: 8px 14px;
    color: #fff;
    background: var(--geo-primary-dark);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.geo-container {
    width: min(calc(100% - 48px), var(--geo-max));
    margin: 0 auto;
}

.geo-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 76px;
    color: var(--geo-white);
    background: rgba(7, 16, 21, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: height .2s ease, box-shadow .2s ease;
}

.geo-header.is-scrolled {
    height: 66px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.geo-nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.geo-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--geo-white);
}

.geo-brand img {
    width: auto;
    height: 38px;
    max-width: 156px;
    object-fit: contain;
}

.geo-brand-name {
    overflow: hidden;
    max-width: 230px;
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.geo-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.geo-nav a {
    position: relative;
    color: #becdd0;
    font-size: 14px;
    transition: color .2s ease;
}

.geo-nav a:not(.geo-nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--geo-primary);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.geo-nav a:hover,
.geo-nav a.is-active {
    color: #fff;
}

.geo-nav a:hover::after,
.geo-nav a.is-active::after {
    transform: scaleX(1);
}

.geo-nav .geo-nav-cta {
    padding: 9px 18px;
    color: #04120e;
    font-weight: 700;
    background: var(--geo-primary);
    border: 1px solid var(--geo-primary);
    border-radius: 4px;
}

.geo-nav .geo-nav-cta:hover {
    color: #04120e;
    background: #18c79d;
}

.geo-menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--geo-line-dark);
    border-radius: 4px;
    cursor: pointer;
}

.geo-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.geo-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.geo-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.geo-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.geo-hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 96px;
    color: var(--geo-white);
    background: var(--geo-bg);
}

.geo-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 95%);
}

.geo-hero::before {
    position: absolute;
    top: 76px;
    right: 0;
    width: 46%;
    height: 1px;
    content: "";
    background: var(--geo-primary);
    opacity: .55;
}

.geo-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
    gap: 70px;
    align-items: center;
}

.geo-eyebrow,
.geo-section-tag {
    margin: 0 0 18px;
    color: var(--geo-primary);
    font-size: 14px;
    font-weight: 700;
}

.geo-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.geo-eyebrow span {
    width: 8px;
    height: 8px;
    background: var(--geo-cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(66, 215, 233, .1);
}

.geo-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.18;
}

.geo-hero h1 strong {
    color: var(--geo-primary);
    font-weight: 800;
}

.geo-hero-lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: #a9bbc0;
    font-size: 18px;
    line-height: 1.9;
}

.geo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.geo-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.geo-btn:hover {
    transform: translateY(-2px);
}

.geo-btn-primary {
    color: #04120e;
    background: var(--geo-primary);
    border-color: var(--geo-primary);
}

.geo-btn-primary:hover {
    color: #04120e;
    background: #18c79d;
}

.geo-btn-secondary {
    color: #e8f3f3;
    background: transparent;
    border-color: #3a4b51;
}

.geo-btn-secondary:hover {
    color: #fff;
    border-color: #72848a;
}

.geo-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 42px 0 0;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    list-style: none;
}

.geo-proof li {
    color: #b9c7ca;
    font-size: 14px;
}

.geo-proof span {
    margin-right: 6px;
    color: var(--geo-primary);
    font-weight: 700;
}

.geo-answer-map {
    width: min(100%, 500px);
    aspect-ratio: 1 / 1;
    position: relative;
    justify-self: end;
}

.geo-answer-map::before,
.geo-answer-map::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(66, 215, 233, .18);
    border-radius: 50%;
}

.geo-answer-map::before { inset: 8%; }
.geo-answer-map::after { inset: 25%; border-style: dashed; }

.geo-map-axis {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(66, 215, 233, .16);
}

.geo-map-axis.axis-x { width: 84%; height: 1px; transform: translate(-50%, -50%) rotate(19deg); }
.geo-map-axis.axis-y { width: 1px; height: 84%; transform: translate(-50%, -50%) rotate(19deg); }

.geo-map-core {
    width: 142px;
    height: 142px;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background: #10272a;
    border: 1px solid var(--geo-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 14px rgba(0, 169, 130, .07), 0 0 60px rgba(0, 169, 130, .22);
}

.geo-map-core span { font-size: 38px; font-weight: 800; line-height: 1; }
.geo-map-core small { margin-top: 10px; color: #9ab0b3; }

.geo-map-node {
    min-width: 76px;
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    color: #c5d4d6;
    font-size: 12px;
}

.geo-map-node b {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--geo-white);
    font-size: 18px;
    background: #14262d;
    border: 1px solid #31515b;
    border-radius: 50%;
}

.node-deepseek { top: 3%; left: 39%; }
.node-doubao { top: 40%; right: 0; }
.node-qwen { right: 18%; bottom: 4%; }
.node-yiyan { bottom: 12%; left: 4%; }

.geo-query-card {
    width: 210px;
    position: absolute;
    z-index: 4;
    padding: 13px 15px;
    color: #dbe6e7;
    background: #0d1d23;
    border: 1px solid #284047;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .24);
}

.geo-query-card small { display: block; margin-bottom: 4px; color: var(--geo-primary); }
.geo-query-card strong { display: block; font-size: 13px; font-weight: 600; line-height: 1.55; }
.query-one { top: 12%; left: -5%; }
.query-two { right: -2%; bottom: 19%; }

.geo-platforms {
    padding: 30px 0;
    background: #0b171c;
    border-top: 1px solid #1c3037;
}

.geo-platforms .geo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.geo-platforms p { margin: 0; color: #809499; font-size: 13px; white-space: nowrap; }
.geo-platform-list { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 18px 34px; }
.geo-platform-list span { color: #c4d0d2; font-size: 15px; font-weight: 700; }

.geo-section {
    padding: 100px 0;
    scroll-margin-top: 65px;
}

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

.geo-section-heading h2,
.geo-definition-copy h2,
.geo-delivery-copy h2,
.geo-faq-intro h2,
.geo-consult-copy h2 {
    margin: 0;
    color: var(--geo-ink);
    font-size: 40px;
    line-height: 1.3;
}

.geo-section-heading > p:last-child,
.geo-definition-copy > p,
.geo-delivery-copy > p,
.geo-faq-intro > p {
    margin: 18px 0 0;
    color: var(--geo-muted);
    font-size: 17px;
}

.geo-pain-section { background: var(--geo-surface-soft); }
.geo-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.geo-pain-card {
    min-height: 290px;
    position: relative;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--geo-line);
    border-radius: 6px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.geo-pain-card:hover {
    border-color: #9bcfc4;
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(33, 67, 69, .08);
}

.geo-card-index { position: absolute; top: 24px; right: 28px; color: #bdcaca; font-size: 13px; font-weight: 700; }
.geo-card-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; color: var(--geo-primary-dark); font-size: 24px; font-weight: 800; background: #e4f6f1; border-radius: 4px; }
.geo-pain-card h3 { margin: 27px 0 12px; font-size: 22px; }
.geo-pain-card p { margin: 0; color: var(--geo-muted); }

.geo-definition-layout,
.geo-delivery-layout,
.geo-faq-layout,
.geo-consult-layout {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 78px;
    align-items: center;
}

.geo-check-list { margin-top: 28px; }
.geo-check-list p { display: flex; gap: 12px; margin: 12px 0; color: #34464d; }
.geo-check-list span { width: 23px; height: 23px; flex: 0 0 23px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; background: var(--geo-primary); border-radius: 50%; }

.geo-compare { overflow: hidden; border: 1px solid var(--geo-line); border-radius: 6px; box-shadow: 0 22px 60px rgba(28, 57, 60, .08); }
.geo-compare-row { display: grid; grid-template-columns: .75fr 1fr 1fr; }
.geo-compare-row > * { min-width: 0; padding: 20px; border-right: 1px solid var(--geo-line); border-bottom: 1px solid var(--geo-line); }
.geo-compare-row > *:last-child { border-right: 0; color: var(--geo-primary-dark); font-weight: 700; background: #effaf7; }
.geo-compare-head > * { color: #fff !important; font-size: 14px; font-weight: 700; background: var(--geo-bg-soft) !important; }
.geo-compare-row strong { font-size: 14px; }
.geo-compare-row span { color: var(--geo-muted); font-size: 14px; }
.geo-compare-note { margin: 0; padding: 16px 20px; color: var(--geo-muted); font-size: 13px; background: #f8fafa; }

.geo-services-section { color: #fff; background: var(--geo-bg); }
.geo-section-heading-light h2 { color: #fff; }
.geo-section-heading-light > p:last-child { color: #9cafb3; }
.geo-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.geo-service-card { min-height: 440px; padding: 28px; background: #0d1a20; border: 1px solid var(--geo-line-dark); border-radius: 6px; transition: border-color .2s ease, transform .2s ease; }
.geo-service-card:hover { border-color: var(--geo-primary); transform: translateY(-4px); }
.geo-service-top { display: flex; align-items: center; justify-content: space-between; }
.geo-service-top span { color: #667a80; font-size: 13px; font-weight: 700; }
.geo-service-top i { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: var(--geo-primary); font-size: 18px; font-style: normal; font-weight: 700; background: #132b2c; border: 1px solid #22514a; border-radius: 4px; }
.geo-service-card h3 { margin: 30px 0 12px; font-size: 21px; }
.geo-service-card p { min-height: 83px; margin: 0; color: #94a8ac; font-size: 14px; }
.geo-service-card ul { margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid #23343b; list-style: none; }
.geo-service-card li { position: relative; margin: 9px 0; padding-left: 16px; color: #c1ced0; font-size: 14px; }
.geo-service-card li::before { position: absolute; top: 10px; left: 0; width: 5px; height: 5px; content: ""; background: var(--geo-primary); }

.geo-process-section { background: var(--geo-surface-soft); }
.geo-process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: process; }
.geo-process-list li { min-height: 240px; position: relative; padding: 26px 24px; background: #fff; border-top: 1px solid var(--geo-line); border-bottom: 1px solid var(--geo-line); border-left: 1px solid var(--geo-line); }
.geo-process-list li:first-child { border-radius: 6px 0 0 6px; }
.geo-process-list li:last-child { border-right: 1px solid var(--geo-line); border-radius: 0 6px 6px 0; }
.geo-process-list li:not(:last-child)::after { position: absolute; z-index: 2; top: 44px; right: -9px; width: 16px; height: 16px; content: ""; background: #fff; border-top: 1px solid var(--geo-line); border-right: 1px solid var(--geo-line); transform: rotate(45deg); }
.geo-process-list > li > span { color: var(--geo-primary); font-size: 26px; font-weight: 800; }
.geo-process-list h3 { margin: 24px 0 10px; font-size: 18px; }
.geo-process-list p { margin: 0; color: var(--geo-muted); font-size: 14px; }

.geo-delivery-section { overflow: hidden; }
.geo-report { border: 1px solid var(--geo-line); border-radius: 6px; box-shadow: 0 24px 70px rgba(24, 63, 65, .12); }
.geo-report-head { height: 58px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; background: #102027; border-radius: 5px 5px 0 0; }
.geo-report-head div { display: flex; gap: 5px; }
.geo-report-head div span { width: 8px; height: 8px; background: #52666b; border-radius: 50%; }
.geo-report-head strong { color: #e5efef; font-size: 13px; }
.geo-report-head small { justify-self: end; color: #83969a; }
.geo-report-body { padding: 30px; background: #fff; }
.geo-report-score { display: grid; grid-template-columns: 112px 1fr; gap: 22px; align-items: center; }
.geo-report-score div { width: 112px; height: 112px; display: flex; align-items: center; justify-content: center; flex-direction: column; background: #eff9f6; border: 10px solid #b9e8dd; border-radius: 50%; }
.geo-report-score strong { color: var(--geo-primary-dark); font-size: 20px; }
.geo-report-score span { color: var(--geo-muted); font-size: 11px; }
.geo-report-score p { margin: 0; color: var(--geo-muted); font-size: 14px; }
.geo-report-bars { margin-top: 28px; }
.geo-report-bars > div { display: grid; grid-template-columns: 78px 1fr; gap: 12px; align-items: center; margin: 13px 0; }
.geo-report-bars span { color: var(--geo-muted); font-size: 12px; }
.geo-report-bars i { height: 8px; display: block; overflow: hidden; background: #e7eeee; border-radius: 4px; }
.geo-report-bars b { height: 100%; display: block; background: var(--geo-primary); border-radius: 4px; }
.geo-report-caption { margin: 22px 0 0; padding-top: 16px; color: #8b999d; font-size: 11px; border-top: 1px solid var(--geo-line); }
.geo-delivery-layout { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
.geo-delivery-items { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.geo-delivery-items div { padding: 16px 0 16px 17px; border-left: 3px solid var(--geo-primary); }
.geo-delivery-items strong, .geo-delivery-items span { display: block; }
.geo-delivery-items strong { margin-bottom: 5px; font-size: 15px; }
.geo-delivery-items span { color: var(--geo-muted); font-size: 13px; }

.geo-industries-section { background: var(--geo-surface-soft); }
.geo-industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.geo-industry-grid > div { min-height: 168px; display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; column-gap: 18px; align-content: center; padding: 26px; background: #fff; border: 1px solid var(--geo-line); border-radius: 6px; }
.geo-industry-grid span { width: 52px; height: 52px; grid-row: 1 / 3; display: flex; align-items: center; justify-content: center; color: var(--geo-primary-dark); font-weight: 800; background: #e7f7f3; border-radius: 4px; }
.geo-industry-grid h3 { align-self: end; margin: 0 0 4px; font-size: 18px; }
.geo-industry-grid p { align-self: start; margin: 0; color: var(--geo-muted); font-size: 13px; }

.geo-faq-layout { grid-template-columns: .72fr 1.28fr; align-items: start; }
.geo-faq-intro { position: sticky; top: 100px; }
.geo-faq-intro a { display: inline-block; margin-top: 24px; color: var(--geo-primary-dark); font-weight: 700; border-bottom: 1px solid var(--geo-primary); }
.geo-faq-list { border-top: 1px solid var(--geo-line); }
.geo-faq-list details { border-bottom: 1px solid var(--geo-line); }
.geo-faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--geo-ink); font-size: 17px; font-weight: 700; cursor: pointer; list-style: none; }
.geo-faq-list summary::-webkit-details-marker { display: none; }
.geo-faq-list summary span { width: 28px; height: 28px; flex: 0 0 28px; display: flex; align-items: center; justify-content: center; color: var(--geo-primary-dark); font-size: 23px; font-weight: 400; transition: transform .2s ease; }
.geo-faq-list details[open] summary span { transform: rotate(45deg); }
.geo-faq-list details p { margin: -4px 48px 24px 0; color: var(--geo-muted); }

.geo-consult-section {
    padding: 100px 0;
    scroll-margin-top: 65px;
    color: #fff;
    background: #0a171c;
    border-top: 1px solid #203137;
}

.geo-consult-layout { grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr); align-items: start; }
.geo-consult-copy h2 { color: #fff; font-size: 44px; }
.geo-consult-copy > p { max-width: 560px; margin: 20px 0 0; color: #9cafb3; font-size: 17px; }
.geo-company-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 40px; background: #294047; border: 1px solid #294047; }
.geo-company-info p { min-width: 0; margin: 0; padding: 18px; background: #0d1d23; }
.geo-company-info span, .geo-company-info strong, .geo-company-info a { display: block; overflow-wrap: anywhere; }
.geo-company-info span { margin-bottom: 5px; color: #71858a; font-size: 12px; }
.geo-company-info strong, .geo-company-info a { color: #d8e5e6; font-size: 14px; font-weight: 600; }
.geo-consult-form { padding: 34px; color: var(--geo-ink); background: #fff; border-top: 4px solid var(--geo-primary); border-radius: 4px; }
.geo-form-heading h3 { margin: 0; font-size: 24px; }
.geo-form-heading p { margin: 5px 0 22px; color: var(--geo-muted); font-size: 13px; }
.geo-consult-form label { display: block; margin-top: 16px; font-size: 13px; font-weight: 700; }
.geo-consult-form input, .geo-consult-form textarea { width: 100%; margin-top: 7px; padding: 12px 13px; color: var(--geo-ink); background: #f7f9f9; border: 1px solid #d7e0e1; border-radius: 3px; outline: 0; resize: vertical; }
.geo-consult-form input { height: 46px; }
.geo-consult-form input:focus, .geo-consult-form textarea:focus { border-color: var(--geo-primary); box-shadow: 0 0 0 3px rgba(0, 169, 130, .1); }
.geo-consult-form .geo-btn { width: 100%; margin-top: 22px; }
.geo-consult-form .geo-btn:disabled { cursor: wait; opacity: .65; transform: none; }
.geo-form-status { min-height: 24px; margin: 10px 0 0; color: var(--geo-primary-dark); font-size: 13px; text-align: center; }
.geo-form-status.is-error { color: #c23d32; }

.geo-footer { padding: 48px 0 24px; color: #9aadb1; background: #061015; border-top: 1px solid #1b2b31; }
.geo-footer-main { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; }
.geo-footer-main > p { margin: 0; font-size: 14px; }
.geo-footer-main nav { display: flex; gap: 22px; }
.geo-footer-main nav a { color: #c6d3d5; font-size: 13px; }
.geo-footer-main nav a:hover { color: var(--geo-primary); }
.geo-footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 34px; padding-top: 22px; font-size: 12px; border-top: 1px solid #1b2b31; }
.geo-footer-bottom p { margin: 0; }

.geo-floating-contact {
    position: fixed;
    z-index: 800;
    right: 18px;
    bottom: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 9px 14px;
    color: #03100d;
    background: var(--geo-primary);
    border: 1px solid #31d8b0;
    border-radius: 4px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .24);
}
.geo-floating-contact span { font-size: 11px; }
.geo-floating-contact strong { font-size: 13px; }

/* Motion: content reveal */
body.geo-motion-ready .geo-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--geo-delay, 0ms);
    will-change: opacity, transform;
}

body.geo-motion-ready .geo-reveal.geo-reveal-left {
    transform: translate3d(-34px, 0, 0);
}

body.geo-motion-ready .geo-reveal.geo-reveal-right {
    transform: translate3d(34px, 0, 0);
}

body.geo-motion-ready .geo-reveal.geo-reveal-scale {
    transform: scale(.96);
}

body.geo-motion-ready .geo-reveal.is-visible,
body.geo-motion-ready .geo-reveal.geo-reveal-left.is-visible,
body.geo-motion-ready .geo-reveal.geo-reveal-right.is-visible,
body.geo-motion-ready .geo-reveal.geo-reveal-scale.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
}

/* Motion: hero entrance */
.geo-hero-copy {
    animation: geoHeroCopyIn .85s cubic-bezier(.22, 1, .36, 1) both;
}

.geo-answer-map {
    animation: geoHeroMapIn 1s .16s cubic-bezier(.22, 1, .36, 1) both;
}

.geo-proof li {
    animation: geoHeroItemIn .55s both;
}

.geo-proof li:nth-child(1) { animation-delay: .48s; }
.geo-proof li:nth-child(2) { animation-delay: .58s; }
.geo-proof li:nth-child(3) { animation-delay: .68s; }

@keyframes geoHeroCopyIn {
    from { opacity: 0; transform: translate3d(-28px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes geoHeroMapIn {
    from { opacity: 0; transform: translate3d(28px, 0, 0) scale(.96); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes geoHeroItemIn {
    from { opacity: 0; transform: translate3d(0, 10px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Motion: quiet, continuous signals in the AI relationship map */
.geo-eyebrow span {
    animation: geoSignalPulse 2.4s ease-in-out infinite;
}

.geo-answer-map::before {
    animation: geoMapOrbit 28s linear infinite;
}

.geo-answer-map::after {
    animation: geoMapOrbitReverse 20s linear infinite;
}

.geo-map-core {
    animation: geoCorePulse 3.6s ease-in-out infinite;
}

.geo-map-node {
    animation: geoNodeFloat 4.2s ease-in-out infinite;
}

.geo-map-node:nth-of-type(5) { animation-delay: -.9s; }
.geo-map-node:nth-of-type(6) { animation-delay: -1.8s; }
.geo-map-node:nth-of-type(7) { animation-delay: -2.7s; }

.geo-query-card {
    animation: geoQueryFloat 5s ease-in-out infinite;
}

.query-two {
    animation-delay: -2.5s;
}

.geo-report-bars b {
    animation: geoBarGlow 2.8s ease-in-out infinite;
}

.geo-floating-contact {
    animation: geoContactPulse 3.2s ease-in-out infinite;
}

@keyframes geoSignalPulse {
    0%, 100% { opacity: .7; box-shadow: 0 0 0 5px rgba(66, 215, 233, .08); }
    50% { opacity: 1; box-shadow: 0 0 0 9px rgba(66, 215, 233, .02); }
}

@keyframes geoMapOrbit {
    to { transform: rotate(360deg); }
}

@keyframes geoMapOrbitReverse {
    to { transform: rotate(-360deg); }
}

@keyframes geoCorePulse {
    0%, 100% { box-shadow: 0 0 0 14px rgba(0, 169, 130, .07), 0 0 42px rgba(0, 169, 130, .16); }
    50% { box-shadow: 0 0 0 20px rgba(0, 169, 130, .025), 0 0 68px rgba(0, 169, 130, .28); }
}

@keyframes geoNodeFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -7px, 0); }
}

@keyframes geoQueryFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -6px, 0); }
}

@keyframes geoBarGlow {
    0%, 100% { filter: brightness(.92); }
    50% { filter: brightness(1.16); }
}

@keyframes geoContactPulse {
    0%, 100% { box-shadow: 0 12px 35px rgba(0, 0, 0, .24); }
    50% { box-shadow: 0 12px 35px rgba(0, 0, 0, .24), 0 0 0 7px rgba(0, 169, 130, .08); }
}

@media (max-width: 1100px) {
    .geo-brand-name { display: none; }
    .geo-nav { gap: 20px; }
    .geo-hero-layout { grid-template-columns: minmax(0, 1fr) 420px; gap: 34px; }
    .geo-hero h1 { font-size: 46px; }
    .geo-service-grid { grid-template-columns: 1fr 1fr; }
    .geo-service-card { min-height: 380px; }
    .geo-process-list { grid-template-columns: 1fr 1fr; gap: 12px; }
    .geo-process-list li, .geo-process-list li:first-child, .geo-process-list li:last-child { min-height: 190px; border: 1px solid var(--geo-line); border-radius: 5px; }
    .geo-process-list li::after { display: none; }
    .geo-process-list li:last-child { grid-column: 1 / 3; }
    .geo-definition-layout, .geo-delivery-layout, .geo-consult-layout { gap: 44px; }
}

@media (max-width: 820px) {
    .geo-container { width: min(calc(100% - 34px), var(--geo-max)); }
    .geo-header, .geo-header.is-scrolled { height: 64px; }
    .geo-brand img { height: 34px; max-width: 142px; }
    .geo-menu-toggle { display: flex; }
    .geo-nav { position: fixed; top: 64px; right: 0; bottom: 0; left: 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 18px 24px 30px; background: #071015; transform: translateX(100%); transition: transform .25s ease; }
    .geo-nav.is-open { transform: translateX(0); }
    .geo-nav a { padding: 15px 4px; font-size: 16px; border-bottom: 1px solid #1c2c32; }
    .geo-nav a::after { display: none; }
    .geo-nav .geo-nav-cta { margin-top: 18px; padding: 13px; text-align: center; }
    .geo-hero { min-height: auto; padding: 112px 0 74px; }
    .geo-hero-layout { grid-template-columns: 1fr; gap: 62px; }
    .geo-hero-copy { text-align: center; }
    .geo-eyebrow { justify-content: center; }
    .geo-hero h1 { font-size: 42px; }
    .geo-hero-lead { margin-right: auto; margin-left: auto; font-size: 16px; }
    .geo-hero-actions, .geo-proof { justify-content: center; }
    .geo-answer-map { width: min(100%, 500px); justify-self: center; }
    .geo-platforms .geo-container { align-items: flex-start; flex-direction: column; gap: 18px; }
    .geo-platform-list { justify-content: flex-start; }
    .geo-section, .geo-consult-section { padding: 76px 0; }
    .geo-section-heading h2, .geo-definition-copy h2, .geo-delivery-copy h2, .geo-faq-intro h2, .geo-consult-copy h2 { font-size: 34px; }
    .geo-pain-grid { grid-template-columns: 1fr; }
    .geo-pain-card { min-height: 0; }
    .geo-definition-layout, .geo-delivery-layout, .geo-faq-layout, .geo-consult-layout { grid-template-columns: 1fr; }
    .geo-definition-copy, .geo-delivery-copy { max-width: 660px; }
    .geo-faq-intro { position: static; }
    .geo-faq-layout { gap: 42px; }
    .geo-industry-grid { grid-template-columns: 1fr 1fr; }
    .geo-report { width: min(100%, 620px); }
    .geo-consult-layout { gap: 48px; }
    .geo-footer-main { grid-template-columns: 1fr; gap: 20px; }
    .geo-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
    .geo-container { width: min(calc(100% - 28px), var(--geo-max)); }
    .geo-hero { padding: 100px 0 60px; }
    .geo-hero h1 { font-size: 30px; overflow-wrap: anywhere; }
    .geo-hero-lead { font-size: 15px; line-height: 1.8; }
    .geo-hero-actions { flex-direction: column; }
    .geo-btn { width: 100%; }
    .geo-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
    .geo-answer-map { width: 100%; min-height: 340px; aspect-ratio: 1 / 1.08; }
    .geo-map-core { width: 112px; height: 112px; }
    .geo-map-core span { font-size: 30px; }
    .geo-map-core small { font-size: 10px; }
    .geo-map-node b { width: 40px; height: 40px; font-size: 15px; }
    .geo-map-node { min-width: 64px; font-size: 10px; }
    .geo-query-card { width: 170px; padding: 10px; }
    .geo-query-card strong { font-size: 11px; }
    .query-one { top: 9%; left: 0; }
    .query-two { right: 0; bottom: 15%; }
    .geo-platform-list { gap: 12px 20px; }
    .geo-platform-list span { font-size: 13px; }
    .geo-section-heading { margin-bottom: 38px; }
    .geo-section-heading h2, .geo-definition-copy h2, .geo-delivery-copy h2, .geo-faq-intro h2, .geo-consult-copy h2 { font-size: 29px; }
    .geo-section-heading > p:last-child, .geo-definition-copy > p, .geo-delivery-copy > p, .geo-faq-intro > p, .geo-consult-copy > p { font-size: 15px; }
    .geo-compare { overflow-x: auto; }
    .geo-compare-row { min-width: 620px; }
    .geo-service-grid, .geo-process-list, .geo-industry-grid, .geo-delivery-items, .geo-company-info { grid-template-columns: 1fr; }
    .geo-service-card { min-height: 0; }
    .geo-service-card p { min-height: 0; }
    .geo-process-list li:last-child { grid-column: auto; }
    .geo-process-list li { min-height: 0 !important; }
    .geo-industry-grid > div { min-height: 150px; }
    .geo-report-body { padding: 20px; }
    .geo-report-score { grid-template-columns: 92px 1fr; gap: 14px; }
    .geo-report-score div { width: 92px; height: 92px; border-width: 8px; }
    .geo-report-score strong { font-size: 17px; }
    .geo-faq-list summary { min-height: 70px; font-size: 15px; }
    .geo-faq-list details p { margin-right: 0; font-size: 14px; }
    .geo-consult-form { padding: 26px 20px; }
    .geo-footer-main nav { flex-wrap: wrap; gap: 12px 18px; }
    .geo-floating-contact { display: flex; }

    body.geo-motion-ready .geo-reveal,
    body.geo-motion-ready .geo-reveal.geo-reveal-left,
    body.geo-motion-ready .geo-reveal.geo-reveal-right {
        transform: translate3d(0, 18px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    body.geo-motion-ready .geo-reveal,
    body.geo-motion-ready .geo-reveal.geo-reveal-left,
    body.geo-motion-ready .geo-reveal.geo-reveal-right,
    body.geo-motion-ready .geo-reveal.geo-reveal-scale {
        opacity: 1;
        transform: none;
    }
}
