@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("/assets/plus-jakarta-sans.woff2") format("woff2");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

:root,
html[data-theme="light"] {
    color-scheme: light;
    --page: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #eaf0f8;
    --surface-raised: #f8fafd;
    --text: #111c2d;
    --text-soft: #465a73;
    --text-muted: #64758a;
    --line: #d7e0eb;
    --line-strong: #bac8d8;
    --brand: #155fbe;
    --brand-hover: #0d4f9f;
    --brand-ink: #ffffff;
    --brand-soft: #dfebfb;
    --brand-soft-strong: #c8dcf7;
    --danger: #b42318;
    --danger-soft: #fff0ee;
    --success: #18794e;
    --shadow-sm: 0 12px 34px rgba(36, 68, 110, 0.08);
    --shadow-lg: 0 30px 80px rgba(32, 68, 116, 0.15);
    --radius-panel: 20px;
    --radius-control: 12px;
    --header-height: 72px;
    --shell: min(1240px, calc(100% - 48px));
}

html[data-theme="dark"] {
    color-scheme: dark;
    --page: #0b1220;
    --surface: #111b2c;
    --surface-soft: #172338;
    --surface-raised: #142035;
    --text: #eef4fb;
    --text-soft: #bdc9d8;
    --text-muted: #91a2b7;
    --line: #26364d;
    --line-strong: #40536c;
    --brand: #70aaf2;
    --brand-hover: #90bcf5;
    --brand-ink: #071321;
    --brand-soft: #172f4e;
    --brand-soft-strong: #1d416d;
    --danger: #ffb4aa;
    --danger-soft: #3b1e23;
    --success: #78d8aa;
    --shadow-sm: 0 12px 34px rgba(1, 7, 16, 0.22);
    --shadow-lg: 0 30px 80px rgba(1, 7, 16, 0.38);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    background: var(--page);
    color: var(--text);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--brand) 70%, transparent);
    outline-offset: 3px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--text);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

p {
    color: var(--text-soft);
}

.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;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: var(--radius-control);
    background: var(--text);
    color: var(--page);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-space {
    padding-block: clamp(84px, 9vw, 136px);
}

.page-sentinel {
    position: absolute;
    top: 0;
    width: 1px;
    height: 1px;
}

/* Shape rule: panels use 20px, controls and buttons use 12px. */
.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-control);
    cursor: pointer;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button i {
    font-size: 18px;
}

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

.button:active {
    transform: translateY(0) scale(0.98);
}

.button-primary {
    background: var(--brand);
    color: var(--brand-ink);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 22%, transparent);
}

.button-primary:hover {
    background: var(--brand-hover);
}

.button-secondary {
    border-color: var(--line-strong);
    background: var(--surface);
    color: var(--text);
}

.button-secondary:hover,
.button-quiet:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.button-quiet {
    border-color: transparent;
    color: var(--text-soft);
}

.button-large {
    min-height: 54px;
    padding-inline: 24px;
}

.button-compact {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
}

.button-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--brand);
    font-weight: 750;
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.section-heading h2,
.control-heading h2,
.faq-heading h2,
.integration-copy h2 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(36px, 4.6vw, 62px);
    font-weight: 750;
}

.section-heading p,
.control-heading p,
.faq-heading p,
.integration-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 0;
    font-size: clamp(16px, 1.5vw, 19px);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: color-mix(in srgb, var(--page) 88%, transparent);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: grid;
    height: 100%;
    grid-template-columns: 172px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    width: 146px;
    align-items: center;
}

.brand picture {
    display: block;
    width: 100%;
}

.brand img {
    width: 100%;
    height: 48px;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    mix-blend-mode: multiply;
}

html[data-theme="dark"] .brand img {
    padding: 0;
    border-radius: 0;
    background: transparent;
    mix-blend-mode: normal;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
}

.primary-nav a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    transition: color 160ms ease;
}

.primary-nav a:hover {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-control);
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text-soft);
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
    margin-right: 2px;
}

