:root {
    --bg: #07111f;
    --bg-soft: #0b1628;
    --bg-alt: #101c31;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-2: rgba(255, 255, 255, 0.035);
    --surface-3: rgba(255, 255, 255, 0.08);
    --text: #f4f7ff;
    --muted: #97abc7;
    --muted-strong: #c7d6ea;
    --accent: #46d8ff;
    --accent-2: #7f7cff;
    --accent-3: #91ecff;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.16);
    --success: #33d17a;
    --warning: #ffb86c;
    --danger: #ff7286;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.24);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1360px, calc(100vw - 40px));
    --transition: 220ms ease;
}

* { 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(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(70, 216, 255, 0.09), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(127, 124, 255, 0.11), transparent 26%),
        linear-gradient(180deg, #07111f 0%, #081320 34%, #091523 100%);
    line-height: 1.65;
    min-height: 100vh;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
main { position: relative; z-index: 1; }
strong { font-weight: 760; }

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 8% 14%, rgba(70, 216, 255, 0.08), transparent 18%),
        radial-gradient(circle at 88% 10%, rgba(127, 124, 255, 0.1), transparent 24%),
        radial-gradient(circle at 56% 72%, rgba(70, 216, 255, 0.04), transparent 22%);
}

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

.section { padding: clamp(76px, 8vw, 118px) 0; }

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section--tight-top { padding-top: 24px; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    border: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.eyebrow--small {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 0.74rem;
}

.lead {
    margin: 0;
    font-size: clamp(1.03rem, 1.35vw, 1.17rem);
    color: var(--muted-strong);
    max-width: 66ch;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #08121f;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 14px 34px rgba(70, 216, 255, 0.22);
    font-weight: 760;
    letter-spacing: 0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), opacity var(--transition);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(70, 216, 255, 0.3);
}

.button--ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.button--ghost:hover { background: rgba(255, 255, 255, 0.08); }
.button--block { width: 100%; }

.button__icon,
.inline-contact__icon,
.footer-contact__icon,
.contact-card__icon,
.feature-card__icon,
.service-card__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button__icon svg,
.inline-contact__icon svg,
.footer-contact__icon svg,
.contact-card__icon svg,
.feature-card__icon svg,
.service-card__kicker svg,
.text-link svg {
    width: 18px;
    height: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 760;
}

.text-link::after {
    content: '→';
    transition: transform var(--transition);
}

.text-link:hover::after { transform: translateX(4px); }

.topbar {
    position: relative;
    z-index: 20;
    background: rgba(4, 9, 18, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
}

.topbar__content {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar__items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 0.9rem;
}

.inline-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
}

.inline-contact__icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex: 0 0 16px;
}

.inline-contact:hover { color: var(--text); }
.inline-contact--phone { color: var(--text); font-weight: 700; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-shell {
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.78));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.is-scrolled .header-shell { box-shadow: var(--shadow-soft); }

.nav-wrap {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    max-width: 340px;
}

.brand__mark {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(70, 216, 255, 0.12), rgba(127, 124, 255, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(70, 216, 255, 0.14);
    overflow: hidden;
}

.brand__mark img { width: 100%; height: 100%; object-fit: cover; }

.brand__text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand__text strong {
    font-size: 1.13rem;
    line-height: 1.1;
    letter-spacing: 0.1em;
}

.brand__text small {
    font-size: 0.81rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

.site-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: nowrap;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav li { display: flex; }

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--muted-strong);
    font-weight: 720;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav__meta,
.site-nav__cta { display: none; }

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .button { min-height: 48px; padding-inline: 18px; flex: 0 0 auto; }

.nav-toggle {
    display: none;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    padding: 0;
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
}

.nav-toggle span:not(.sr-only) {
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: top var(--transition), opacity var(--transition), transform var(--transition);
}

.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 25px; }
.nav-toggle span:nth-child(3) { top: 33px; }

body.nav-open .nav-toggle span:nth-child(1) {
    top: 25px;
    transform: rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) {
    top: 25px;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    overflow: clip;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    z-index: -1;
}

.hero::before {
    width: 320px;
    height: 320px;
    top: 0;
    right: 2%;
    background: rgba(70, 216, 255, 0.16);
}

.hero::after {
    width: 280px;
    height: 280px;
    left: 0;
    bottom: 0;
    background: rgba(127, 124, 255, 0.18);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
}

