:root {
    --ink: #17212b;
    --muted: #5e6a75;
    --line: #dfe5e8;
    --bg: #fff;
    --soft: #f5f8f8;
    --brand: #168b6f;
    --brand-dark: #0f6d58;
    --brand-pale: #e7f5f1;
    --navy: #14232e;
    --shadow: 0 18px 50px rgba(18, 39, 48, 0.1);
    --radius: 18px;
    --max: 1180px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
p {
    margin: 0 0 1.15rem;
}
h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
}
h1 {
    font-size: clamp(2.65rem, 5.3vw, 4.25rem);
    max-width: 22ch;
}
h2 {
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    max-width: 25ch;
}
h3 {
    font-size: 1.28rem;
}
.container {
    width: min(calc(100% - 40px), var(--max));
    margin: auto;
}
.narrow {
    max-width: 820px;
}
.section {
    padding: 96px 0;
}
.section-tint {
    background: var(--soft);
}
.section-dark {
    background: var(--navy);
    color: #fff;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.section-dark .eyebrow,
.light .eyebrow {
    color: #8ed8c6;
}
.lead {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: #40505a;
    max-width: 720px;
}
.lead-small {
    font-size: 1.22rem;
    color: #34444e;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 750;
    transition: 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font: inherit;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}
.btn-secondary {
    border-color: #aac8c0;
    background: #fff;
    color: var(--brand-dark);
}
.btn-light {
    background: #fff;
    color: var(--navy);
}
.text-link,
.card-link {
    font-weight: 750;
    color: var(--brand-dark);
}
.skip-link {
    position: absolute;
    left: -9999px;
}
.skip-link:focus {
    left: 20px;
    top: 20px;
    z-index: 999;
    background: #fff;
    padding: 10px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.topbar {
    background: var(--navy);
    color: #d9e4e8;
    font-size: 0.78rem;
}
.topbar-inner {
    height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-contact {
    display: flex;
    gap: 24px;
}
.topbar a:hover {
    color: #fff;
}
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 50;
    border-bottom: 1px solid rgba(218, 226, 229, 0.8);
    backdrop-filter: blur(12px);
}
.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.1rem;
}
.brand-mark span {
    transform: skew(-8deg);
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.brand-text strong {
    font-size: 1.03rem;
}
.brand-text small {
    font-size: 0.72rem;
    color: #66747c;
    margin-top: 5px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-nav > a,
.nav-dropdown-toggle {
    padding: 10px 12px;
    border: 0;
    background: none;
    font: inherit;
    font-size: 0.91rem;
    font-weight: 650;
    color: #34434d;
    cursor: pointer;
}
.main-nav > a:hover,
.main-nav > a[aria-current="page"],
.nav-dropdown-toggle:hover {
    color: var(--brand-dark);
}
.main-nav .nav-cta {
    background: var(--brand);
    color: #fff;
    border-radius: 9px;
    padding: 11px 15px;
    margin-left: 4px;
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: -10px;
    min-width: 245px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: 0.18s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 11px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.nav-dropdown-menu a:hover {
    background: var(--soft);
    color: var(--brand-dark);
}
.nav-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 8px;
}
.nav-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ink);
    margin: 5px;
}
.hero {
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbfa 0%, #fff 58%, #eef8f5 100%);
}
.hero-home {
    padding: 105px 0 100px;
}
.hero-sub {
    padding: 85px 0 82px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}
.hero-copy h1 strong {
    color: var(--brand-dark);
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    font-size: 0.88rem;
    color: #53636c;
}
.hero-visual {
    position: relative;
    min-height: 410px;
    display: grid;
    place-items: center;
}
.window-card {
    width: min(100%, 480px);
    border: 1px solid #d8e2e1;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 32px 70px rgba(23, 64, 57, 0.16);
    transform: rotate(2.5deg);
    overflow: hidden;
}
.window-bar {
    height: 40px;
    background: #f0f4f4;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 7px;
}
.window-bar i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c5cece;
}
.sheet {
    padding: 16px;
}
.sheet-head {
    height: 38px;
    border: 1px solid #dce3e3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
}
.sheet-head b {
    padding: 0 13px;
    color: var(--brand-dark);
}
.sheet-head span {
    border-left: 1px solid #dce3e3;
    padding-left: 12px;
    color: #6e7c82;
}
.cells {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 12px;
    border-left: 1px solid #e4e9e8;
    border-top: 1px solid #e4e9e8;
}
.cells span {
    height: 47px;
    border-right: 1px solid #e4e9e8;
    border-bottom: 1px solid #e4e9e8;
    background: #fff;
}
.cells .accent {
    background: var(--brand);
}
.cells .accent-soft {
    background: var(--brand-pale);
}
.floating-badge {
    position: absolute;
    right: 0;
    bottom: 28px;
    background: var(--navy);
    color: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.floating-badge strong {
    font-size: 1.2rem;
}
.floating-badge span {
    font-size: 0.73rem;
    color: #bccbd0;
}
.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-grid div {
    padding: 22px 25px;
    border-right: 1px solid var(--line);
}
.trust-grid div:last-child {
    border-right: 0;
}
.trust-grid strong,
.trust-grid span {
    display: block;
}
.trust-grid strong {
    font-size: 0.9rem;
}
.trust-grid span {
    font-size: 0.76rem;
    color: var(--muted);
    margin-top: 2px;
}
.section-head {
    margin-bottom: 45px;
}
.section-head p {
    max-width: 710px;
    color: var(--muted);
    font-size: 1.05rem;
}
.section-head.light p {
    color: #c9d5d9;
}
.card-grid {
    display: grid;
    gap: 20px;
}
.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.service-card,
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #c9d8d5;
}
.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--brand-pale);
    color: var(--brand-dark);
    font-weight: 900;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
}
.service-card p,
.info-card p {
    color: var(--muted);
    font-size: 0.94rem;
}
.service-card .card-link {
    display: block;
    margin-top: 22px;
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split.reverse > div:first-child {
    order: 2;
}
.steps-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #dfe7e6;
    border: 1px solid #dfe7e6;
    border-radius: var(--radius);
    overflow: hidden;
}
.steps-compact div {
    background: #fff;
    padding: 25px;
}
.steps-compact b,
.number {
    color: var(--brand);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}