.theme-toggle:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.theme-toggle:active {
    transform: translateY(0) scale(0.96);
}

.theme-toggle i {
    font-size: 20px;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.menu-button i {
    font-size: 23px;
}

/* Hero */
.hero {
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    align-items: center;
    padding-block: clamp(42px, 6vw, 76px);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    align-items: center;
    gap: clamp(44px, 6vw, 88px);
}

.hero-copy {
    max-width: 610px;
    animation: hero-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
    margin-bottom: 24px;
    font-size: clamp(49px, 5vw, 66px);
    font-weight: 780;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
    white-space: nowrap;
}

.hero-lede {
    max-width: 590px;
    margin-bottom: 30px;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-media {
    margin: 0;
    animation: hero-media-enter 850ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-image-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    max-height: 440px;
    object-fit: cover;
    object-position: center;
}

.hero-media figcaption {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 4px 0;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 650;
}

.hero-media figcaption i {
    color: var(--brand);
    font-size: 18px;
}

@keyframes hero-enter {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-media-enter {
    from { opacity: 0; transform: translateX(24px) scale(0.98); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Capability rail */
.capability-rail {
    border-block: 1px solid var(--line);
    background: var(--surface);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.capability-item {
    display: flex;
    min-height: 126px;
    align-items: center;
    gap: 14px;
    padding: 22px clamp(16px, 2vw, 26px);
    border-right: 1px solid var(--line);
}

.capability-item:first-child {
    padding-left: 0;
}

.capability-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.capability-item > i {
    flex: 0 0 auto;
    color: var(--brand);
    font-size: 28px;
}

.capability-item strong,
.capability-item span {
    display: block;
}

.capability-item strong {
    margin-bottom: 3px;
    color: var(--text);
    font-size: 14px;
}

.capability-item span {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}

/* Quote simulator */
.quote-section {
    background: var(--page);
}

.quote-workspace {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.quote-form {
    padding: clamp(28px, 4vw, 46px);
    border-right: 1px solid var(--line);
}

.form-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.form-heading > i {
    width: 46px;
    height: 46px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: var(--radius-control);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 23px;
}

.form-heading h3,
.results-heading h3 {
    margin-bottom: 4px;
    font-size: 22px;
    letter-spacing: -0.025em;
}

.form-heading p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.field {
    display: grid;
    gap: 8px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--text);
    font-size: 13px;
    font-weight: 750;
}

.field input,
.field select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-control);
    background: var(--surface-raised);
    color: var(--text);
    padding: 11px 13px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:hover,
.field select:hover,
.field input:focus,
.field select:focus {
    border-color: var(--brand);
}

.field input:focus,
.field select:focus {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
    outline: none;
}

.field small {
    min-height: 18px;
    color: var(--text-muted);
    font-size: 11px;
}

.input-suffix {
    position: relative;
}

.input-suffix input {
    padding-right: 46px;
}

.input-suffix span {
    position: absolute;
    top: 50%;
    right: 13px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 750;
    transform: translateY(-50%);
}

.quote-form .button {
    margin-top: 10px;
}

.form-message {
    margin: -2px 0 16px;
    padding: 10px 12px;
    border: 1px solid color-mix(in srgb, var(--danger) 35%, transparent);
    border-radius: var(--radius-control);
    background: var(--danger-soft);
    color: var(--danger);
    font-size: 12px;
    font-weight: 650;
}

.quote-results {
    padding: clamp(28px, 4vw, 46px);
    background: var(--surface-soft);
}

.results-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.results-kicker {
    margin-bottom: 5px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.results-heading > span {
    max-width: 220px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 650;
    text-align: right;
}

.results-list {
    min-height: 236px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--surface);
}

.rate-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.rate-row:last-child {
    border-bottom: 0;
}

.rate-service {
    display: flex;
    align-items: center;
    gap: 13px;
}

.courier-logo {
    flex: 0 0 auto;
    max-width: 64px;
    max-height: 48px;
    border-radius: 8px;
    object-fit: contain;
}

.rate-service strong,
.rate-service span,
.rate-price strong,
.rate-price span {
    display: block;
}

.rate-service strong,
.rate-price strong {
    color: var(--text);
    font-size: 14px;
}

.rate-service span,
.rate-price span {
    color: var(--text-muted);
    font-size: 11px;
}

.rate-price {
    text-align: right;
}

.rate-price strong {
    color: var(--brand);
}

.rate-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed var(--line);
}

.rate-normal,
.rate-pakeet {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rate-normal span,
.rate-pakeet span {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 650;
}

.rate-normal strong {
    color: var(--text-soft);
    font-size: 13px;
    text-decoration: line-through;
}

.rate-pakeet strong {
    color: var(--success);
    font-size: 14px;
}

.rate-savings {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
}

.autocomplete-wrap {
    position: relative;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 220px;
    overflow-y: auto;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-control);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.autocomplete-list li {
    padding: 10px 13px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 13px;
    cursor: pointer;
    transition: background-color 120ms ease;
}

.autocomplete-list li:last-child {
    border-bottom: 0;
}

.autocomplete-list li:hover,
.autocomplete-list li[aria-selected="true"] {
    background: var(--brand-soft);
    color: var(--brand);
}

.autocomplete-list li mark {
    background: transparent;
    color: var(--brand);
    font-weight: 750;
}

.autocomplete-loading {
    padding: 14px;
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
}

.error-banner {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid color-mix(in srgb, var(--danger) 30%, transparent);
    border-radius: var(--radius-control);
    background: var(--danger-soft);
    color: var(--danger);
    font-size: 12px;
    font-weight: 650;
}

.error-banner i {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 1px;
}

.results-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 11px;
}

.skeleton-row {
    display: grid;
    grid-template-columns: 42px 1fr 100px;
    gap: 13px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.skeleton-row:last-child {
    border-bottom: 0;
}

.skeleton-block {
    height: 16px;
    border-radius: 6px;
    background: var(--surface-soft);
}

.skeleton-block.square {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.skeleton-block.short {
    width: 100px;
}

.empty-state {
    min-height: 236px;
    display: grid;
    place-items: center;
    padding: 32px;
    text-align: center;
}

.empty-state i {
    display: block;
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 32px;
}

.empty-state strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.empty-state span {
    color: var(--text-muted);
    font-size: 12px;
}

@media (prefers-reduced-motion: no-preference) {
    .quote-results[aria-busy="true"] .skeleton-block {
        background: linear-gradient(100deg, var(--surface-soft) 20%, var(--brand-soft) 48%, var(--surface-soft) 76%);
        background-size: 200% 100%;
        animation: skeleton-shimmer 1.15s linear infinite;
    }
}

@keyframes skeleton-shimmer {
    to { background-position: -200% 0; }
}

/* Solution bento */
.solution-section {
    background: var(--surface);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.bento-cell {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    background: var(--surface-raised);
}

.bento-cell:not(.bento-photo) {
    padding: clamp(26px, 3.4vw, 42px);
}

.bento-cell h3 {
    margin-bottom: 12px;
    font-size: clamp(23px, 2.2vw, 34px);
}

.bento-cell p {
    max-width: 520px;
    margin-bottom: 0;
    font-size: 14px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    border-radius: var(--radius-control);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 24px;
}

.bento-flow {
    grid-column: span 7;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--brand-soft) 74%, var(--surface)) 0%, var(--surface-raised) 72%);
}

.bento-flow .feature-icon {
    margin-bottom: auto;
}

.flow-list {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: var(--text);
    font-size: 12px;
    font-weight: 750;
}

.flow-list i {
    color: var(--brand);
    font-size: 16px;
}

.bento-photo {
    grid-column: span 5;
    display: grid;
    background: var(--surface);
}

.bento-photo img {
    width: 100%;
    height: 368px;
    object-fit: cover;
    object-position: 52% 40%;
}

.bento-photo figcaption {
    align-self: end;
    padding: 18px 22px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 650;
}

.bento-wallet {
    grid-column: span 4;
}

.bento-label {
    grid-column: span 4;
    background: var(--brand-soft-strong);
}

.bento-wallet .feature-icon,
.bento-label .feature-icon,
.bento-discount .feature-icon {
    margin-bottom: 50px;
}

.bento-wallet h3,
.bento-label h3,
.bento-discount h3 {
    font-size: clamp(21px, 1.8vw, 27px);
}

.bento-discount {
    grid-column: span 4;
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-soft) 85%, var(--surface)) 0%, var(--surface-raised) 100%);
    border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
}

.bento-discount .feature-icon {
    background: var(--brand);
    color: var(--brand-ink);
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand) 12%, var(--surface));
    border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent);
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--brand) 10%, transparent);
}

