:root {
    --bg: #f2f7fc;
    --bg-soft: #e9f1f9;
    --panel: #ffffff;
    --panel-soft: #f8fbff;
    --line: #d7e4f2;
    --line-strong: #b9d0e7;
    --text: #10263c;
    --muted: #4b6279;
    --accent: #0d7ddf;
    --accent-strong: #095aa5;
    --accent-soft: rgba(13, 125, 223, 0.1);
    --shadow: 0 16px 38px rgba(14, 45, 77, 0.1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: min(1720px, calc(100% - 2.5rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Outfit", sans-serif;
    background:
        radial-gradient(circle at 8% 0%, rgba(13, 125, 223, 0.14), transparent 34%),
        radial-gradient(circle at 85% 10%, rgba(61, 168, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #f5f9fe 0%, #eef5fc 42%, #f6fafe 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(16, 38, 60, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 38, 60, 0.06) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 78%);
}

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

button {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-shell {
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(246, 250, 255, 0.88);
    border-bottom: 1px solid rgba(16, 38, 60, 0.08);
    box-shadow: 0 8px 20px rgba(16, 38, 60, 0.06);
    transition: box-shadow 220ms ease, background 220ms ease;
}

.header-row,
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.header-row {
    padding: 0.9rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1;
}

.brand-copy strong,
.site-nav a,
.btn,
.section-tag,
.eyebrow,
.pane-chip,
.solution-link,
.solution-trigger small,
.portfolio-index,
.contact-step span {
    font-family: "Space Grotesk", sans-serif;
}

.brand-copy strong {
    font-size: 0.98rem;
}

.brand-copy small,
.site-nav a,
.hero-text,
.hero-brand-panel p,
.hero-clients-row span,
.section-head p,
.solution-card p,
.solution-trigger span,
.platform-head p,
.solution-pane-head p,
.pane-block p,
.product-card p,
.portfolio-intro p,
.portfolio-row p,
.value-card p,
.trust-card p,
.visual-card p,
.contact-main p,
.contact-step p,
.contact-meta small,
.site-footer p {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.site-nav a {
    font-size: 0.92rem;
    padding: 0.62rem 0.88rem;
    border-radius: 999px;
    transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    background: rgba(13, 125, 223, 0.08);
}

.site-nav .nav-cta {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #3aa8ff);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 6px auto;
    background: var(--text);
}

.hero-section {
    padding: 2.8rem 0 1.6rem;
}

.hero-grid,
.solutions-grid,
.solution-switcher,
.solution-pane-grid,
.product-grid,
.portfolio-list,
.values-grid,
.trust-grid,
.visuals-grid,
.contact-steps,
.contact-meta,
.hero-stats-row,
.hero-clients-row {
    display: grid;
    gap: 1rem;
}

.hero-grid,
.solution-card,
.platform-shell,
.product-card,
.portfolio-row,
.value-card,
.trust-card,
.visual-card,
.contact-main,
.contact-side {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-grid {
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr) minmax(240px, 280px);
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-grid::before,
.hero-grid::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    filter: blur(18px);
}

.hero-grid::before {
    width: 280px;
    height: 280px;
    top: -130px;
    right: -80px;
    background: radial-gradient(circle, rgba(13, 125, 223, 0.24) 0%, rgba(13, 125, 223, 0) 70%);
    animation: heroDrift 9s ease-in-out infinite alternate;
}

.hero-grid::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -60px;
    background: radial-gradient(circle, rgba(61, 168, 255, 0.2) 0%, rgba(61, 168, 255, 0) 70%);
    animation: heroDrift 8s ease-in-out 1.2s infinite alternate-reverse;
}

.hero-brand-panel,
.hero-main-panel,
.hero-proof-panel {
    min-width: 0;
}

.hero-logo-panel {
    display: grid;
    place-items: center;
    min-height: 170px;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
}

.hero-logo,
.contact-logo {
    width: min(220px, 100%);
    object-fit: contain;
}

.section-tag,
.eyebrow,
.pane-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
}

.section-tag,
.eyebrow {
    color: var(--accent-strong);
    background: var(--accent-soft);
    border: 1px solid rgba(13, 125, 223, 0.2);
}

.hero-main-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.25rem 0;
}

.hero-main-panel h1,
.section-head h2,
.platform-head h2,
.solution-card h3,
.solution-pane-head h3,
.product-card h3,
.portfolio-intro h2,
.portfolio-row h3,
.values-intro h2,
.value-card h3,
.trust-card h3,
.visual-card h3,
.contact-main h2,
.contact-step h3,
.hero-proof-panel h2 {
    margin: 0.85rem 0;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-main-panel h1 {
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    max-width: 16ch;
}

.hero-text,
.hero-brand-panel p,
.section-head p,
.platform-head p,
.solution-pane-head p,
.pane-block p,
.product-card p,
.portfolio-intro p,
.portfolio-row p,
.value-card p,
.trust-card p,
.contact-main p,
.contact-step p {
    line-height: 1.62;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #3aa8ff);
    box-shadow: 0 10px 24px rgba(13, 125, 223, 0.28);
}

.btn-secondary {
    border-color: var(--line-strong);
    background: #fff;
}

.hero-proof-panel {
    padding: 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(13, 125, 223, 0.12), transparent 48%),
        var(--panel-soft);
}

.hero-proof-panel small,
.solution-card-top small,
.product-label,
.portfolio-row small,
.pane-block small {
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-proof-panel h2 {
    font-size: clamp(1.42rem, 2.2vw, 2.1rem);
}

.hero-stats-row {
    grid-column: 2 / 4;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--panel-soft);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.stat-card strong {
    display: block;
    margin-bottom: 0.38rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-family: "Space Grotesk", sans-serif;
}

.stat-card span {
    font-size: 0.9rem;
    color: var(--muted);
}

.hero-clients-row {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-clients-row span {
    padding: 0.68rem 0.78rem;
    text-align: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    font-size: 0.88rem;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.section {
    padding: 5rem 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 1.7rem;
}

.section-head h2,
.platform-head h2,
.portfolio-intro h2,
.values-intro h2,
.contact-main h2 {
    font-size: clamp(1.7rem, 3.3vw, 2.75rem);
}

.solutions-grid,
.values-grid,
.trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-card,
.value-card,
.trust-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.solution-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.solution-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.solution-link {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--accent-strong);
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
}

.solution-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    margin: 0;
}

.bullet-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.bullet-list li {
    display: flex;
    gap: 0.62rem;
    line-height: 1.5;
}

.bullet-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    margin-top: 0.52rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent), #5bb6ff);
}

.platform-section {
    background:
        linear-gradient(180deg, rgba(13, 125, 223, 0.08), transparent 24%),
        transparent;
}

.platform-shell {
    padding: 1.35rem;
    border-radius: var(--radius-xl);
    display: grid;
    gap: 1rem;
}

.platform-head {
    max-width: 900px;
}

.solution-switcher {
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-trigger {
    width: 100%;
    min-height: 100%;
    padding: 0.8rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: left;
    background: var(--panel-soft);
    color: var(--text);
    cursor: pointer;
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.solution-trigger:hover,
.solution-trigger:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(13, 125, 223, 0.32);
}

.solution-trigger.is-active {
    background: rgba(13, 125, 223, 0.14);
    border-color: rgba(13, 125, 223, 0.34);
}

.solution-trigger small {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--accent-strong);
}

.solution-trigger strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
    line-height: 1.2;
}

.platform-stage {
    padding: 0.25rem 0 0;
}

.solution-pane {
    display: none;
}

.solution-pane.is-active {
    display: block;
}

.pane-chip {
    color: var(--accent-strong);
    background: rgba(13, 125, 223, 0.1);
}

.solution-pane-head h3 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.solution-pane-grid {
    grid-template-columns: 1.2fr 0.8fr;
    margin-top: 1.15rem;
}

.pane-block {
    padding: 1.15rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pane-note {
    background: rgba(13, 125, 223, 0.08);
}

.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 24px;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.product-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    text-align: center;
    border-radius: 14px;
    background: rgba(13, 125, 223, 0.11);
}

.product-card h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.95rem);
}