.hero__grid--home {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.hero__content {
    display: grid;
    gap: 18px;
}

.hero__content h1 {
    margin: 0;
    font-size: clamp(3rem, 5.3vw, 5.15rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    max-width: 10.4ch;
}

.hero--inner .hero__content h1 {
    font-size: clamp(2.35rem, 4.4vw, 4.15rem);
    max-width: 12ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted-strong);
    font-size: 0.93rem;
}

.hero__visual { position: relative; min-height: 520px; }

.visual-card,
.visual-frame,
.stat-card,
.service-card,
.plan-card,
.timeline-card,
.testimonial-card,
.feature-card,
.media-card,
.step-card,
.contact-card,
.contact-panel,
.form-panel,
.cta-band,
.faq-item,
.media-stack__item,
.contact-note,
.vendor-strip,
.spec-tile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.visual-card,
.visual-frame { position: relative; overflow: hidden; }

.visual-card--main { height: min(72vw, 620px); }
.hero--inner .visual-card--main { height: min(62vw, 540px); }

.visual-card--main img,
.visual-frame img,
.media-stack__item img,
.media-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card--soft,
.visual-frame--dark {
    background:
        radial-gradient(circle at 40% 40%, rgba(70, 216, 255, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(4, 8, 15, 0.26));
}

.visual-card--glow::after,
.visual-frame::after {
    content: '';
    position: absolute;
    inset: auto -10% -28% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(70, 216, 255, 0.22), transparent 70%);
    pointer-events: none;
}

.floating-panel {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    max-width: 270px;
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.floating-panel strong {
    font-size: 1.05rem;
    line-height: 1.22;
}

.floating-panel span {
    color: var(--muted);
    font-size: 0.95rem;
}

.floating-panel--top {
    top: 22px;
    left: 22px;
}

.floating-panel--bottom {
    right: 22px;
    bottom: 22px;
    min-width: 330px;
    max-width: 380px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.floating-panel--bottom div { display: grid; gap: 4px; }
.floating-panel--bottom strong {
    font-size: 1.32rem;
    letter-spacing: -0.04em;
}

.stats-grid,
.service-grid,
.plan-grid,
.timeline-grid,
.testimonial-grid,
.feature-grid,
.media-card-grid,
.steps-grid,
.contact-cards,
.spec-tiles {
    display: grid;
    gap: 22px;
}

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

.stat-card {
    padding: 28px;
    display: grid;
    gap: 8px;
}

.stat-card strong {
    font-size: clamp(1.8rem, 2.5vw, 2.45rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-card span { font-weight: 760; }
.stat-card small { color: var(--muted); }

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
    justify-items: center;
}

.section-heading h2 {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.section-heading p {
    margin: 0;
    max-width: 70ch;
    color: var(--muted-strong);
}

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

.service-card {
    padding: 26px;
    display: grid;
    gap: 18px;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.plan-card:hover,
.feature-card:hover,
.media-card:hover,
.step-card:hover,
.timeline-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.spec-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(70, 216, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.service-card__kicker,
.feature-card__icon,
.contact-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(70, 216, 255, 0.14), rgba(127, 124, 255, 0.16));
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card h3,
.plan-card h3,
.feature-card h3,
.media-card h3,
.step-card h3,
.timeline-card h3,
.contact-card h3 {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.2;
}

.service-card p,
.plan-card p,
.feature-card p,
.media-card p,
.step-card p,
.timeline-card p,
.testimonial-card p,
.contact-card p,
.contact-note,
.form-panel p,
.mini-note {
    margin: 0;
    color: var(--muted-strong);
}

.bullet-list,
.check-list,
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.bullet-list li,
.check-list li,
.footer-links li {
    position: relative;
    padding-left: 22px;
    color: var(--muted-strong);
}

.bullet-list li::before,
.check-list li::before,
.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.bullet-list--compact { gap: 8px; }

.check-list--icons li::before {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 4px rgba(70, 216, 255, 0.08);
}

.vendor-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: center;
    padding: 24px 26px;
}

.vendor-strip__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.vendor-strip__brand img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    object-fit: contain;
    padding: 10px;
}

.vendor-strip__brand strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.08rem;
}

.vendor-strip__brand span { color: var(--muted-strong); }

.vendor-strip__specs,
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vendor-strip__specs span,
.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted-strong);
    font-size: 0.86rem;
}

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

.plan-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    display: grid;
    gap: 18px;
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(70, 216, 255, 0.72), rgba(127, 124, 255, 0.72), transparent);
}

.plan-card--featured {
    background: linear-gradient(180deg, rgba(70, 216, 255, 0.09), rgba(255, 255, 255, 0.05));
    border-color: rgba(70, 216, 255, 0.28);
    box-shadow: 0 20px 52px rgba(70, 216, 255, 0.08), var(--shadow-soft);
}

.plan-card__badge,
.timeline-card__year,
.testimonial-card__source,
.step-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 720;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.plan-card__head--stacked {
    flex-direction: column;
    align-items: flex-start;
}

.plan-card__summary { max-width: 34ch; }

.plan-card__price {
    flex: 0 0 auto;
    text-align: right;
    font-size: clamp(1.86rem, 3vw, 2.6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 820;
    white-space: nowrap;
}

.plan-card__price span {
    display: block;
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--muted);
    font-weight: 650;
}

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

.feature-card {
    padding: 24px;
    display: grid;
    gap: 14px;
}

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

.media-card {
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.media-card__image {
    aspect-ratio: 1.38 / 1;
    overflow: hidden;
}

.media-card__body {
    padding: 24px;
    display: grid;
    gap: 12px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 50px);
    align-items: center;
}

.split--media-right .split__content { order: 1; }
.split--media-right .split__media { order: 2; }

.split__content {
    display: grid;
    gap: 18px;
}

.split__content h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3.15rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.mini-note {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-stack {
    position: relative;
    min-height: 520px;
}

.media-stack--alt { min-height: 560px; }
.media-stack--hardware { min-height: 580px; }

.media-stack__item {
    overflow: hidden;
}

.media-stack__item--large {
    width: 82%;
    height: 430px;
}

.media-stack__item--small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 250px;
}

