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

:root {
    --bg: #050b18;
    --bg-soft: #081a3a;
    --bg-card: rgba(10, 21, 46, 0.86);
    --surface: #f4f4f6;
    --text: #f6f7fb;
    --text-muted: #b8c0d4;
    --text-dark: #15213a;
    --gold: #d7b46a;
    --gold-strong: #f0cd82;
    --line: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
    --section-space: clamp(72px, 8vw, 112px);
    --card-space: clamp(22px, 3vw, 32px);
    --hero-title: clamp(2.6rem, 5.2vw, 5.4rem);
    --section-title: clamp(2rem, 4vw, 3.4rem);
    --body-lg: clamp(1rem, 1.15vw, 1.08rem);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(215, 180, 106, 0.12), transparent 24%),
        radial-gradient(circle at left top, rgba(41, 74, 138, 0.24), transparent 28%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
    font: inherit;
}

.page-shell {
    overflow: hidden;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(5, 11, 24, 0.76);
    border-bottom: 1px solid var(--line);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brand strong,
.footer h3 {
    letter-spacing: 0.02em;
}

.brand span {
    display: block;
    color: var(--text-muted);
    font-size: 0.92rem;
}

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

.nav a {
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--text);
}

.nav-cta {
    padding: 12px 18px;
    border: 1px solid rgba(215, 180, 106, 0.4);
    border-radius: 999px;
    color: var(--gold-strong);
}

.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 96px 0 64px;
}

.hero-minimal {
    min-height: min(100vh - 88px, 820px);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 11, 24, 0.9) 0%, rgba(5, 11, 24, 0.78) 38%, rgba(5, 11, 24, 0.46) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 40%),
        url("hero.png"),
        linear-gradient(140deg, #081a3a, #050b18 60%, #0f1027);
    background-position: center, center, center, center;
    background-size: auto, auto, cover, cover;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(180deg, transparent, rgba(5, 11, 24, 0.98));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(26px, 4vw, 56px);
    align-items: center;
    justify-content: space-between;
}

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

.hero-form-card {
    width: 100%;
    justify-self: end;
}

.hero-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-brand-mark {
    width: clamp(72px, 8vw, 108px);
    height: clamp(72px, 8vw, 108px);
    object-fit: contain;
}

.hero-brand-copy strong {
    display: block;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    letter-spacing: 0.02em;
}

.hero-brand-copy span {
    display: block;
    margin-top: 2px;
    color: var(--gold-strong);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.77rem;
}

.eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
}

.hero-copy h1,
.section-heading h2 {
    font-size: var(--hero-title);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.section-heading h2 {
    font-size: var(--section-title);
}

.hero-copy p,
.section-heading p {
    margin-top: 22px;
    max-width: 62ch;
    color: var(--text-muted);
    font-size: var(--body-lg);
}

.hero-copy h1 {
    max-width: 12ch;
}

.hero-copy p {
    max-width: 40ch;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
    color: #16120a;
    box-shadow: 0 14px 32px rgba(215, 180, 106, 0.28);
}

.btn-secondary,
.btn-outline {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.btn-full {
    width: 100%;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
    list-style: none;
}

.hero-badges li {
    padding: 11px 15px;
    border: 1px solid rgba(215, 180, 106, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
}

.hero-card,
.steps-card,
.lead-form,
.info-card,
.metric-card,
.plan-card,
.faq-item,
.performance-card,
.testimonial-card,
.authority-card,
.trust-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: clamp(24px, 3vw, 34px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
        var(--bg-card);
}

.card-tag,
.plan-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(215, 180, 106, 0.16);
    color: var(--gold-strong);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.hero-card h2 {
    margin-top: 18px;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.12;
    text-wrap: balance;
}

.hero-card p {
    margin-top: 12px;
    color: var(--text-muted);
}

.hero-stats {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats article {
    padding: 18px 18px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats strong {
    display: block;
    font-size: 2rem;
    color: var(--gold-strong);
}

.hero-stats span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
}

.hero-card .btn {
    margin-top: 22px;
}

.section {
    position: relative;
    padding: var(--section-space) 0;
}

.dark-section {
    background: transparent;
}

.light-section,
.form-section {
    background: linear-gradient(180deg, rgba(245, 246, 250, 0.98), #e9edf5);
    color: var(--text-dark);
}

.light-section .section-heading p,
.form-section .section-heading p,
.light-section .info-card p,
.light-section .steps-card p,
.light-section .plan-card p,
.form-section .lead-form label,
.faq-answer p {
    color: rgba(21, 33, 58, 0.72);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.intro-bar {
    padding-top: 24px;
    padding-bottom: 24px;
}

.intro-bar-grid,
.cta-strip-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(215, 180, 106, 0.18);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(215, 180, 106, 0.05));
}

.intro-bar-grid p {
    max-width: 58ch;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.solutions-grid,
.metrics-grid,
.plans-grid,
.footer-grid,
.performance-grid,
.testimonials-grid {
    display: grid;
    gap: clamp(18px, 2.4vw, 24px);
}

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

.info-card,
.metric-card,
.plan-card {
    padding: var(--card-space);
}

.info-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
        rgba(7, 16, 34, 0.86);
    min-height: 100%;
}

.text-cta {
    display: inline-flex;
    margin-top: 18px;
    color: var(--gold-strong);
    font-weight: 700;
}

.light-section .info-card,
.light-section .plan-card {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(8, 26, 58, 0.08);
}

.light-section .text-cta {
    color: var(--bg-soft);
}

.card-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.info-card h3,
.metric-card h3,
.plan-card h3,
.steps-card h3,
.faq-question {
    font-size: 1.28rem;
    line-height: 1.25;
}

.info-card p,
.metric-card p,
.plan-card p,
.performance-card p,
.testimonial-card p,
.trust-card p {
    max-width: 40ch;
}

.split-layout,
.form-layout,
.patrimony-grid,
.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 36px);
    align-items: start;
}

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

.patrimony-grid .section-heading {
    max-width: 820px;
    margin-bottom: 0;
}

.strategy-panel {
    width: 100%;
    padding: 30px;
    border: 1px solid rgba(8, 26, 58, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 80px rgba(10, 22, 48, 0.14);
}

.strategy-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.strategy-intro p {
    max-width: 62ch;
    color: rgba(21, 33, 58, 0.7);
}

.strategy-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.strategy-timeline::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 34px;
    height: 2px;
    background: linear-gradient(90deg, rgba(215, 180, 106, 0.18), rgba(8, 26, 58, 0.18));
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 22px 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 251, 0.94));
    border: 1px solid rgba(8, 26, 58, 0.06);
    min-height: 220px;
    box-shadow: 0 16px 40px rgba(10, 22, 48, 0.08);
}