.discount-badge i {
    font-size: 14px;
    padding: 3px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--brand-ink);
}

/* Workflow */
.workflow-section {
    overflow: hidden;
}

.workflow-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 8px clamp(20px, 2.5vw, 34px);
}

.workflow-item:first-child {
    padding-left: 0;
}

.workflow-item:last-child {
    padding-right: 0;
}

.workflow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--line);
}

.workflow-item > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-control);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 22px;
}

.workflow-item h3 {
    margin-bottom: 8px;
    font-size: 24px;
}

.workflow-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 13px;
}

/* Integrations */
.integration-section {
    border-block: 1px solid var(--line);
    background: var(--surface-soft);
}

.integration-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    align-items: center;
    gap: clamp(54px, 8vw, 112px);
}

.integration-copy > p:not(.eyebrow) {
    margin-bottom: 30px;
}

.integration-visual {
    display: grid;
    grid-template-columns: 1fr 36px 1fr 36px 1fr;
    align-items: stretch;
    gap: 10px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.system-node {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--surface-raised);
}

.system-node > i {
    color: var(--brand);
    font-size: 30px;
}

.system-node strong,
.system-node span {
    display: block;
}

.system-node strong {
    color: var(--text);
    font-size: 13px;
    line-height: 1.35;
}

.system-node span {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 10px;
}