.spec-tiles {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-tiles--inline {
    position: static;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-tile {
    padding: 18px;
    display: grid;
    gap: 4px;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.spec-tile strong {
    font-size: 1.18rem;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

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

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

.timeline-card,
.step-card,
.testimonial-card {
    padding: 24px;
    display: grid;
    gap: 12px;
}

.testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.testimonial-card p { font-size: 1.08rem; line-height: 1.72; }

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

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: start;
}

.contact-panel,
.form-panel {
    padding: 28px;
    display: grid;
    gap: 22px;
}

.contact-panel h2,
.form-panel h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

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

.contact-card {
    padding: 20px;
    display: grid;
    gap: 10px;
}

.contact-card a:hover { color: var(--text); }

.contact-card__icon {
    width: 46px;
    height: 46px;
}

.contact-note {
    padding: 22px;
}

.contact-note strong {
    display: block;
    margin-bottom: 12px;
}

.form-status {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-status--success {
    background: rgba(51, 209, 122, 0.12);
    border-color: rgba(51, 209, 122, 0.32);
}

.form-status--warning {
    background: rgba(255, 184, 108, 0.12);
    border-color: rgba(255, 184, 108, 0.28);
}

.form-status--error {
    background: rgba(255, 114, 134, 0.12);
    border-color: rgba(255, 114, 134, 0.28);
}

.contact-form { display: grid; gap: 18px; }

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

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    font-weight: 700;
    color: var(--muted-strong);
}

input,
select,
textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

select option { color: #0d1420; }

input::placeholder,
textarea::placeholder {
    color: rgba(198, 213, 234, 0.58);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(70, 216, 255, 0.56);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(70, 216, 255, 0.12);
}

textarea {
    min-height: 180px;
    resize: vertical;
}

.field-error {
    color: #ff9cab;
    font-size: 0.9rem;
}

.form-hidden {
    position: absolute;
    left: -9999px;
}

.faq-list { display: grid; gap: 16px; }

.faq-item { padding: 22px 24px; }

.faq-item summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 28px;
    font-weight: 760;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--accent);
}

.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 14px; color: var(--muted-strong); }

.cta-band {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        radial-gradient(circle at 92% 10%, rgba(70, 216, 255, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.cta-band h2 {
    margin: 10px 0;
    font-size: clamp(1.95rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.cta-band p {
    margin: 0;
    color: var(--muted-strong);
    max-width: 62ch;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 10px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.85fr 1fr;
    gap: 28px;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand--footer .brand__text small { max-width: none; }

.footer-copy {
    margin: 18px 0 20px;
    color: var(--muted-strong);
    max-width: 44ch;
}

.site-footer h3 {
    margin: 0 0 16px;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-strong);
}

.footer-links a:hover { color: var(--text); }

.footer-contact {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links--contact li {
    padding-left: 0;
}

.footer-links--contact li::before {
    display: none;
}

.footer-links--contact {
    gap: 14px;
}

.footer-contact {
    gap: 12px;
}

.contact-card {
    align-content: start;
}


.footer-contact__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 0.18rem;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
}

.footer-bottom p { margin: 0; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

@media (max-width: 1360px) {
    .brand { max-width: 270px; }
    .brand__text small { max-width: 180px; }
    .site-nav a { padding-inline: 11px; font-size: 0.93rem; }
}

@media (max-width: 1280px) {
    .brand__text small { max-width: 240px; }
    .site-nav a { padding-inline: 12px; font-size: 0.94rem; }
    .header-actions .button { padding-inline: 16px; }
}

@media (max-width: 1180px) {
    .brand__text small { display: none; }
    .site-nav {
        position: fixed;
        inset: 94px 16px auto 16px;
        display: grid;
        gap: 18px;
        padding: 18px;
        background: rgba(7, 17, 31, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 26px;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
        justify-content: stretch;
    }

    body.nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav ul {
        display: grid;
        gap: 8px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .site-nav a {
        justify-content: flex-start;
        min-height: 48px;
        padding: 0 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-nav__meta,
    .site-nav__cta {
        display: grid;
        gap: 10px;
    }

    .header-actions { display: none; }
    .nav-toggle { display: inline-flex; justify-self: end; margin-left: auto; }

    .hero__grid,
    .hero__grid--home,
    .split,
    .contact-layout,
    .footer-grid,
    .vendor-strip {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .service-grid,
    .plan-grid,
    .timeline-grid,
    .testimonial-grid,
    .feature-grid,
    .feature-grid--two,
    .media-card-grid,
    .steps-grid,
    .contact-cards,
    .form-grid,
    .spec-tiles,
    .spec-tiles--inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__visual { min-height: 0; }

    .visual-card--main,
    .hero--inner .visual-card--main {
        height: min(88vw, 560px);
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .vendor-strip__specs { justify-content: flex-start; }
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .site-nav { inset: 84px 14px auto 14px; }
    .nav-wrap { min-height: 80px; }
    .hero__content h1,
    .hero--inner .hero__content h1,
    .section-heading h2,
    .split__content h2,
    .cta-band h2 {
        max-width: none;
    }
    .floating-panel { position: static; margin-top: 14px; max-width: none; }
    .floating-panel--bottom { min-width: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .media-stack,
    .media-stack--alt,
    .media-stack--hardware {
        min-height: 0;
        display: grid;
        gap: 18px;
    }
    .media-stack__item--large,
    .media-stack__item--small {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 1.2 / 1;
    }
    .spec-tiles,
    .spec-tiles--inline {
        position: static;
        width: 100%;
    }
}

@media (max-width: 620px) {
    .section { padding: 66px 0; }
    .container { width: min(100vw - 24px, 1360px); }
    .button,
    .button--ghost { width: 100%; }
    .hero__actions,
    .cta-band__actions { width: 100%; }

    .stats-grid,
    .service-grid,
    .plan-grid,
    .timeline-grid,
    .testimonial-grid,
    .feature-grid,
    .feature-grid--two,
    .media-card-grid,
    .steps-grid,
    .contact-cards,
    .form-grid,
    .spec-tiles,
    .spec-tiles--inline {
        grid-template-columns: 1fr;
    }

    .hero__content h1 { font-size: clamp(2.32rem, 11vw, 3.6rem); }
    .hero--inner .hero__content h1 { font-size: clamp(2rem, 10vw, 3rem); }

    .brand__text strong { font-size: 1rem; }

    .service-card,
    .plan-card,
    .timeline-card,
    .testimonial-card,
    .feature-card,
    .media-card__body,
    .step-card,
    .contact-panel,
    .form-panel,
    .contact-card,
    .faq-item,
    .cta-band,
    .stat-card,
    .vendor-strip,
    .spec-tile {
        padding: 22px;
    }

    .plan-card__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-card__price { text-align: left; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Final polish overrides */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-switch a {
    min-width: 46px;
    min-height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.86rem;
    font-weight: 780;
    letter-spacing: 0.08em;
}

.lang-switch a.is-active {
    background: linear-gradient(135deg, rgba(70, 216, 255, 0.18), rgba(127, 124, 255, 0.2));
    color: var(--text);
}

.button--disabled,
.button--disabled:hover {
    cursor: default;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    opacity: 0.92;
}

.plan-card__cta-group {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.plan-card__inline-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 760;
    color: var(--muted-strong);
}

.plan-card__inline-link span:first-child {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
}

.plan-card__inline-link span:first-child svg {
    width: 18px;
    height: 18px;
}

.plan-card__inline-link:hover { color: var(--text); }

.mini-note--whatsapp {
    margin-top: 14px;
    background: rgba(37, 211, 102, 0.09);
    border-color: rgba(37, 211, 102, 0.18);
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.94);
    border: 1px solid rgba(37, 211, 102, 0.26);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
}

.whatsapp-float__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
}

.whatsapp-float__icon svg {
    width: 22px;
    height: 22px;
}

.whatsapp-float__text {
    white-space: nowrap;
    font-weight: 800;
    color: var(--text);
}

.site-header {
    backdrop-filter: blur(14px);
}

.nav-wrap {
    min-height: 86px;
    gap: 14px;
}

.brand {
    max-width: 320px;
    align-self: center;
}

.brand__text {
    gap: 4px;
}

.brand__text strong {
    font-size: 1.06rem;
    letter-spacing: 0.09em;
}

.brand__text small {
    white-space: normal;
    overflow: hidden;
    max-width: 250px;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-nav ul {
    gap: 4px;
    padding: 6px;
}

.site-nav a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.94rem;
}

.header-actions {
    gap: 10px;
}

.header-actions .button {
    min-height: 46px;
    padding-inline: 18px;
}

.hero {
    overflow: visible;
}

.hero__grid {
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

.hero__grid--home {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.hero__content {
    max-width: 680px;
    gap: 16px;
}

.hero__content h1 {
    font-size: clamp(2.8rem, 4.8vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 11.8ch;
}

.hero--inner .hero__content h1 {
    font-size: clamp(2.35rem, 3.7vw, 3.55rem);
    line-height: 1.04;
    max-width: 13.2ch;
}

.lead {
    max-width: 58ch;
}

.hero__visual {
    display: flex;
    align-items: center;
    min-height: 0;
}

.visual-card--main {
    width: 100%;
    height: clamp(340px, 43vw, 560px);
}

.hero--inner .visual-card--main {
    height: clamp(300px, 38vw, 500px);
}

.visual-card--contain img,
.media-stack__item.visual-card--contain img {
    object-fit: contain;
    padding: clamp(12px, 1.8vw, 22px);
    background:
        radial-gradient(circle at 65% 30%, rgba(70, 216, 255, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(4, 8, 15, 0.26));
}

.floating-panel {
    padding: 16px 18px;
    border-radius: 20px;
}

.floating-panel--top {
    top: 20px;
    left: -12px;
    max-width: min(300px, 58%);
}

.floating-panel--bottom {
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    min-width: 0;
}

.vendor-strip {
    gap: 18px;
}

.plan-card {
    gap: 20px;
}

.plan-card__head {
    gap: 18px;
}

.plan-card__summary {
    max-width: none;
}

.plan-card__price {
    font-size: clamp(1.8rem, 2.7vw, 2.45rem);
}

.service-card,
.feature-card,
.contact-card,
.media-card__body,
.timeline-card,
.step-card,
.stat-card {
    align-content: start;
}

.contact-layout {
    gap: 28px;
}

.contact-card {
    min-height: 152px;
}

.footer-grid {
    gap: 24px;
}

@media (max-width: 1360px) {
    .brand { max-width: 280px; }
    .brand__text small { max-width: 200px; }
}

@media (max-width: 1280px) {
    .brand { max-width: 250px; }
    .brand__text small { max-width: 175px; }
    .site-nav a { padding-inline: 12px; font-size: 0.92rem; }
    .header-actions .button { padding-inline: 16px; }
}

@media (max-width: 1180px) {
    .brand__text small {
        display: block;
        max-width: none;
        -webkit-line-clamp: 1;
    }

    .site-nav {
        inset: 84px 14px auto 14px;
    }

    .site-nav__cta .lang-switch {
        width: fit-content;
        justify-self: center;
    }

    .floating-panel--top {
        left: 18px;
        max-width: 280px;
    }
}

@media (max-width: 900px) {
    .nav-wrap {
        min-height: 78px;
    }

    .brand {
        max-width: min(70vw, 290px);
    }

    .brand__text small {
        -webkit-line-clamp: 1;
        max-width: 100%;
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 14ch;
    }

    .floating-panel {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .floating-panel--bottom {
        width: 100%;
    }

    .visual-card--main,
    .hero--inner .visual-card--main {
        height: clamp(300px, 62vw, 460px);
    }
}

@media (max-width: 620px) {
    .brand {
        max-width: calc(100vw - 120px);
    }

    .brand__mark {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .brand__text strong {
        font-size: 0.98rem;
    }

    .brand__text small {
        font-size: 0.77rem;
    }

    .hero__content h1 {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
        max-width: none;
    }

    .hero--inner .hero__content h1 {
        font-size: clamp(2rem, 9vw, 2.85rem);
        max-width: none;
    }

    .floating-panel--bottom {
        grid-template-columns: 1fr;
    }

    .lang-switch {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 54px;
        padding: 0 16px;
    }

    .whatsapp-float__text {
        display: none;
    }
}

/* Final refinement pass */
.hero__content,
.hero__visual,
.split__content,
.split__media,
.media-stack,
.media-card,
.media-card__body,
.media-card__image {
    min-width: 0;
}

.visual-card img,
.media-stack__item img,
.media-card__image img {
    object-position: center center;
}

.hero__content h1 {
    font-size: clamp(2.35rem, 4vw, 3.6rem);
    max-width: 14ch;
    line-height: 1.06;
    text-wrap: balance;
}

.hero--inner .hero__content h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    max-width: 16ch;
    line-height: 1.08;
    text-wrap: balance;
}

.section-heading h2,
.split__content h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
}

.hero__visual .floating-panel--top {
    left: 18px;
    top: 18px;
}

@media (max-width: 900px) {
    .hero__content h1 {
        font-size: clamp(2.15rem, 8vw, 3.2rem);
        max-width: none;
    }

    .hero--inner .hero__content h1 {
        font-size: clamp(1.95rem, 7vw, 2.75rem);
        max-width: none;
    }

    .section-heading h2,
    .split__content h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}


/* Layout tightening pass */
.brand { max-width: 360px; }
.brand__text small {
    max-width: 260px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}
.hero__grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    gap: clamp(24px, 3vw, 42px);
}
.hero__grid--home {
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}
.hero__content {
    max-width: 760px;
}
.hero__content h1 {
    font-size: clamp(2.1rem, 3.35vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    max-width: 17ch;
    text-wrap: balance;
}
.hero--inner .hero__content h1 {
    font-size: clamp(1.95rem, 2.95vw, 2.85rem);
    line-height: 1.07;
    max-width: 19ch;
    text-wrap: balance;
}
.lead {
    max-width: 62ch;
}
@media (max-width: 1180px) {
    .brand { max-width: 320px; }
    .brand__text small { max-width: 220px; }
    .hero__content h1 { max-width: 15ch; }
    .hero--inner .hero__content h1 { max-width: 16ch; }
}
@media (max-width: 900px) {
    .brand__text small {
        -webkit-line-clamp: 1;
        max-width: 100%;
    }
    .hero__grid,
    .hero__grid--home {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero__content { max-width: none; }
    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: none;
        text-wrap: pretty;
    }
}


/* Responsive hotfixes and copy polish */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body { overflow-wrap: break-word; }

.hero,
.section,
.container,
.media-stack,
.media-card,
.plan-card,
.visual-card {
    max-width: 100%;
}

.media-card__image img,
.media-stack__item img,
.visual-card--main img {
    width: 100%;
    height: 100%;
}

.plan-card__price {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.plan-card__renewal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted-strong);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .media-stack__item--large {
        width: 100%;
        height: clamp(300px, 52vw, 430px);
    }

    .media-stack__item--small {
        width: min(48%, 260px);
        height: clamp(180px, 28vw, 250px);
    }
}

@media (max-width: 900px) {
    .plan-card__price {
        justify-items: start;
    }
}

@media (max-width: 620px) {
    .media-card__image {
        aspect-ratio: 1.2 / 1;
    }

    .media-card__body {
        padding: 18px;
    }

    .plan-card__renewal {
        font-size: 0.72rem;
    }
}


html, body {
    max-width: 100%;
    overflow-x: clip;
}

.site-header,
main,
section,
.container,
.hero,
.split,
.media-card-grid,
.plan-grid,
.stats-grid,
.vendor-strip,
.contact-layout {
    max-width: 100%;
}

.visual-card--main,
.media-card__image,
.media-stack__item,
.visual-frame {
    width: 100%;
}

.visual-card--contain img,
.media-stack__item.visual-card--contain img,
.media-card__image img {
    object-fit: contain;
    object-position: center center;
}

.media-card__image {
    min-height: 320px;
    background:
        radial-gradient(circle at 65% 30%, rgba(70, 216, 255, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(4, 8, 15, 0.26));
}

.media-card__image img {
    padding: clamp(16px, 2vw, 28px);
}

.hero__content h1 {
    max-width: 11ch;
    text-wrap: balance;
}

.hero--inner .hero__content h1 {
    max-width: 14ch;
    text-wrap: balance;
}

.vendor-strip__brand img {
    display: none;
}

@media (max-width: 1100px) {
    .floating-panel--top {
        left: 16px;
        top: 16px;
        max-width: min(280px, 62%);
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 14ch;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 24px, 100%);
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 12ch;
        line-height: 0.98;
    }

    .visual-card--main,
    .hero--inner .visual-card--main,
    .media-card__image {
        height: auto;
        min-height: 260px;
    }

    .floating-panel {
        position: static;
        margin-top: 14px;
        max-width: 100%;
    }

    .vendor-strip__specs,
    .hero__chips {
        overflow: hidden;
    }

    .media-card__image img,
    .visual-card--contain img {
        padding: 14px;
    }
}


/* Final title balance + section alignment */
.hero__grid,
.hero__grid--home {
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
    align-items: center;
}

.hero__content {
    max-width: 780px;
}

.hero__content h1 {
    font-size: clamp(2.4rem, 3.15vw, 3.85rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em;
    max-width: 13.5ch !important;
    text-wrap: balance;
}

.hero--inner .hero__content h1 {
    font-size: clamp(2.1rem, 2.65vw, 3.1rem) !important;
    line-height: 1.1 !important;
    max-width: 15.5ch !important;
    text-wrap: balance;
}

.section-heading {
    justify-items: center;
    text-align: center;
    max-width: 920px;
    margin: 0 auto 34px;
}

.section-heading p,
.section-heading h2 {
    max-width: 28ch;
}

.split__content h2 {
    font-size: clamp(1.9rem, 2.4vw, 2.7rem);
    line-height: 1.12;
    max-width: 19ch;
    text-wrap: balance;
}

@media (max-width: 1180px) {
    .hero__grid,
    .hero__grid--home {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    }

    .hero__content h1 {
        max-width: 12.4ch !important;
    }

    .hero--inner .hero__content h1 {
        max-width: 14ch !important;
    }
}

@media (max-width: 900px) {
    .hero__grid,
    .hero__grid--home {
        grid-template-columns: 1fr;
    }

    .hero__content h1,
    .hero--inner .hero__content h1,
    .split__content h2,
    .section-heading h2,
    .section-heading p {
        max-width: none !important;
    }
}

@media (max-width: 640px) {
    .hero__content h1 {
        font-size: clamp(2.15rem, 8.8vw, 3.15rem) !important;
        line-height: 1.04 !important;
    }

    .hero--inner .hero__content h1 {
        font-size: clamp(1.9rem, 7.6vw, 2.65rem) !important;
        line-height: 1.06 !important;
    }
}


/* v5 title layout polish */
.hero__grid,
.hero__grid--home {
    grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr) !important;
    gap: clamp(26px, 3.4vw, 48px) !important;
    align-items: center !important;
}

.hero__content {
    max-width: 900px !important;
    gap: 16px !important;
}

.hero__content h1 {
    font-size: clamp(2.35rem, 3.75vw, 4.1rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.042em !important;
    max-width: 16.5ch !important;
    text-wrap: balance;
}

.hero--inner .hero__content h1 {
    font-size: clamp(2.05rem, 3.1vw, 3.2rem) !important;
    line-height: 1.06 !important;
    max-width: 17ch !important;
    text-wrap: balance;
}

.hero__content .lead {
    max-width: 62ch;
    font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.section-heading {
    max-width: 1080px !important;
    gap: 14px !important;
    margin: 0 auto 40px !important;
}

.section-heading h2 {
    max-width: 30ch !important;
    font-size: clamp(1.75rem, 2.55vw, 2.7rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    text-wrap: balance;
}

.section-heading p {
    max-width: 68ch !important;
    font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.split__content h2 {
    max-width: 22ch !important;
    font-size: clamp(1.85rem, 2.35vw, 2.65rem) !important;
    line-height: 1.12 !important;
    text-wrap: balance;
}

@media (max-width: 1180px) {
    .hero__content h1 { max-width: 15.2ch !important; }
    .hero--inner .hero__content h1 { max-width: 15.6ch !important; }
    .section-heading h2 { max-width: 26ch !important; }
}

@media (max-width: 900px) {
    .hero__grid,
    .hero__grid--home {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .hero__content,
    .hero__visual,
    .split__content,
    .split__media {
        max-width: none !important;
    }

    .hero__content h1,
    .hero--inner .hero__content h1,
    .section-heading h2,
    .split__content h2 {
        max-width: 100% !important;
    }
}

@media (max-width: 640px) {
    .hero__content h1 {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        line-height: 1.06 !important;
    }

    .hero--inner .hero__content h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
        line-height: 1.08 !important;
    }

    .section-heading h2 {
        font-size: clamp(1.6rem, 6vw, 2.1rem) !important;
    }

    .split__content h2 {
        font-size: clamp(1.65rem, 6vw, 2.15rem) !important;
    }
}


/* v6 hero and hosting refinement */
.hero__grid,
.hero__grid--home {
    grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr) !important;
    gap: clamp(28px, 4vw, 64px) !important;
}

.hero__content {
    max-width: 980px !important;
}

.hero__content h1 {
    max-width: 18ch !important;
    font-size: clamp(2.2rem, 3.25vw, 4rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
    text-wrap: pretty;
}

.hero--inner .hero__content h1 {
    max-width: 20ch !important;
    font-size: clamp(1.95rem, 2.6vw, 3.05rem) !important;
    line-height: 1.1 !important;
    text-wrap: pretty;
}

.section-heading h2 {
    max-width: 34ch !important;
}

.section-heading p {
    max-width: 72ch !important;
}

.hero__content .lead,
.split__content p,
.section-heading p {
    color: var(--muted-strong);
}

.wp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.wp-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
}

.wp-card__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 14px;
    color: var(--accent);
    background: rgba(70,216,255,0.08);
    border: 1px solid rgba(70,216,255,0.14);
}

.wp-card__icon svg { width: 22px; height: 22px; }
.wp-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.25;
}
.wp-card p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.98rem;
    line-height: 1.65;
}

@media (max-width: 1180px) {
    .hero__grid,
    .hero__grid--home {
        grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr) !important;
    }

    .hero__content h1 { max-width: 16.5ch !important; }
    .hero--inner .hero__content h1 { max-width: 18ch !important; }
    .wp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .hero__grid,
    .hero__grid--home {
        grid-template-columns: 1fr !important;
    }

    .hero__content,
    .hero__visual {
        max-width: none !important;
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: none !important;
        font-size: clamp(2rem, 7.2vw, 3.1rem) !important;
        line-height: 1.08 !important;
    }

    .section-heading h2,
    .section-heading p {
        max-width: none !important;
    }
}

@media (max-width: 620px) {
    .wp-grid { grid-template-columns: 1fr; }
    .hero__content h1 {
        font-size: clamp(1.95rem, 9vw, 2.8rem) !important;
    }
    .hero--inner .hero__content h1 {
        font-size: clamp(1.8rem, 8vw, 2.45rem) !important;
    }
}


/* v7 hero layout refinement */
.hero__grid,
.hero__grid--home,
.hero__grid--inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr) !important;
    align-items: center !important;
    gap: clamp(30px, 4vw, 56px) !important;
}

.hero__content {
    max-width: none !important;
}

.hero__content h1 {
    max-width: 12.2ch !important;
    font-size: clamp(2.45rem, 3.45vw, 4.2rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    margin-bottom: 18px !important;
    text-wrap: balance;
}

.hero--inner .hero__content h1 {
    max-width: 13.5ch !important;
    font-size: clamp(2.1rem, 2.85vw, 3.35rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    margin-bottom: 16px !important;
    text-wrap: balance;
}

.hero__content .lead {
    max-width: 62ch;
}

.hero__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
    margin-bottom: 26px;
    max-width: 900px;
}

.hero__point {
    min-height: 100%;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.hero__point strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.25;
}

.hero__point span {
    display: block;
    color: var(--muted-strong);
    font-size: 0.94rem;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr) !important;
    }

    .hero__content h1 { max-width: 11.6ch !important; }
    .hero--inner .hero__content h1 { max-width: 12.8ch !important; }
    .hero__points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: 1fr !important;
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 13.5ch !important;
        font-size: clamp(2rem, 8.2vw, 3rem) !important;
        line-height: 1.05 !important;
    }

    .hero__points {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
        margin-bottom: 22px;
    }
}

@media (max-width: 640px) {
    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 11.8ch !important;
        font-size: clamp(1.88rem, 9vw, 2.55rem) !important;
        line-height: 1.06 !important;
    }

    .hero__point {
        padding: 16px;
        border-radius: 18px;
    }

    .hero__point strong {
        font-size: 0.98rem;
    }

    .hero__point span {
        font-size: 0.92rem;
    }
}

/* v8 hero title balance fix */
.hero,
.hero--inner {
    overflow: clip;
}

.hero__grid,
.hero__grid--home,
.hero__grid--inner {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr) !important;
    align-items: center !important;
    gap: clamp(24px, 3vw, 44px) !important;
}

.hero__content {
    max-width: 760px !important;
}

.hero__content h1 {
    max-width: 15.4ch !important;
    font-size: clamp(2.55rem, 3.3vw, 3.95rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.045em !important;
    text-wrap: balance;
    margin: 14px 0 16px !important;
}

.hero--inner .hero__content h1 {
    max-width: 16.8ch !important;
    font-size: clamp(2.2rem, 2.7vw, 3.15rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
    text-wrap: balance;
    margin: 14px 0 16px !important;
}

.hero__content .lead {
    max-width: 58ch !important;
}

.hero__points {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 760px !important;
}

.hero--home .hero__points {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.hero__visual {
    min-height: auto !important;
}

.visual-card--main {
    min-height: 0 !important;
}

@media (min-width: 1280px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr) !important;
    }

    .hero__content h1 { max-width: 16.2ch !important; }
    .hero--inner .hero__content h1 { max-width: 17.6ch !important; }
}

@media (max-width: 1180px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr) !important;
        gap: 28px !important;
    }

    .hero__content h1 {
        max-width: 14.2ch !important;
        font-size: clamp(2.25rem, 3.5vw, 3.4rem) !important;
    }

    .hero--inner .hero__content h1 {
        max-width: 15.4ch !important;
        font-size: clamp(2rem, 3vw, 2.75rem) !important;
    }
}

@media (max-width: 900px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .hero__content,
    .hero__visual {
        max-width: none !important;
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 15ch !important;
        font-size: clamp(2.05rem, 7.2vw, 3rem) !important;
        line-height: 1.08 !important;
    }

    .hero__points,
    .hero--home .hero__points {
        grid-template-columns: 1fr !important;
        max-width: none !important;
    }
}

@media (max-width: 640px) {
    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 11.8ch !important;
        font-size: clamp(1.9rem, 8.8vw, 2.55rem) !important;
        line-height: 1.08 !important;
    }
}

/* v8 final hero title repair */
.hero {
    overflow: hidden;
}

.hero__grid,
.hero__grid--home,
.hero__grid--inner {
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr) !important;
    align-items: start !important;
    gap: clamp(28px, 3.4vw, 48px) !important;
}

.hero__content {
    max-width: 920px !important;
    padding-right: 6px;
}

.hero__content h1 {
    max-width: 16.4ch !important;
    font-size: clamp(2.8rem, 4.1vw, 4.95rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    text-wrap: pretty !important;
}

.hero--inner .hero__content h1 {
    max-width: 18.5ch !important;
    font-size: clamp(2.25rem, 3vw, 3.65rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    text-wrap: pretty !important;
}

.hero__content .lead {
    max-width: 60ch !important;
}

.hero__points {
    max-width: 860px;
}

@media (max-width: 1280px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr) !important;
    }

    .hero__content h1 {
        max-width: 14.8ch !important;
        font-size: clamp(2.5rem, 4vw, 4.25rem) !important;
    }

    .hero--inner .hero__content h1 {
        max-width: 16.8ch !important;
        font-size: clamp(2.1rem, 2.85vw, 3.25rem) !important;
    }
}

@media (max-width: 1024px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr) !important;
        gap: 28px !important;
    }

    .hero__content h1 {
        max-width: 13.8ch !important;
        font-size: clamp(2.3rem, 4.4vw, 3.7rem) !important;
    }

    .hero--inner .hero__content h1 {
        max-width: 15.4ch !important;
        font-size: clamp(2rem, 3.4vw, 2.95rem) !important;
    }
}

@media (max-width: 900px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: 1fr !important;
    }

    .hero__content,
    .hero__visual {
        max-width: none !important;
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 16ch !important;
        font-size: clamp(2rem, 7.8vw, 3.1rem) !important;
        line-height: 1.05 !important;
    }
}

@media (max-width: 640px) {
    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: none !important;
        font-size: clamp(1.9rem, 8.6vw, 2.55rem) !important;
        line-height: 1.07 !important;
    }

    .hero__content .lead {
        max-width: none !important;
    }
}

/* v9 final hero headline correction */
.hero,
.hero--inner {
    overflow: hidden;
}

.hero__grid,
.hero__grid--home,
.hero__grid--inner {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr) !important;
    align-items: center !important;
    gap: clamp(32px, 4vw, 64px) !important;
}

.hero__content {
    max-width: none !important;
    width: 100% !important;
}

.hero__content h1 {
    max-width: 20ch !important;
    width: 100% !important;
    font-size: clamp(2.9rem, 4.25vw, 5rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.05em !important;
    text-wrap: balance !important;
    margin: 16px 0 18px !important;
}

.hero--inner .hero__content h1 {
    max-width: 22ch !important;
    width: 100% !important;
    font-size: clamp(2.3rem, 3.05vw, 3.8rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.04em !important;
    text-wrap: balance !important;
    margin: 14px 0 16px !important;
}

.hero__content .lead {
    max-width: 66ch !important;
}

.hero__visual {
    align-self: center !important;
}

@media (max-width: 1280px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr) !important;
        gap: 32px !important;
    }

    .hero__content h1 {
        max-width: 18ch !important;
        font-size: clamp(2.55rem, 4.2vw, 4.1rem) !important;
    }

    .hero--inner .hero__content h1 {
        max-width: 19ch !important;
        font-size: clamp(2.1rem, 3.1vw, 3.15rem) !important;
    }
}

@media (max-width: 1024px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr) !important;
        gap: 28px !important;
    }

    .hero__content h1 {
        max-width: 16ch !important;
        font-size: clamp(2.2rem, 4.6vw, 3.45rem) !important;
    }

    .hero--inner .hero__content h1 {
        max-width: 17ch !important;
        font-size: clamp(1.95rem, 3.7vw, 2.8rem) !important;
    }
}