.trust-section {
    background:
        linear-gradient(180deg, rgba(13, 125, 223, 0.07), rgba(13, 125, 223, 0));
}

.trust-card h3,
.value-card h3,
.visual-card h3,
.contact-step h3 {
    font-size: clamp(1.15rem, 1.9vw, 1.4rem);
}

.visuals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-card {
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 250px auto;
}

.visual-media {
    overflow: hidden;
}

.visual-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.01);
    transition: transform 260ms ease;
}

.visual-card:hover .visual-media img {
    transform: scale(1.06);
}

.visual-body {
    padding: 1rem 1.05rem 1.1rem;
    display: grid;
    gap: 0.5rem;
}

.visual-body h3 {
    margin: 0;
}

.visual-body p {
    margin: 0;
}

.visual-title-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.visual-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(11, 37, 61, 0.22);
    background: linear-gradient(135deg, #0e253a, #1c3f5e);
    object-fit: contain;
    padding: 3px;
    flex-shrink: 0;
}

.visual-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 0.15rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(13, 125, 223, 0.08);
    color: var(--accent-strong);
    font-size: 0.88rem;
    font-family: "Space Grotesk", sans-serif;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    width: fit-content;
}

.portfolio-layout,
.values-layout,
.contact-layout {
    display: grid;
    gap: 1.2rem;
}

