:root {
    --brand: #00d9c0;
    --brand-strong: #008c8a;
    --brand-blue: #0b5cff;
    --ink: #07111f;
    --ink-soft: #13233a;
    --muted: #617084;
    --line: rgba(7, 17, 31, 0.10);
    --surface: #ffffff;
    --surface-soft: #f4f8fb;
    --surface-blue: #edf7ff;
    --dark: #061225;
    --dark-2: #0b1b34;
    --dark-card: rgba(255, 255, 255, 0.08);
    --dark-line: rgba(255, 255, 255, 0.14);
    --shadow: 0 22px 70px rgba(13, 38, 76, 0.14);
    --shadow-strong: 0 32px 90px rgba(5, 18, 42, 0.28);
    --radius: 24px;
    --container: 1180px;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

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

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

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

h1,
h2,
h3 {
    color: inherit;
    letter-spacing: 0;
    line-height: 1.04;
}

h1 {
    max-width: 740px;
    font-size: clamp(2.65rem, 7vw, 5.8rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4.8vw, 4rem);
    font-weight: 900;
}

h3 {
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    font-weight: 850;
}

p {
    color: var(--muted);
    font-size: 1.02rem;
}

.main-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 78px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 18, 37, 0.80);
    backdrop-filter: blur(20px);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 217, 192, 0.25);
}

.logo-text {
    color: white;
    font-size: 1.22rem;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
    font-weight: 700;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    padding: 12px 22px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: white;
    box-shadow: 0 18px 40px rgba(11, 92, 255, 0.28);
}

.btn-secondary {
    background: var(--ink);
    color: white;
    box-shadow: 0 18px 38px rgba(7, 17, 31, 0.18);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.10);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-outline {
    background: white;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-sm {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.mobile-menu-toggle,
.close-menu {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    padding: 132px 0 72px;
    color: white;
    background:
        radial-gradient(circle at 82% 22%, rgba(0, 217, 192, 0.30), transparent 28%),
        radial-gradient(circle at 20% 14%, rgba(11, 92, 255, 0.32), transparent 30%),
        linear-gradient(135deg, #061225 0%, #09224e 52%, #07111f 100%);
}

.hero-grid {
    min-height: calc(100vh - 204px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    align-items: center;
    gap: 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(0, 217, 192, 0.34);
    border-radius: 999px;
    background: rgba(0, 217, 192, 0.10);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    padding: 8px 12px;
    margin-bottom: 18px;
}

.hero-lead {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 28px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 12px;
    max-width: 650px;
}

.hero-metrics div {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    padding: 14px;
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 0.94rem;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 620px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: min(88%, 460px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 217, 192, 0.32), rgba(11, 92, 255, 0.28));
    filter: blur(12px);
}

.hero-phone {
    position: relative;
    z-index: 1;
    width: min(92%, 420px);
    border-radius: 34px;
    box-shadow: var(--shadow-strong);
    transform: rotate(2deg);
}

.floating-ticket {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(82%, 300px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    color: var(--ink);
    padding: 14px;
    backdrop-filter: blur(12px);
}

.floating-ticket svg {
    flex: 0 0 auto;
    color: var(--brand-strong);
}

.floating-ticket strong,
.floating-ticket span {
    display: block;
}

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

.ticket-top {
    top: 110px;
    left: -10px;
}

.ticket-bottom {
    right: -12px;
    bottom: 98px;
}

.brand-strip {
    border-bottom: 1px solid var(--line);
    background: white;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-block: 22px;
}

.strip-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink-soft);
    font-weight: 850;
}

.strip-grid svg {
    color: var(--brand-strong);
    width: 20px;
}

.section {
    padding: 96px 0;
}

.section-header {
    margin-bottom: 42px;
}

.section-header.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: end;
    gap: 40px;
}

.section-header.center {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.section-header.center .eyebrow {
    margin-inline: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 22px;
}

.service-card {
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.business-card:hover,
.content-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top center;
    background: var(--surface-blue);
}

.service-featured img {
    height: 470px;
}

.service-content {
    padding: 24px;
}

.service-content h3,
.business-card h3 {
    margin: 10px 0 8px;
}

.pill {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: rgba(0, 140, 138, 0.10);
    color: var(--brand-strong);
    font-size: 0.74rem;
    font-weight: 900;
    padding: 6px 10px;
}

.section-flow {
    background: var(--surface-soft);
}

.section-moving-client {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 217, 192, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.moving-client-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: center;
}

.moving-client-visual {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 25%, rgba(11, 92, 255, 0.14), transparent 36%),
        linear-gradient(135deg, #eef8ff, #ffffff);
    box-shadow: var(--shadow);
    padding: 34px;
}

.moving-client-visual img {
    width: 100%;
    min-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 26px 42px rgba(11, 37, 78, 0.18));
}

.moving-badge-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    padding: 14px;
    backdrop-filter: blur(14px);
}