@media (max-width: 900px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: 15ch !important;
        font-size: clamp(2rem, 7vw, 3rem) !important;
        line-height: 1.07 !important;
    }
}

@media (max-width: 640px) {
    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: none !important;
        font-size: clamp(1.9rem, 8.3vw, 2.45rem) !important;
        line-height: 1.08 !important;
        text-wrap: pretty !important;
    }

    .hero__content .lead {
        max-width: none !important;
    }
}

/* v8 hero vertical alignment fix */
.hero__grid,
.hero__grid--home,
.hero__grid--inner {
    align-items: start !important;
}

.hero__content {
    align-self: start !important;
}

.hero__visual {
    align-self: start !important;
    margin-top: 6px !important;
}

.hero--home .hero__visual,
.hero--inner .hero__visual {
    padding-top: 0 !important;
}

@media (max-width: 900px) {
    .hero__visual {
        margin-top: 10px !important;
    }
}


/* v10 hero content polish */
.hero__points{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:16px !important;max-width:860px !important;}
.hero__point{height:100% !important;}
.hero__chips{display:grid !important;grid-template-columns:repeat(3,minmax(0,max-content)) !important;justify-content:start !important;gap:10px 12px !important;max-width:860px !important;}
.hero__chips span{justify-content:center;}
@media (max-width: 1180px){.hero__chips{grid-template-columns:repeat(2,minmax(0,max-content)) !important;}}
@media (max-width: 900px){.hero__points,.hero--home .hero__points{grid-template-columns:1fr !important;}.hero__chips{grid-template-columns:repeat(2,minmax(0,1fr)) !important;max-width:none !important;}.hero__chips span{width:100%;justify-content:flex-start;}}
@media (max-width: 560px){.hero__chips{grid-template-columns:1fr !important;}}