.timeline-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
    color: #17120a;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(215, 180, 106, 0.24);
}

.timeline-step h3 {
    font-size: 1.16rem;
    line-height: 1.22;
    color: var(--text-dark);
}

.timeline-step p {
    margin-top: 12px;
    color: rgba(21, 33, 58, 0.7);
}

.strategy-side {
    padding: 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #081a3a, #091227);
    color: var(--text);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
    min-height: auto;
}

.strategy-side-wide {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.strategy-side h3 {
    font-size: 1.28rem;
    line-height: 1.2;
    max-width: 24ch;
}

.strategy-side p {
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.98rem;
    max-width: 56ch;
}

.steps-card {
    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(8, 26, 58, 0.08);
}

.steps-card article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius-md);
}

.steps-card article + article {
    border-top: 1px solid rgba(8, 26, 58, 0.08);
}

.steps-card span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
    color: #15120c;
    font-weight: 800;
}

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

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    min-height: 100%;
}

.metric-card.featured {
    background: linear-gradient(180deg, rgba(215, 180, 106, 0.16), rgba(255, 255, 255, 0.04));
    transform: translateY(-12px);
}

.metric-card p {
    margin-top: 12px;
    color: var(--text-muted);
}

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

.performance-card {
    padding: var(--card-space);
    background: rgba(255, 255, 255, 0.04);
    min-height: 100%;
}

.performance-card strong {
    display: block;
    margin: 16px 0 12px;
    font-size: clamp(1.85rem, 2.8vw, 2.35rem);
    color: var(--text);
}

.performance-card p {
    color: var(--text-muted);
}

.performance-card .btn {
    margin-top: 22px;
}

.performance-featured {
    background: linear-gradient(180deg, rgba(215, 180, 106, 0.18), rgba(255, 255, 255, 0.05));
    border-color: rgba(215, 180, 106, 0.28);
}

.mini-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(215, 180, 106, 0.14);
    color: var(--gold-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.plan-card strong {
    display: block;
    margin: 16px 0 12px;
    font-size: clamp(1.85rem, 2.8vw, 2.35rem);
}

.plan-card .btn {
    margin-top: 24px;
}

.plan-card,
.performance-card {
    display: flex;
    flex-direction: column;
}

.plan-card .btn,
.performance-card .btn {
    margin-top: auto;
}

.plan-card.highlight {
    position: relative;
    overflow: hidden;
    border-color: rgba(215, 180, 106, 0.28);
    box-shadow: 0 24px 90px rgba(215, 180, 106, 0.18);
}

.plan-card.highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(215, 180, 106, 0.12), transparent 45%);
    pointer-events: none;
}

.form-section {
    position: relative;
}

.form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(215, 180, 106, 0.14), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(8, 26, 58, 0.12), transparent 30%);
    pointer-events: none;
}