.moving-badge-card svg {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    padding: 10px;
}

.moving-badge-card strong,
.moving-badge-card span {
    display: block;
}

.moving-badge-card span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.moving-client-copy p {
    max-width: 690px;
    margin: 16px 0 24px;
}

.moving-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.moving-feature-grid article {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(13, 38, 76, 0.06);
}

.moving-feature-grid svg {
    width: 28px;
    height: 28px;
    color: var(--brand-strong);
    margin-bottom: 12px;
}

.moving-feature-grid strong,
.moving-feature-grid span {
    display: block;
}

.moving-feature-grid strong {
    color: var(--ink);
    font-weight: 900;
    margin-bottom: 4px;
}

.moving-feature-grid span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 650;
}

.moving-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.flow-grid,
.driver-grid,
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 54px;
}

.step-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.step-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    padding: 18px;
}

.step-item span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: white;
    font-weight: 900;
}

.step-item p {
    margin-top: 6px;
    font-size: 0.95rem;
}

.phone-stack {
    position: relative;
    min-height: 620px;
}

.phone-stack img {
    position: absolute;
    width: min(64%, 320px);
    border-radius: 32px;
    box-shadow: var(--shadow-strong);
}

.phone-stack img:first-child {
    left: 0;
    top: 0;
    transform: rotate(-4deg);
}

.phone-stack img:last-child {
    right: 0;
    bottom: 0;
    transform: rotate(5deg);
}

.section-driver,
.section-partner {
    color: white;
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 217, 192, 0.18), transparent 28%),
        linear-gradient(145deg, var(--dark), var(--dark-2));
}

.content-card {
    border-radius: 34px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.dark-card {
    border: 1px solid var(--dark-line);
    background: var(--dark-card);
}

.dark-card p,
.section-driver p,
.section-partner p {
    color: rgba(255, 255, 255, 0.72);
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.feature-list svg {
    color: var(--brand);
}

.simulator-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: white;
    color: var(--ink);
    box-shadow: var(--shadow-strong);
    padding: 30px;
}

.simulator-card.dark {
    border-color: var(--dark-line);
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.sim-header {
    margin-bottom: 22px;
}

.sim-header h3 {
    margin-top: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: inherit;
    font-size: 0.9rem;
    font-weight: 850;
}

.form-group select,
.form-group input[type="range"] {
    width: 100%;
}

.form-group select {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    padding: 0 14px;
}

.results {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 217, 192, 0.12), rgba(11, 92, 255, 0.10));
    padding: 18px;
    margin: 20px 0 12px;
}

.results.stacked {
    align-items: flex-start;
    flex-direction: column;
    margin: 0;
}

.partner-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 12px;
}

.partner-total {
    border: 1px solid rgba(0, 217, 192, 0.24);
    background: linear-gradient(135deg, rgba(0, 217, 192, 0.18), rgba(11, 92, 255, 0.18));
}

.results span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.simulator-card.dark .results span {
    color: rgba(255, 255, 255, 0.72);
}

.results strong {
    color: var(--brand-strong);
    font-size: clamp(1.35rem, 3vw, 2rem);
    white-space: nowrap;
}

.simulator-card.dark .results strong {
    color: var(--brand);
}

.disclaimer {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.78rem;
}

.section-business {
    background: white;
}

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

.business-card {
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 26px;
    transition: transform var(--transition);
}

.business-card svg {
    width: 34px;
    height: 34px;
    color: var(--brand-strong);
}

.image-card {
    padding: 0;
    overflow: hidden;
    background: var(--surface-blue);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.partner-copy p {
    max-width: 560px;
    margin-top: 16px;
}

.rules-card {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.rules-card div {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--dark-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
    padding: 16px;
}

.rules-card svg {
    color: var(--brand);
}

.section-final {
    padding-bottom: 56px;
    background: var(--surface-soft);
}

.contact-hero {
    padding: 132px 0 76px;
    color: white;
    background:
        radial-gradient(circle at 84% 14%, rgba(0, 217, 192, 0.24), transparent 30%),
        radial-gradient(circle at 12% 24%, rgba(11, 92, 255, 0.28), transparent 32%),
        linear-gradient(135deg, #061225 0%, #0b2554 58%, #07111f 100%);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: center;
    gap: 54px;
}

.contact-hero-copy h1 {
    max-width: 820px;
}

.contact-routing {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.contact-routing span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 9px 12px;
}

.contact-routing svg {
    width: 18px;
    color: var(--brand);
}

.contact-hero-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-strong);
    padding: 24px;
    backdrop-filter: blur(18px);
}

.contact-card-head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.contact-card-head strong {
    font-size: 1.35rem;
}

.contact-method-list {
    display: grid;
    gap: 12px;
}

.contact-method {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    padding: 14px;
    transition: transform var(--transition), background var(--transition);
}

.contact-method:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.contact-method svg {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--brand);
    background: rgba(0, 217, 192, 0.10);
    padding: 10px;
}