.system-node-primary {
    border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
    background: var(--brand-soft);
}

.connector {
    align-self: center;
    color: var(--brand);
    font-size: 23px;
    text-align: center;
}

.endpoint-list {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.endpoint-list code {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--text-soft);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10px;
}

/* Control */
.control-section {
    background: var(--surface);
}

.control-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(60px, 9vw, 130px);
}

.control-heading {
    align-self: start;
    position: sticky;
    top: calc(var(--header-height) + 42px);
}

.control-list {
    display: grid;
    gap: 0;
}

.control-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.control-item:first-child {
    padding-top: 0;
}

.control-item > i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-control);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 24px;
}

.control-item h3 {
    margin-bottom: 7px;
    font-size: 22px;
}

.control-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* FAQ */
.faq-section {
    background: var(--page);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(52px, 9vw, 126px);
}

.faq-heading {
    align-self: start;
    position: sticky;
    top: calc(var(--header-height) + 42px);
}

.faq-heading p {
    margin-bottom: 26px;
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 22px 2px;
}

.faq-list details:first-child {
    padding-top: 0;
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--text);
    cursor: pointer;
    font-size: 17px;
    font-weight: 750;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    flex: 0 0 auto;
    color: var(--brand);
    font-size: 20px;
    transition: transform 180ms ease;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 660px;
    margin: 14px 48px 0 0;
    font-size: 14px;
}

/* Closing */
.closing-section {
    padding-bottom: clamp(84px, 9vw, 136px);
}

.closing-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
    padding: clamp(34px, 5.5vw, 68px);
    border-radius: var(--radius-panel);
    background: var(--brand);
    box-shadow: 0 26px 70px color-mix(in srgb, var(--brand) 28%, transparent);
}