/* v11 hero layout repair */
.hero__grid,
.hero__grid--home,
.hero__grid--inner {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr) !important;
    align-items: start !important;
    gap: clamp(24px, 2.8vw, 40px) !important;
}

.hero__content {
    max-width: none !important;
    width: 100% !important;
    align-self: start !important;
    padding-right: clamp(6px, 1.5vw, 22px);
}

.hero__content h1 {
    max-width: 20ch !important;
    font-size: clamp(2.45rem, 3.45vw, 3.95rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.045em !important;
    text-wrap: balance !important;
}

.hero--inner .hero__content h1 {
    max-width: 22ch !important;
    font-size: clamp(2.1rem, 2.85vw, 3.1rem) !important;
    line-height: 1.06 !important;
}

.hero__content .lead,
.hero__points,
.hero__actions,
.hero__chips {
    max-width: 100% !important;
}

.hero__points {
    grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
    gap: 16px !important;
}

.hero__visual {
    display: grid !important;
    align-content: start !important;
    align-self: start !important;
    margin-top: 0 !important;
    padding-top: 2px !important;
    min-height: 0 !important;
}

.hero__visual .visual-card--main,
.hero--inner .hero__visual .visual-card--main,
.hero--home .hero__visual .visual-card--main {
    margin-top: 0 !important;
}

.hero--home .hero__visual .visual-card--main {
    height: clamp(360px, 37vw, 510px) !important;
}

.hero--inner .hero__visual .visual-card--main {
    height: clamp(320px, 33vw, 440px) !important;
}

@media (max-width: 1180px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr) !important;
    }

    .hero__content h1 {
        max-width: 18ch !important;
        font-size: clamp(2.3rem, 3.8vw, 3.45rem) !important;
    }

    .hero--inner .hero__content h1 {
        max-width: 19ch !important;
        font-size: clamp(2rem, 3.1vw, 2.8rem) !important;
    }
}