.steps-compact h3 {
    font-size: 1.05rem;
    margin-top: 12px;
}
.steps-compact p {
    font-size: 0.86rem;
    color: var(--muted);
    margin: 0;
}
.region-panel {
    background: var(--navy);
    color: #fff;
    border-radius: 22px;
    padding: 38px;
}
.region-panel h3 {
    font-size: 2rem;
}
.mini-label {
    font-size: 0.75rem;
    color: #8fd9c7;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}
.region-tags span,
.region-tags a {
    border: 1px solid #45606c;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    color: #d6e1e4;
}
.region-panel p {
    color: #b8c6cb;
    font-size: 0.9rem;
}
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.usecase-grid article {
    border: 1px solid #35505c;
    border-radius: var(--radius);
    padding: 30px;
}
.usecase-grid article span {
    color: #8fd9c7;
    font-weight: 800;
}
.usecase-grid article h3 {
    margin-top: 28px;
}
.usecase-grid article p {
    color: #b8c9cf;
}
.faq-wrap {
    max-width: 900px;
}
.faq-list details {
    border-top: 1px solid var(--line);
    padding: 20px 0;
}
.faq-list details:last-child {
    border-bottom: 1px solid var(--line);
}
.faq-list summary {
    cursor: pointer;
    font-weight: 750;
    list-style: none;
    padding-right: 30px;
    position: relative;
}
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    font-size: 1.3rem;
    color: var(--brand);
}
.faq-list details[open] summary::after {
    content: "–";
}
.faq-list details p {
    color: var(--muted);
    padding-top: 13px;
    margin: 0;
    max-width: 760px;
}
.cta-band {
    background: var(--brand);
    color: #fff;
    padding: 58px 0;
}
.cta-band .eyebrow {
    color: #d4fff4;
}
.cta-band h2 {
    max-width: 800px;
}
.cta-band p {
    color: #d9f3ed;
    max-width: 750px;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.site-footer {
    background: #0e1921;
    color: #d6e0e4;
    padding: 70px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 50px;
}
.brand-footer {
    color: #fff;
    margin-bottom: 18px;
}
.brand-footer .brand-text small {
    color: #90a0a7;
}
.footer-grid p {
    font-size: 0.87rem;
    color: #91a1a8;
}
.footer-grid h2 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #81939b;
    margin-bottom: 16px;
}
.footer-grid > div > a:not(.brand) {
    display: block;
    font-size: 0.88rem;
    padding: 4px 0;
    color: #ccd7db;
}
.footer-grid a:hover {
    color: #fff;
}
.footer-bottom {
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid #243640;
    display: flex;
    justify-content: space-between;
    font-size: 0.76rem;
    color: #758991;
}
.footer-bottom div {
    display: flex;
    gap: 18px;
}
.check-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    background: #fff;
    box-shadow: var(--shadow);
}
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.check-list li {
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid #edf1f2;
    position: relative;
}
.check-list li:last-child {
    border: 0;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 900;
}
.info-card ul {
    margin: 15px 0 0;
    padding-left: 18px;
    color: #52616a;
}
.info-card li {
    margin: 7px 0;
}
.topic-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.topic-links a {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.topic-links a:nth-child(2n) {
    border-right: 0;
}
.topic-links a:nth-last-child(-n + 2) {
    border-bottom: 0;
}
.topic-links a:hover {
    background: var(--soft);
}
.topic-links span {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}
.quote-card {
    background: var(--navy);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius);
}
.quote-card > span {
    font-size: 5rem;
    line-height: 0.6;
    color: #8ed8c6;
}
.quote-card p {
    font-size: 1.28rem;
    margin: 22px 0 0;
}
.excel-demo {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.formula {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.78rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}
.demo-table {
    display: grid;
    grid-template-columns: 0.7fr 1.5fr 1fr;
}
.demo-table div {
    padding: 11px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
}
.demo-table div:nth-child(-n + 3) {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
}
.region-seo {
    text-align: left;
}
.region-seo h2 {
    max-width: 700px;
}
.region-seo p {
    max-width: 850px;
    color: var(--muted);
}
.doc-visual {
    background: var(--soft);
    border-radius: var(--radius);
    padding: 40px;
    display: grid;
    place-items: center;
}
.doc-page {
    width: 250px;
    height: 330px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 30px;
}
.doc-logo {
    width: 45px;
    height: 12px;
    background: var(--brand);
    margin-bottom: 35px;
}
.doc-title {
    height: 16px;
    width: 75%;
    background: #2e3a42;
    margin-bottom: 22px;
}
.doc-line {
    height: 5px;
    background: #dfe5e6;
    margin: 10px 0;
}
.doc-line.wide {
    width: 100%;
}
.doc-line.short {
    width: 58%;
}
.doc-sub {
    height: 10px;
    width: 45%;
    background: #98aaa9;
    margin: 26px 0 14px;
}
.mail-visual {
    height: 300px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 55px 1fr 1.35fr;
    overflow: hidden;
}
.mail-sidebar {
    background: #eaf4f2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding-top: 25px;
}
.mail-sidebar i {
    width: 18px;
    height: 18px;
    border: 2px solid var(--brand);
    border-radius: 4px;
}
.mail-list {
    padding: 24px;
    border-right: 1px solid var(--line);
}
.mail-list b,
.mail-view b {
    font-size: 0.85rem;
}
.mail-list span {
    height: 33px;
    border-bottom: 1px solid var(--line);
    display: block;
}
.mail-view {
    padding: 24px;
}
.mail-view p {
    height: 6px;
    background: #e5eaeb;
    margin: 18px 0;
}
.office-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 320px;
}
.office-tiles span {
    aspect-ratio: 1;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    background: var(--brand);
}
.office-tiles span:nth-child(2) {
    background: #2369aa;
}
.office-tiles span:nth-child(3) {
    background: #1d6f9f;
}
.office-tiles span:nth-child(4) {
    background: #b44b36;
}
.timeline {
    max-width: 850px;
}
.timeline > div {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    position: relative;
    padding-bottom: 34px;
}
.timeline > div:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 45px;
    bottom: 0;
    width: 1px;
    background: #bed4cf;
}
.timeline span {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}
.timeline h3 {
    margin: 0 0 6px;
}
.timeline p {
    color: var(--muted);
}
.note-panel {
    border-left: 4px solid var(--brand);
    padding: 24px 28px;
    background: var(--soft);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.note-panel p {
    margin: 0;
}
.process {
    max-width: 900px;
}
.process article {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 35px 0;
    border-bottom: 1px solid var(--line);
}
.process article > span {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--brand);
}
.process h2 {
    font-size: 1.7rem;
    max-width: none;
}
.process p {
    color: var(--muted);
    max-width: 700px;
}
.schedule-card {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 45px;
    text-align: center;
}
.schedule-card span,
.schedule-card strong {
    display: block;
}
.schedule-card span {
    color: #8ed8c6;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}
.schedule-card strong {
    font-size: 2.5rem;
    margin: 12px;
}
.schedule-card p {
    color: #bdcbd0;
}
.page-hero-simple {
    padding: 80px 0;
    background: var(--soft);
}
.page-hero-simple.compact {
    padding: 50px 0;
}
.page-hero-simple h1 {
    max-width: 900px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 70px;
}
.contact-form {
    display: grid;
    gap: 18px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-form label {
    font-size: 0.85rem;
    font-weight: 700;
    display: grid;
    gap: 7px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid #cbd6d9;
    border-radius: 9px;
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 3px solid rgba(22, 139, 111, 0.15);
    border-color: var(--brand);
}
.consent {
    grid-template-columns: 18px 1fr !important;
    align-items: start;
    font-weight: 400 !important;
}
.consent input {
    width: auto;
    margin-top: 5px;
}
.hp {
    position: absolute !important;
    left: -9999px !important;
}
.contact-aside {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 35px;
    align-self: start;
}
.contact-aside h2 {
    font-size: 1.8rem;
}
.contact-aside p {
    color: #b9c8cd;
}
.contact-aside hr {
    border: 0;
    border-top: 1px solid #35505b;
    margin: 28px 0;
}
.contact-item {
    margin: 20px 0;
}
.contact-item small,
.contact-item a {
    display: block;
}
.contact-item small {
    color: #87a0aa;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.contact-item a {
    font-size: 1.05rem;
    margin-top: 3px;
}
.success-message {
    padding: 20px;
    background: var(--brand-pale);
    border: 1px solid #bfdfd7;
    border-radius: 12px;
    margin-bottom: 24px;
}
.success-message p {
    margin: 4px 0 0;
}
.legal h2 {
    font-size: 1.35rem;
    max-width: none;
    margin-top: 35px;
}
.legal a {
    color: var(--brand-dark);
    text-decoration: underline;
}
.legal-note {
    background: #fff7dd;
    border: 1px solid #ead99a;
    padding: 18px;
    border-radius: 10px;
    margin: 20px 0 35px;
}
.legal-note strong {
    display: block;
    margin-bottom: 4px;
}
@media (max-width: 1050px) {
    .card-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .hero-grid {
        gap: 35px;
    }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
    .footer-grid > div:last-child {
        grid-column: 1/-1;
    }
    .main-nav > a,
    .nav-dropdown-toggle {
        padding: 10px 8px;
        font-size: 0.86rem;
    }
}
@media (max-width: 920px) {
    .topbar-inner > span {
        display: none;
    }
    .topbar-inner {
        justify-content: flex-end;
    }
    .nav-toggle {
        display: block;
    }
    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 120px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 15px 20px 22px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        box-shadow: var(--shadow);
    }
    .main-nav.is-open {
        display: flex;
    }
    .main-nav > a,
    .nav-dropdown-toggle {
        text-align: left;
        width: 100%;
        padding: 12px;
    }
    .main-nav .nav-cta {
        margin: 5px 0 0;
        text-align: center;
    }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        display: none;
        padding-left: 14px;
    }
    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }
    .nav-dropdown.is-open:hover .nav-dropdown-menu {
        display: block;
    }
    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        order: 1;
    }
    .hero-visual {
        order: 2;
        min-height: 350px;
    }
    .hero-home,
    .hero-sub {
        padding: 65px 0;
    }
    .split.reverse > div:first-child {
        order: initial;
    }
    .usecase-grid,
    .card-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .cta-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid > div:last-child {
        grid-column: auto;
    }
}
@media (max-width: 650px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }
    .section {
        padding: 68px 0;
    }
    h1 {
        font-size: 2.55rem;
    }
    .topbar {
        display: none;
    }
    .nav-wrap {
        height: 72px;
    }
    .main-nav {
        top: 72px;
    }
    .brand-text small {
        display: none;
    }
    .hero-visual {
        min-height: 285px;
    }
    .floating-badge {
        right: 5px;
        bottom: 5px;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid div {
        border-bottom: 1px solid var(--line);
    }
    .card-grid-4,
    .card-grid-3,
    .usecase-grid {
        grid-template-columns: 1fr;
    }
    .split {
        gap: 45px;
    }
    .steps-compact {
        grid-template-columns: 1fr;
    }
    .topic-links {
        grid-template-columns: 1fr;
    }
    .topic-links a {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }
    .topic-links a:last-child {
        border-bottom: 0 !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
    .hero-points {
        flex-direction: column;
        gap: 7px;
    }
    .office-tiles {
        width: 100%;
        max-width: 320px;
    }
    .process article {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }
    .mail-visual {
        grid-template-columns: 45px 1fr;
    }
    .mail-view {
        display: none;
    }
}