.closing-panel h2 {
    margin-bottom: 13px;
    color: var(--brand-ink);
    font-size: clamp(34px, 4.3vw, 56px);
}

.closing-panel p {
    max-width: 620px;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--brand-ink) 82%, transparent);
    font-size: 16px;
}

.closing-actions {
    display: flex;
    gap: 10px;
}

.button-on-accent {
    background: var(--brand-ink);
    color: var(--brand-hover);
}

.button-on-accent:hover {
    background: color-mix(in srgb, var(--brand-ink) 90%, transparent);
}

.button-accent-quiet {
    border-color: color-mix(in srgb, var(--brand-ink) 38%, transparent);
    color: var(--brand-ink);
}

.button-accent-quiet:hover {
    border-color: var(--brand-ink);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.7fr) repeat(3, 1fr);
    gap: 42px;
    padding-block: 64px 48px;
}

.footer-brand p {
    max-width: 300px;
    margin: 15px 0 0;
    font-size: 13px;
}

.footer-grid nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid nav h2 {
    margin-bottom: 5px;
    color: var(--text);
    font-size: 12px;
    letter-spacing: 0;
}

.footer-grid nav a {
    color: var(--text-soft);
    font-size: 13px;
}

.footer-grid nav a:hover {
    color: var(--brand);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 12px;
}

.mobile-action {
    display: none;
}