.portfolio-layout {
    grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
    align-items: start;
}

.portfolio-row {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.portfolio-index {
    color: var(--accent-strong);
    font-size: 1.25rem;
}

.portfolio-row h3 {
    margin: 0.45rem 0;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: #fff;
    white-space: nowrap;
    font-size: 0.9rem;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.values-layout {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    align-items: start;
}

.contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
}

.contact-main,
.contact-side {
    padding: 1.4rem;
    border-radius: var(--radius-xl);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lead-form {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    display: grid;
    gap: 0.85rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.form-field {
    display: grid;
    gap: 0.35rem;
}

.form-field span {
    color: var(--muted);
    font-size: 0.88rem;
}

.form-field input {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--text);
    padding: 0.65rem 0.75rem;
}

.form-field input:focus {
    outline: none;
    border-color: rgba(13, 125, 223, 0.55);
    box-shadow: 0 0 0 3px rgba(13, 125, 223, 0.14);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.contact-highlight {
    margin-top: 0.95rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(13, 125, 223, 0.25);
    background:
        linear-gradient(180deg, rgba(13, 125, 223, 0.09), rgba(13, 125, 223, 0.02)),
        #f3f9ff;
}

.contact-highlight strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.12rem;
    margin-bottom: 0.35rem;
}

.contact-highlight p {
    margin: 0 0 0.8rem;
    color: var(--muted);
}

.contact-highlight-btn {
    min-width: 240px;
}

.form-feedback {
    margin-top: 0.9rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    border: 1px solid transparent;
}

.form-feedback-success {
    border-color: rgba(20, 148, 95, 0.35);
    background: rgba(20, 148, 95, 0.1);
    color: #0d7a4d;
}

.form-feedback-error {
    border-color: rgba(220, 57, 57, 0.35);
    background: rgba(220, 57, 57, 0.1);
    color: #a52323;
}

.contact-brand {
    display: grid;
    place-items: center;
    min-height: 150px;
    margin-bottom: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
}

.contact-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0.8rem;
}

.contact-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(13, 125, 223, 0.12);
    color: var(--accent-strong);
}