.contact-method strong,
.contact-method span {
    display: block;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
}

.contact-note-box {
    border-radius: 18px;
    background: rgba(0, 217, 192, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 750;
    margin-top: 14px;
    padding: 14px;
}

.contact-audience {
    background: white;
}

.contact-topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-topic-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-topic-card:hover {
    transform: translateY(-6px);
    background: white;
    box-shadow: var(--shadow);
}

.contact-topic-card svg {
    width: 38px;
    height: 38px;
    color: var(--brand-strong);
    margin-bottom: 18px;
}

.contact-topic-card h3 {
    margin-bottom: 10px;
}

.contact-topic-card p {
    font-size: 0.95rem;
}

.contact-topic-card a {
    width: fit-content;
    color: var(--brand-strong);
    font-weight: 900;
    margin-top: auto;
    padding-top: 18px;
}

.contact-form-section {
    background:
        linear-gradient(180deg, var(--surface-soft), white);
}

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

.contact-form-card,
.contact-side-panel {
    border: 1px solid var(--line);
    border-radius: 32px;
    background: white;
    box-shadow: var(--shadow);
}

.contact-form-card {
    padding: clamp(24px, 4vw, 42px);
}

.contact-form-card > p {
    max-width: 720px;
    margin: 14px 0 28px;
}

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

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

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

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

.field label {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 850;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(7, 17, 31, 0.13);
    border-radius: 16px;
    background: var(--surface-soft);
    color: var(--ink);
    font: inherit;
    font-weight: 650;
    outline: none;
    padding: 0 15px;
    transition: border var(--transition), box-shadow var(--transition), background var(--transition);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
    padding-block: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(0, 140, 138, 0.48);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 217, 192, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(97, 112, 132, 0.74);
}

.helper {
    border-radius: 14px;
    background: rgba(0, 140, 138, 0.08);
    color: var(--brand-strong);
    font-size: 0.88rem;
    font-weight: 750;
    padding: 12px 14px;
}

.form-status:empty {
    display: none;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.contact-side-panel {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.side-panel-block {
    border-radius: 24px;
    background: var(--surface-soft);
    padding: 22px;
}

.side-panel-block h3 {
    margin: 12px 0 14px;
}

.side-panel-block.dark {
    color: white;
    background:
        radial-gradient(circle at 80% 10%, rgba(0, 217, 192, 0.24), transparent 34%),
        linear-gradient(135deg, var(--dark), var(--dark-2));
}

.side-panel-block.dark p {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 850;
    margin-bottom: 18px;
}

.contact-check-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.contact-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-soft);
    font-weight: 750;
}

.contact-check-list svg {
    flex: 0 0 auto;
    width: 20px;
    color: var(--brand-strong);
    margin-top: 2px;
}

.contact-final-section {
    padding-top: 24px;
    background: white;
}

.subpage-hero {
    padding: 132px 0 76px;
    color: white;
    background:
        radial-gradient(circle at 84% 16%, rgba(0, 217, 192, 0.24), transparent 30%),
        radial-gradient(circle at 14% 24%, rgba(11, 92, 255, 0.28), transparent 32%),
        linear-gradient(135deg, #061225 0%, #0b2554 58%, #07111f 100%);
}

.subpage-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: 54px;
    align-items: center;
}

.subpage-media-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-strong);
    padding: 18px;
    backdrop-filter: blur(18px);
}

.subpage-media-card img {
    width: 100%;
    border-radius: 24px;
}

.subpage-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.subpage-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    padding: 26px;
}

.subpage-card svg {
    width: 36px;
    height: 36px;
    color: var(--brand-strong);
    margin-bottom: 18px;
}

.subpage-card h3 {
    margin-bottom: 10px;
}

.partner-example-value {
    display: block;
    color: var(--brand-strong);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    margin: 18px 0 8px;
}

.split-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
}

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

.story-list p {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    padding: 18px;
}

.subpage-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.subpage-feature {
    min-height: 250px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 24px;
}

.subpage-feature img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 16px;
}

.subpage-feature svg {
    width: 34px;
    height: 34px;
    color: var(--brand-strong);
    margin-bottom: 16px;
}

.gallery-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-modern figure {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.gallery-modern img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
}

.gallery-modern figcaption {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px;
}