/* Motion */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 1080px) {
    :root {
        --shell: min(100% - 40px, 920px);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(44px, 5.4vw, 58px);
    }

    .capability-grid {
        grid-template-columns: 1fr 1fr;
    }

    .capability-item:nth-child(2) {
        border-right: 0;
    }

    .capability-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .capability-item:first-child,
    .capability-item:nth-child(3) {
        padding-left: 0;
    }

    .capability-item:nth-child(2),
    .capability-item:last-child {
        padding-right: 0;
    }

    .workflow-list {
        grid-template-columns: 1fr 1fr;
        gap: 34px 0;
    }

    .workflow-item:nth-child(2)::after {
        display: none;
    }

    .workflow-item:nth-child(3) {
        padding-left: 0;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: auto;
        padding-top: 14px;
        padding-bottom: 10px;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    html[data-theme="dark"] .site-header {
        background: #111b2c !important;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 8px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        grid-column: 2;
        grid-row: 1;
        gap: 6px;
    }

    .theme-toggle {
        width: 42px;
        height: 42px;
        margin-right: 0;
    }

    .menu-button {
        display: grid;
        grid-column: 3;
        grid-row: 1;
    }

    .primary-nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: #ffffff !important;
        opacity: 0;
        visibility: hidden;
        transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease, border-color 180ms ease;
    }

    html[data-theme="dark"] .primary-nav {
        background: #111b2c !important;
    }

    .primary-nav.is-open {
        max-height: 310px;
        border-color: var(--line);
        opacity: 1;
        visibility: visible;
        box-shadow: var(--shadow-lg);
    }

    .primary-nav a {
        padding: 16px 24px;
        border-bottom: 1px solid var(--line);
    }

    .hero {
        min-height: auto;
        padding-block: 54px 74px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        max-width: 680px;
    }

    .hero h1 {
        max-width: 720px;
        font-size: clamp(48px, 7.5vw, 64px);
    }

    .hero-image-wrap img {
        aspect-ratio: 16 / 9;
        max-height: 420px;
    }

    .quote-workspace,
    .control-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .bento-flow,
    .bento-photo {
        grid-column: span 12;
    }

    .bento-wallet {
        grid-column: span 7;
    }

    .bento-label {
        grid-column: span 5;
    }

    .bento-report {
        grid-column: span 12;
    }

    .control-heading,
    .faq-heading {
        position: static;
    }

    .control-list {
        grid-template-columns: 1fr 1fr;
        gap: 0 28px;
    }

    .control-item:nth-last-child(2) {
        border-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

    .footer-grid nav:last-child {
        grid-column: 2;
    }
}

/* Mobile */
@media (max-width: 680px) {
    :root {
        --shell: calc(100% - 32px);
        --header-height: 66px;
        --radius-panel: 16px;
        --radius-control: 11px;
    }

    body {
        padding-bottom: 70px;
    }

    .section-space {
        padding-block: 76px;
    }

    .brand {
        width: 124px;
    }

    .brand img {
        height: 42px;
    }

    .header-actions a.button {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 8px;
    }

    .header-actions {
        display: flex;
        grid-column: 2;
    }

    .menu-button {
        grid-column: 3;
    }

    .hero {
        padding-block: 38px 58px;
    }

    .hero-grid {
        gap: 38px;
    }

    .hero h1 {
        margin-bottom: 19px;
        font-size: clamp(39px, 11vw, 48px);
        letter-spacing: -0.05em;
    }

    .hero-lede {
        margin-bottom: 25px;
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-image-wrap img {
        aspect-ratio: 16 / 10;
        max-height: 300px;
        object-position: 58% 42%;
    }

    .hero-media figcaption {
        align-items: flex-start;
        font-size: 12px;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .capability-item,
    .capability-item:first-child,
    .capability-item:nth-child(2),
    .capability-item:nth-child(3),
    .capability-item:last-child {
        min-height: 108px;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .capability-item:last-child {
        border-bottom: 0;
    }

    .section-heading h2,
    .control-heading h2,
    .faq-heading h2,
    .integration-copy h2 {
        font-size: clamp(34px, 10vw, 45px);
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .quote-form,
    .quote-results {
        padding: 24px 18px;
    }

    .results-heading {
        display: block;
    }

    .results-heading > span {
        display: block;
        max-width: none;
        margin-top: 8px;
        text-align: left;
    }

    .rate-row {
        padding: 16px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-flow,
    .bento-photo,
    .bento-wallet,
    .bento-label,
    .bento-report {
        grid-column: 1;
    }

    .bento-flow {
        min-height: 400px;
    }

    .bento-photo img {
        height: 360px;
    }

    .flow-list {
        display: grid;
        grid-template-columns: auto 18px auto 18px auto;
        gap: 5px;
        font-size: 10px;
    }

    .workflow-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .workflow-item,
    .workflow-item:first-child,
    .workflow-item:nth-child(3),
    .workflow-item:last-child {
        padding: 24px 0;
        border-bottom: 1px solid var(--line);
    }

    .workflow-item::after {
        display: none;
    }

    .workflow-item:last-child {
        border-bottom: 0;
    }

    .integration-visual {
        grid-template-columns: 1fr;
    }

    .system-node {
        min-height: 132px;
    }

    .connector {
        transform: rotate(90deg);
    }

    .endpoint-list {
        grid-column: 1;
        display: grid;
    }

    .control-list {
        grid-template-columns: 1fr;
    }

    .control-item:nth-last-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .faq-list summary {
        align-items: flex-start;
        font-size: 15px;
    }

    .faq-list details p {
        margin-right: 0;
    }

    .closing-panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .closing-actions {
        display: grid;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
        padding-block: 54px 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid nav:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-action {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        display: flex;
        min-height: 66px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 16px;
        border-top: 1px solid var(--line);
        background: color-mix(in srgb, var(--surface) 94%, transparent);
        box-shadow: 0 -12px 30px rgba(20, 52, 92, 0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mobile-action span {
        color: var(--text-soft);
        font-size: 11px;
        font-weight: 650;
        line-height: 1.35;
    }
}

@media (max-width: 390px) {
    .mobile-action span {
        display: none;
    }

    .mobile-action .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .site-header,
    .mobile-action {
        background: var(--surface);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ==========================================================================
   Legal Pages (Kebijakan Privasi & Syarat dan Ketentuan)
   ========================================================================== */
.legal-hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px;
    background: linear-gradient(180deg, var(--surface-soft) 0%, var(--page) 100%);
    border-bottom: 1px solid var(--line);
}

.legal-hero-inner {
    max-width: 860px;
}

.legal-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 13px;
    font-weight: 650;
    margin-bottom: 16px;
}

.legal-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.legal-hero-lede {
    font-size: clamp(16px, 1.4vw, 18px);
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 0;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
    padding-block: 48px 80px;
}

@media (max-width: 992px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.legal-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.legal-sidebar h3 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.legal-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-sidebar-nav a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-control);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
    transition: background-color 150ms ease, color 150ms ease;
}

.legal-sidebar-nav a:hover,
.legal-sidebar-nav a.active {
    background: var(--brand-soft);
    color: var(--brand);
}

.legal-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    padding: clamp(24px, 4vw, 48px);
    box-shadow: var(--shadow-sm);
}

.legal-section {
    margin-bottom: 40px;
    scroll-margin-top: calc(var(--header-height) + 30px);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 750;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--text);
}

.legal-section p,
.legal-section ul,
.legal-section ol {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-callout {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-control);
    background: var(--brand-soft);
    border-left: 4px solid var(--brand);
    margin-block: 20px;
}

.legal-callout i {
    font-size: 24px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-callout p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
}

/* ==========================================================================
   Under Maintenance Page (Halaman Dalam Perbaikan)
   ========================================================================== */
.maintenance-section {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: clamp(60px, 8vw, 100px);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.maintenance-card {
    max-width: 840px;
    margin-inline: auto;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-panel);
    padding: clamp(32px, 5vw, 56px);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.maintenance-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #00c6ff, var(--brand));
}

.maintenance-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #f59e0b;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.maintenance-icon-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    border-radius: 24px;
    background: var(--brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 40px;
    box-shadow: 0 12px 28px color-mix(in srgb, var(--brand) 18%, transparent);
}

.maintenance-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text);
}

.maintenance-lede {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.maintenance-feature-card {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    padding: 20px;
    transition: border-color 180ms ease, transform 180ms ease;
}

.maintenance-feature-card:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
}

.maintenance-feature-card i {
    font-size: 24px;
    color: var(--brand);
    margin-bottom: 12px;
    display: block;
}

.maintenance-feature-card h4 {
    font-size: 15px;
    font-weight: 750;
    margin-bottom: 6px;
    color: var(--text);
}

.maintenance-feature-card p {
    font-size: 13px;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.45;
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.maintenance-notice {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed var(--line);
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================================================
   Contact Page (Halaman Kontak)
   ========================================================================== */
.contact-hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px;
    background: linear-gradient(180deg, var(--surface-soft) 0%, var(--page) 100%);
    border-bottom: 1px solid var(--line);
}

.contact-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
    padding-block: 48px 80px;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-card i {
    font-size: 28px;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 12px;
    border-radius: var(--radius-control);
    flex-shrink: 0;
}

.contact-info-card h3 {
    font-size: 16px;
    font-weight: 750;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.5;
}

.contact-form-panel {
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-panel);
    padding: clamp(24px, 4vw, 44px);
    box-shadow: var(--shadow-lg);
}

.contact-form-panel h2 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-form-panel > p {
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 28px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-field label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-control);
    border: 1px solid var(--line-strong);
    background: var(--surface-soft);
    color: var(--text);
    font-size: 15px;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--brand);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}

.contact-field textarea {
    resize: vertical;
    min-height: 130px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-group input {
    max-width: 140px;
}

.captcha-refresh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-control);
    border: 1px solid var(--line-strong);
    background: var(--surface-soft);
    color: var(--text-soft);
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease;
}

.captcha-refresh-btn:hover {
    background: var(--brand-soft);
    color: var(--brand);
}

.contact-honeypot {
    display: none !important;
}

.contact-status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-control);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
    display: none;
}

.contact-status.is-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: color-mix(in srgb, var(--success) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--success) 40%, transparent);
    color: var(--success);
}

.contact-status.is-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--danger-soft);
    border: 1px solid color-mix(in srgb, var(--danger) 40%, transparent);
    color: var(--danger);
}