.contact-meta {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-meta strong {
    display: block;
    margin-top: 0.35rem;
}

.site-footer {
    padding: 1.5rem 0 2.1rem;
    border-top: 1px solid rgba(16, 38, 60, 0.1);
}

.site-footer p {
    margin: 0.4rem 0 0;
}

.site-footer small {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
}

.site-footer small a {
    color: var(--accent-strong);
}

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

html.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.reveal-ready .reveal-delay {
    transition-delay: 100ms;
}

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

.hero-stats-row .stat-card:hover,
.hero-stats-row .stat-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(13, 125, 223, 0.35);
    box-shadow: 0 16px 28px rgba(13, 125, 223, 0.14);
}

.hero-clients-row span:hover,
.hero-clients-row span:focus-within {
    transform: translateY(-3px);
    border-color: rgba(13, 125, 223, 0.28);
    background: rgba(13, 125, 223, 0.08);
}

.solution-card:hover,
.value-card:hover,
.trust-card:hover,
.visual-card:hover,
.product-card:hover,
.portfolio-row:hover,
.contact-main:hover,
.contact-side:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 125, 223, 0.34);
    box-shadow: 0 18px 34px rgba(16, 38, 60, 0.14);
}

.pane-block:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 125, 223, 0.28);
    box-shadow: 0 14px 26px rgba(16, 38, 60, 0.1);
}

.portfolio-link:hover,
.portfolio-link:focus-visible,
.visual-link:hover,
.visual-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(13, 125, 223, 0.35);
    background: rgba(13, 125, 223, 0.08);
}

.solutions-grid .reveal:nth-child(2),
.values-grid .reveal:nth-child(2),
.trust-grid .reveal:nth-child(2),
.portfolio-list .reveal:nth-child(2) {
    transition-delay: 70ms;
}

.solutions-grid .reveal:nth-child(3),
.values-grid .reveal:nth-child(3),
.trust-grid .reveal:nth-child(3),
.portfolio-list .reveal:nth-child(3) {
    transition-delay: 140ms;
}

.solutions-grid .reveal:nth-child(4),
.values-grid .reveal:nth-child(4),
.trust-grid .reveal:nth-child(4),
.portfolio-list .reveal:nth-child(4) {
    transition-delay: 210ms;
}

.solutions-grid .reveal:nth-child(5),
.values-grid .reveal:nth-child(5),
.trust-grid .reveal:nth-child(5),
.portfolio-list .reveal:nth-child(5) {
    transition-delay: 280ms;
}

.solutions-grid .reveal:nth-child(6),
.values-grid .reveal:nth-child(6),
.portfolio-list .reveal:nth-child(6) {
    transition-delay: 350ms;
}

@keyframes heroDrift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(-16px, 10px, 0) scale(1.06);
    }
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-proof-panel,
    .hero-stats-row,
    .hero-clients-row {
        grid-column: 1 / -1;
    }

    .portfolio-layout,
    .values-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .solution-switcher {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section {
        padding: 4.3rem 0;
    }
}

@media (min-width: 1500px) {
    .hero-grid {
        grid-template-columns: minmax(260px, 320px) minmax(0, 1.2fr) minmax(280px, 360px);
    }
}

@media (max-width: 860px) {
    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.9rem;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        text-align: center;
    }

    .nav-toggle {
        display: inline-block;
    }

    .hero-grid,
    .hero-stats-row,
    .hero-clients-row,
    .solutions-grid,
    .solution-switcher,
    .solution-pane-grid,
    .visuals-grid,
    .form-grid,
    .product-grid,
    .values-grid,
    .trust-grid,
    .contact-meta {
        grid-template-columns: 1fr;
    }

    .product-card,
    .portfolio-row,
    .contact-step {
        grid-template-columns: 1fr;
    }

    .hero-main-panel h1 {
        max-width: none;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .header-row {
        padding: 0.72rem 0;
    }

    .hero-grid,
    .solution-card,
    .platform-shell,
    .product-card,
    .portfolio-row,
    .value-card,
    .trust-card,
    .contact-main,
    .contact-side {
        padding: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn,
    .portfolio-link,
    .visual-link {
        width: 100%;
    }

    .brand-copy small {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