.final-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 20%, rgba(0, 217, 192, 0.28), transparent 28%),
        linear-gradient(135deg, #07111f, #0b2d6b);
    color: white;
    padding: clamp(28px, 5vw, 54px);
    box-shadow: var(--shadow-strong);
}

.final-card p {
    max-width: 620px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.section-faq {
    padding: 82px 0;
}

.section-title {
    margin-bottom: 34px;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin-inline: auto;
}

details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: 0 12px 34px rgba(13, 38, 76, 0.06);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    padding: 20px;
    font-weight: 850;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    padding: 0 20px 20px;
    font-size: 0.96rem;
}

.main-footer {
    background: var(--dark);
    color: white;
    padding: 64px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(4, 1fr);
    gap: 34px;
}

.footer-grid h4 {
    margin-bottom: 14px;
}

.footer-grid a {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 9px;
    transition: color var(--transition);
}

.footer-grid a:hover {
    color: white;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.64);
}

.footer-bottom {
    border-top: 1px solid var(--dark-line);
    margin-top: 46px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: white;
    box-shadow: 0 18px 42px rgba(18, 140, 126, 0.35);
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
}

input[type=range] {
    height: 6px;
    border-radius: 999px;
    background-color: rgba(7, 17, 31, 0.12);
    background-image: linear-gradient(90deg, var(--brand), var(--brand-blue));
    background-repeat: no-repeat;
    background-size: 50% 100%;
    appearance: none;
}

input[type=range]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50%;
    background: var(--brand-blue);
    box-shadow: 0 5px 16px rgba(11, 92, 255, 0.35);
    cursor: pointer;
    appearance: none;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    background: var(--dark);
    color: white;
    padding: 28px;
}

.mobile-menu.active {
    display: block;
}

.mobile-logo {
    margin-bottom: 46px;
}

.mobile-nav-links {
    display: grid;
    gap: 24px;
    list-style: none;
}

.mobile-nav-links a {
    color: white;
    font-size: clamp(1.7rem, 8vw, 2.8rem);
    font-weight: 900;
}

.mobile-actions {
    display: grid;
    gap: 12px;
    margin-top: 44px;
}

.close-menu {
    position: absolute;
    top: 26px;
    right: 26px;
    display: block;
}

.reveal-element {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1060px) {
    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .hero-grid,
    .contact-hero-grid,
    .subpage-hero-grid,
    .moving-client-grid,
    .flow-grid,
    .driver-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-visual {
        min-height: auto;
        padding-block: 28px;
    }

    .hero-phone {
        width: min(80%, 390px);
    }

    .section-header.split {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .services-grid,
    .business-grid,
    .subpage-card-grid,
    .subpage-feature-grid,
    .gallery-modern,
    .contact-topic-grid,
    .contact-layout-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout-modern {
        grid-template-columns: 1fr;
    }

    .split-story {
        grid-template-columns: 1fr;
    }

    .phone-stack {
        min-height: 560px;
    }

    .final-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .final-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .main-header {
        height: 70px;
    }

    .hero {
        min-height: auto;
        padding: 104px 0 52px;
    }

    .contact-hero {
        padding: 104px 0 54px;
    }

    .hero-metrics,
    .strip-grid,
    .services-grid,
    .business-grid,
    .subpage-card-grid,
    .subpage-feature-grid,
    .gallery-modern,
    .contact-topic-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .subpage-hero {
        padding: 104px 0 54px;
    }

    .hero-ctas,
    .final-actions,
    .form-actions,
    .moving-actions {
        display: grid;
    }

    .contact-hero-card {
        padding: 18px;
        border-radius: 24px;
    }

    .contact-form-card,
    .contact-side-panel {
        border-radius: 24px;
    }

    .contact-topic-card {
        min-height: auto;
    }

    .hero-phone {
        width: 100%;
        max-width: 360px;
    }

    .floating-ticket {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 12px;
    }

    .ticket-top,
    .ticket-bottom {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .section {
        padding: 68px 0;
    }

    .service-card img,
    .service-featured img {
        height: 360px;
    }

    .phone-stack {
        display: grid;
        gap: 18px;
        min-height: auto;
    }

    .moving-feature-grid {
        grid-template-columns: 1fr;
    }

    .moving-client-visual {
        padding: 22px;
        border-radius: 26px;
    }

    .moving-client-visual img {
        min-height: 220px;
    }

    .moving-badge-card {
        position: static;
        margin-top: 14px;
    }

    .phone-stack img {
        position: static;
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
        transform: none !important;
    }

    .content-card,
    .simulator-card {
        padding: 24px;
        border-radius: 24px;
    }

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

    .partner-result-grid {
        grid-template-columns: 1fr;
    }

    .results strong {
        white-space: normal;
    }
}