.lead-form {
    position: relative;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(8, 26, 58, 0.08);
}

.lead-form-compact {
    padding: 22px;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.lead-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.lead-form label + label,
.lead-form button {
    margin-top: 16px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    margin-top: 8px;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(8, 26, 58, 0.14);
    border-radius: 14px;
    background: #f2f5f9;
    color: var(--text-dark);
    outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
    border-color: rgba(215, 180, 106, 0.7);
    box-shadow: 0 0 0 4px rgba(215, 180, 106, 0.14);
}

.form-intro {
    padding: 18px;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    background: rgba(8, 26, 58, 0.05);
}

.form-intro strong {
    display: block;
    font-size: 1.45rem;
    color: var(--text-dark);
    line-height: 1.1;
    text-transform: capitalize;
}

.form-intro p {
    margin-top: 10px;
    color: rgba(21, 33, 58, 0.72);
}

.lead-form-compact .form-intro {
    padding: 0;
    margin-bottom: 18px;
    border-radius: 0;
    background: transparent;
}

.lead-form-compact label + label,
.lead-form-compact button {
    margin-top: 12px;
}

.lead-form-compact .btn {
    margin-top: 18px;
}

.form-status {
    display: none;
    align-items: flex-start;
    gap: 12px;
    min-height: 22px;
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.form-status.is-success {
    display: flex;
    color: #0d7a45;
    background: linear-gradient(180deg, rgba(223, 252, 236, 0.98), rgba(236, 255, 245, 0.98));
    border-color: rgba(13, 122, 69, 0.18);
    box-shadow: 0 16px 36px rgba(13, 122, 69, 0.12);
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: formStatusPop 0.42s ease;
}

.form-status.is-error {
    display: flex;
    color: #b42318;
    background: linear-gradient(180deg, rgba(255, 239, 238, 0.98), rgba(255, 247, 247, 0.98));
    border-color: rgba(180, 35, 24, 0.14);
    box-shadow: 0 16px 36px rgba(180, 35, 24, 0.08);
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: formStatusPop 0.42s ease;
}

.form-status::before {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 800;
}

.form-status.is-success::before {
    content: "✓";
    color: #ffffff;
    background: #0d7a45;
}

.form-status.is-error::before {
    content: "!";
    color: #ffffff;
    background: #b42318;
}

.form-status-content {
    display: grid;
    gap: 2px;
}

.form-status strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.2;
}

.form-status span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

@keyframes formStatusPop {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-relocation-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(8, 26, 58, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 70px rgba(10, 22, 48, 0.12);
}

.form-relocation-card strong {
    color: var(--text-dark);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.12;
}

.form-relocation-card p {
    color: rgba(21, 33, 58, 0.72);
}

.lead-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.lead-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(8, 26, 58, 0.08);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.92rem;
}

.form-note {
    display: block;
    margin-top: 14px;
    color: rgba(21, 33, 58, 0.64);
}

.inline-cta {
    margin-top: 24px;
}

.cta-strip {
    padding-top: 34px;
    padding-bottom: 34px;
}

.cta-strip-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto;
    align-items: center;
    gap: 24px;
}

.cta-strip-copy {
    max-width: 920px;
}

.cta-strip-grid h2 {
    max-width: 28ch;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.1;
    text-wrap: balance;
}

.cta-strip-grid .btn {
    justify-self: end;
    flex-shrink: 0;
}

.authority-grid {
    align-items: stretch;
}

.authority-card,
.trust-card {
    padding: clamp(24px, 3vw, 34px);
}

.authority-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(215, 180, 106, 0.06));
}