@media (max-width: 900px) {
    .hero__grid,
    .hero__grid--home,
    .hero__grid--inner {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .hero__content {
        padding-right: 0 !important;
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        max-width: none !important;
        font-size: clamp(2rem, 7vw, 3rem) !important;
        line-height: 1.07 !important;
        text-wrap: pretty !important;
    }

    .hero__points {
        grid-template-columns: 1fr !important;
    }

    .hero__chips {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .hero__chips span {
        width: 100% !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 560px) {
    .hero__chips {
        grid-template-columns: 1fr !important;
    }

    .hero__content h1,
    .hero--inner .hero__content h1 {
        font-size: clamp(1.9rem, 8.5vw, 2.45rem) !important;
    }
}

/* final hero restore: keep inner heroes clean, move highlights below */
.hero--inner .hero__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
}

.hero--inner .hero__content > .hero__points,
.hero--inner .hero__content > .hero__chips {
    display: none !important;
}

.hero--inner .hero__grid,
.hero__grid--inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr) !important;
    align-items: start !important;
    gap: clamp(28px, 4vw, 54px) !important;
}

.hero--inner .hero__content h1 {
    max-width: 14ch !important;
    font-size: clamp(2.45rem, 3.45vw, 3.7rem) !important;
    line-height: 1.04 !important;
    text-wrap: balance !important;
}

.hero--inner .hero__content .lead {
    max-width: 62ch !important;
}

.hero--inner .hero__visual {
    align-self: start !important;
    display: block !important;
    min-height: 0 !important;
}

.hero-summary {
    padding-top: 8px !important;
}

.hero-summary .container {
    display: grid;
    gap: 18px;
}

.hero-summary .hero__points {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    max-width: none !important;
}

.hero-summary .hero__point {
    height: 100%;
}

.hero-summary .hero__chips {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    max-width: none !important;
}

.hero-summary .hero__chips span {
    width: auto !important;
    justify-content: center !important;
}

@media (max-width: 900px) {
    .hero--inner .hero__grid,
    .hero__grid--inner {
        grid-template-columns: 1fr !important;
    }

    .hero--inner .hero__content h1 {
        max-width: none !important;
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }

    .hero-summary .hero__points {
        grid-template-columns: 1fr !important;
    }
}