.authority-card h3 {
    max-width: 18ch;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.authority-card .btn {
    margin-top: 24px;
    align-self: flex-start;
}

.trust-card {
    display: grid;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.trust-card > div {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-card > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.trust-card strong {
    display: block;
    color: var(--gold-strong);
}

.trust-card p {
    margin-top: 8px;
    color: var(--text-muted);
}

.testimonial-card {
    padding: var(--card-space);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(8, 26, 58, 0.08);
    min-height: 100%;
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
    color: #17120a;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 10px 24px rgba(215, 180, 106, 0.22);
}

.testimonial-meta strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-meta span {
    display: block;
    margin-top: 2px;
    color: rgba(21, 33, 58, 0.56);
    font-size: 0.9rem;
}

.testimonial-stars {
    margin-top: 18px;
    color: var(--gold);
    letter-spacing: 0.2em;
    font-size: 0.92rem;
}

.testimonial-card p {
    position: relative;
    margin-top: 12px;
    color: rgba(21, 33, 58, 0.78);
    padding-left: 18px;
}

.testimonial-card p::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -4px;
    color: rgba(215, 180, 106, 0.7);
    font-size: 1.8rem;
    line-height: 1;
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

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

.faq-item {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    padding: 24px 64px 24px 28px;
    text-align: left;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.6rem;
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
    overflow: hidden;
    padding: 0 28px 0;
    color: #ffffff;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
    padding-bottom: 24px;
}

.footer {
    padding: 34px 0 24px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 14, 0.92);
}

.footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
}

.footer-grid > div {
    min-width: 0;
}

.footer p,
.footer a,
.footer span {
    color: var(--text-muted);
}

.footer-description {
    margin-top: 16px;
    max-width: 42ch;
}

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

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

.reveal-delay {
    transition-delay: 0.12s;
}

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

@media (max-width: 1024px) {
    :root {
        --container: 1040px;
    }

    .hero-grid,
    .split-layout,
    .form-layout,
    .patrimony-grid,
    .authority-grid,
    .metrics-grid,
    .plans-grid,
    .performance-grid,
    .testimonials-grid,
    .solutions-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        max-width: 760px;
        justify-content: start;
    }

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

    .strategy-side {
        max-width: 360px;
    }

    .strategy-side-wide {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        min-height: auto;
        padding-top: 56px;
    }

    .hero-minimal {
        min-height: 72vh;
    }

    .metric-card.featured {
        transform: none;
    }

    .intro-bar-grid,
    .cta-strip-grid {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .hero-card,
    .strategy-side,
    .authority-card,
    .hero-form-card {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .topbar .container {
        min-height: 80px;
    }

    .hero {
        padding: 48px 0 36px;
    }

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

    .hero-form-card {
        justify-self: stretch;
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-badges li,
    .lead-points span {
        width: fit-content;
    }

    .section-heading {
        max-width: 680px;
    }

    .intro-bar-grid .btn,
    .cta-strip-grid .btn {
        width: auto;
        justify-self: start;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 10px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(5, 11, 24, 0.96);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }

    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav a {
        padding: 10px 4px;
    }

    .nav-cta {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .hero-grid {
        gap: 24px;
    }

    .hero-brand-lockup {
        gap: 12px;
        margin-bottom: 22px;
    }

    .hero-copy h1,
    .section-heading h2 {
        text-wrap: pretty;
    }

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

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

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

    .strategy-timeline {
        grid-template-columns: 1fr;
    }

    .strategy-timeline::before {
        display: none;
    }

    .cta-strip-grid h2 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .topbar .container {
        min-height: 78px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .hero-copy h1,
    .section-heading h2 {
        font-size: 2rem;
    }

    .hero-copy h1,
    .hero-copy p {
        max-width: none;
    }

    .section {
        padding: 72px 0;
    }

    .hero-card,
    .lead-form,
    .info-card,
    .metric-card,
    .plan-card,
    .faq-question,
    .performance-card,
    .testimonial-card,
    .authority-card,
    .trust-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-answer p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-actions,
    .hero-badges,
    .lead-points {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        white-space: normal;
    }

    .strategy-list article,
    .steps-card article {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        min-height: auto;
        padding: 20px;
    }

    .authority-card .btn {
        align-self: stretch;
    }

    .performance-card strong,
    .plan-card strong {
        font-size: 1.9rem;
    }

    .hero-badges li,
    .lead-points span {
        width: 100%;
        text-align: center;
    }

    .lead-form-compact {
        padding: 18px;
    }

    .brand {
        gap: 10px;
    }

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

    .brand span {
        font-size: 0.82rem;
    }

    .hero-brand-mark {
        width: 68px;
        height: 68px;
    }

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

    .hero-brand-copy span {
        font-size: 0.8rem;
    }

    .faq-question {
        padding-right: 54px;
    }

    .faq-question::after {
        right: 20px;
    }
}

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

    .hero {
        padding: 34px 0 28px;
    }

    .hero-copy h1 {
        font-size: 1.92rem;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .hero-copy p,
    .section-heading p,
    .intro-bar-grid p {
        font-size: 0.96rem;
    }

    .hero-brand-lockup {
        margin-bottom: 18px;
    }

    .hero-card,
    .lead-form,
    .info-card,
    .metric-card,
    .plan-card,
    .performance-card,
    .testimonial-card,
    .authority-card,
    .trust-card {
        border-radius: 22px;
    }

    .intro-bar-grid,
    .cta-strip-grid {
        padding: 18px;
    }

    .hero-stats strong {
        font-size: 1.7rem;
    }

    .performance-card strong,
    .plan-card strong {
        font-size: 1.7rem;
    }

    .menu-toggle {
        width: 46px;
        height: 46px;
    }
}

@media (min-width: 1440px) {
    :root {
        --container: 1260px;
    }

    .hero {
        padding: 110px 0 74px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
    }
}
