:root {
    --navy: #071426;
    --navy-deep: #030914;
    --charcoal: #15191f;
    --ink: #101419;
    --muted: #67717f;
    --line: #e6e0d6;
    --paper: #ffffff;
    --soft: #f6f3ed;
    --gold: #c6a15a;
    --gold-light: #e0c47c;
    --white: #fdfbf7;
    --shadow: 0 26px 90px rgba(7, 20, 38, 0.14);
    --heading-font: Sora, Manrope, Avenir Next, Inter, ui-sans-serif, system-ui, sans-serif;
    --body-font: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

button,
.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 22px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 16px 42px rgba(198, 161, 90, 0.24);
}

.button-dark {
    background: var(--navy);
    color: var(--white);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(3, 9, 20, 0.92);
    color: var(--white);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.22rem;
    font-weight: 800;
}

.brand img {
    display: block;
    width: 44px;
    height: 36px;
    border-radius: 7px;
    object-fit: cover;
    object-position: 12% 12%;
}

.nav {
    display: none;
}

.nav a {
    color: rgba(253, 251, 247, 0.76);
    font-size: 0.86rem;
    font-weight: 700;
}

.nav a:hover,
.nav .nav-cta {
    color: var(--white);
}

.language-switcher {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(253, 251, 247, 0.58);
    font-size: 0.82rem;
    font-weight: 800;
}

.language-switcher a {
    color: rgba(253, 251, 247, 0.62);
}

.language-switcher a.active,
.language-switcher a:hover {
    color: var(--gold-light);
}

.section {
    padding: 82px 0;
}

.section-dark {
    background:
        linear-gradient(135deg, rgba(198, 161, 90, 0.12), transparent 31%),
        radial-gradient(circle at 84% 15%, rgba(110, 128, 151, 0.26), transparent 31%),
        linear-gradient(145deg, var(--navy), var(--navy-deep) 75%);
    color: var(--white);
}

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

.hero {
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    padding: 78px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--gold);
}

.gold-line {
    width: 76px;
    height: 1px;
    margin-bottom: 26px;
    background: var(--gold-light);
}

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

h1,
h2,
h3 {
    font-family: var(--heading-font);
    letter-spacing: 0;
}

h1 {
    margin-bottom: 8px;
    font-size: clamp(4rem, 17vw, 8.6rem);
    line-height: 0.88;
    font-weight: 850;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.15rem, 8vw, 5rem);
    line-height: 0.98;
    font-weight: 820;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.25;
    font-weight: 820;
}

.tagline {
    margin-bottom: 22px;
    color: var(--gold-light);
    font-size: clamp(1.22rem, 5vw, 2rem);
    font-weight: 700;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 32px;
    color: rgba(253, 251, 247, 0.74);
    font-size: clamp(1.04rem, 3vw, 1.23rem);
}

.hero-visual-card {
    position: relative;
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(224, 196, 124, 0.28);
    border-radius: 22px;
    background: #081321;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.hero-visual-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(3, 9, 20, 0.9));
    pointer-events: none;
}

.hero-visual-card figcaption {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(253, 251, 247, 0.7);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-visual-card figcaption strong {
    color: var(--gold-light);
}

.image-fallback {
    width: 100%;
    min-height: 430px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 68% 26%, rgba(198, 161, 90, 0.38), transparent 22%),
        linear-gradient(145deg, #172337, #030914);
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 850;
}

.concept-showcase {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(224, 196, 124, 0.22);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.03);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.25);
}

.concept-showcase::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(253, 251, 247, 0.07);
    pointer-events: none;
}

.showcase-top,
.showcase-grid {
    position: relative;
    z-index: 1;
}

.showcase-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    color: rgba(253, 251, 247, 0.7);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.showcase-top strong {
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: 1.45rem;
}

.mockup-frame {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 360px;
    margin-bottom: 20px;
    background:
        linear-gradient(135deg, rgba(198, 161, 90, 0.28), transparent 42%),
        radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(145deg, #1d2630, #080f1b);
}

.reel-screen {
    width: min(58%, 210px);
    aspect-ratio: 9 / 16;
    padding: 16px;
    border: 1px solid rgba(224, 196, 124, 0.34);
    background:
        linear-gradient(160deg, rgba(253, 251, 247, 0.12), transparent 48%),
        #071426;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.reel-screen span {
    display: block;
    height: 1px;
    margin-top: 18px;
    background: rgba(253, 251, 247, 0.22);
}

.reel-screen span:first-child {
    width: 48%;
    height: 44%;
    margin: 0 0 28px auto;
    background: rgba(198, 161, 90, 0.72);
}

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

.showcase-grid div {
    padding: 16px;
    border: 1px solid rgba(253, 251, 247, 0.1);
}

.showcase-grid small {
    display: block;
    color: rgba(253, 251, 247, 0.54);
    font-size: 0.74rem;
    text-transform: uppercase;
}

.showcase-grid strong {
    color: var(--white);
}

.split,
.section-heading {
    display: grid;
    gap: 24px;
}

.section-lead,
.section-heading p:not(.eyebrow) {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.08rem;
}

.visual-strip {
    display: grid;
    gap: 18px;
    margin-top: 48px;
}

.visual-tile {
    position: relative;
    min-height: 210px;
    display: flex;
    align-items: end;
    padding: 22px;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(198, 161, 90, 0.22), transparent 40%),
        linear-gradient(145deg, #ffffff, #eee8dd);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-radius: 16px;
}

.visual-tile.large {
    min-height: 270px;
}

.visual-tile.dark-tile {
    background:
        linear-gradient(135deg, rgba(198, 161, 90, 0.26), transparent 38%),
        linear-gradient(145deg, var(--navy), var(--charcoal));
    color: var(--white);
}

.visual-tile span {
    position: relative;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(3, 9, 20, 0.78);
    color: var(--white);
    color: inherit;
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 800;
}

.visual-tile-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-tile-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 48%, rgba(3, 9, 20, 0.66));
}

.visual-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 25%, rgba(224, 196, 124, 0.35), transparent 24%),
        linear-gradient(145deg, #172337, #030914);
}

.visual-fallback::before,
.visual-fallback::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(224, 196, 124, 0.34);
}

.visual-fallback::before {
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(36%, -20%);
}

.visual-fallback::after {
    width: 46%;
    height: 38%;
    transform: translate(-42%, 44%) rotate(8deg);
    background: rgba(198, 161, 90, 0.08);
}

.visual-fallback strong {
    position: relative;
    z-index: 1;
    color: rgba(224, 196, 124, 0.8);
    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    letter-spacing: 0.08em;
}

.campaign-fallback {
    background:
        repeating-linear-gradient(105deg, transparent 0 24px, rgba(224, 196, 124, 0.09) 24px 25px),
        linear-gradient(145deg, #0d192a, #030914);
}

.content-fallback {
    background:
        linear-gradient(90deg, transparent 48%, rgba(198, 161, 90, 0.24) 48% 52%, transparent 52%),
        linear-gradient(145deg, #131e30, #030914);
}

.card-grid,
.pricing-grid,
.steps {
    display: grid;
    gap: 20px;
    margin-top: 38px;
}

.card,
.steps article {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 18px;
    box-shadow: 0 22px 70px rgba(7, 20, 38, 0.07);
    border-radius: 16px;
}

.example-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.example-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 161, 90, 0.52);
    box-shadow: var(--shadow);
}

.example-visual {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: start;
    justify-content: end;
    margin-bottom: 22px;
    padding: 16px;
    overflow: hidden;
    border-radius: 11px;
}

.example-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-visual.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.05), rgba(3, 9, 20, 0.38));
    pointer-events: none;
}

.example-visual .tag {
    position: relative;
    z-index: 2;
}

.website-visual {
    background: linear-gradient(145deg, #0a1424, #26313b);
}

.image-fallback.compact {
    position: absolute;
    inset: 0;
    min-height: 0;
    background:
        linear-gradient(90deg, transparent 48%, rgba(198, 161, 90, 0.22) 48% 52%, transparent 52%),
        linear-gradient(145deg, #101b2b, #030914);
    font-size: 1.2rem;
}

.reel-visual {
    background:
        linear-gradient(90deg, transparent 42%, rgba(253, 251, 247, 0.16) 42% 58%, transparent 58%),
        linear-gradient(145deg, #0a1424, #26313b);
}

.launch-visual {
    background:
        radial-gradient(circle at 70% 30%, rgba(198, 161, 90, 0.58), transparent 22%),
        linear-gradient(135deg, #fdfbf7, #dcd5c8);
}

.campaign-visual {
    background:
        linear-gradient(135deg, rgba(198, 161, 90, 0.42), transparent 34%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
        linear-gradient(145deg, #15191f, #071426);
}

.tag,
.plan-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(198, 161, 90, 0.42);
    color: var(--gold);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.campaign-visual .tag,
.reel-visual .tag {
    background: rgba(7, 20, 38, 0.72);
    color: var(--gold-light);
}

.card p,
.steps p {
    margin-bottom: 0;
    color: var(--muted);
}

.service-list {
    display: grid;
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid var(--line);
}

.service-list div {
    display: flex;
    gap: 18px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 780;
}

.service-list span {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 900;
}

.pricing-grid {
    color: var(--white);
}

.price-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(253, 251, 247, 0.13);
    border-radius: 16px;
    padding: 24px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.03);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 196, 124, 0.45);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.04);
}

.price-card.featured {
    border-color: rgba(224, 196, 124, 0.62);
}

.price-card .plan-label {
    margin-bottom: 26px;
    background: rgba(253, 251, 247, 0.06);
    color: var(--gold-light);
}

.price {
    margin-bottom: 24px;
    color: var(--gold-light);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 820;
    line-height: 1;
}

.price span {
    color: rgba(253, 251, 247, 0.64);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
}

.plan-description {
    min-height: 0;
    margin-bottom: 22px;
    color: rgba(253, 251, 247, 0.72);
    font-size: 0.94rem;
    line-height: 1.65;
}

.includes-label {
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.plan-list {
    min-height: 0;
    flex-grow: 1;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.plan-list li {
    position: relative;
    padding: 10px 0 10px 22px;
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    color: rgba(253, 251, 247, 0.72);
    font-size: 0.9rem;
    line-height: 1.45;
}

.plan-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--gold-light);
}

.price-card button {
    width: 100%;
    border-color: rgba(253, 251, 247, 0.18);
    background: transparent;
    color: var(--white);
}

.price-card button:hover {
    border-color: var(--gold-light);
}

.pricing-subheading {
    max-width: 760px;
    margin-top: 70px;
    padding-top: 38px;
    border-top: 1px solid rgba(253, 251, 247, 0.14);
}

.pricing-subheading .eyebrow {
    margin-bottom: 14px;
}

.pricing-subheading h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.55rem, 4vw, 2.4rem);
}

.project-card {
    background:
        radial-gradient(circle at 88% 8%, rgba(198, 161, 90, 0.13), transparent 25%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.03);
}

.pricing-note {
    margin: 24px 0 0;
    color: rgba(253, 251, 247, 0.62);
    font-size: 0.9rem;
}

.steps article {
    padding: 28px;
}

.steps span {
    display: block;
    margin-bottom: 30px;
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 1.65rem;
    font-weight: 820;
}

.final-cta {
    text-align: center;
}

.final-box {
    padding: 68px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.final-box p:not(.eyebrow) {
    max-width: 560px;
    margin: 20px auto 30px;
    color: var(--muted);
}

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

.contact-grid {
    display: grid;
    gap: 42px;
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: 120px;
}

.contact-intro p:not(.eyebrow) {
    max-width: 520px;
    margin: 24px 0 18px;
    color: var(--muted);
}

.contact-intro > a {
    color: var(--gold);
    font-weight: 800;
}

.contact-form {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

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

.form-field {
    display: grid;
    gap: 7px;
}

.form-field label,
.privacy-check {
    color: #343b44;
    font-size: 0.82rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #d8d2c7;
    border-radius: 9px;
    padding: 12px 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid rgba(198, 161, 90, 0.25);
    border-color: var(--gold);
}

.form-field textarea {
    resize: vertical;
}

.privacy-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.45;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--gold);
}

.privacy-check a {
    color: var(--gold);
    text-decoration: underline;
}

.turnstile-field {
    width: 100%;
    min-height: 65px;
    display: flex;
    align-items: center;
    padding: 4px 0;
    overflow-x: auto;
    overflow-y: hidden;
}

.turnstile-field .cf-turnstile {
    width: 100%;
    max-width: 100%;
}

.contact-form .button {
    justify-self: start;
}

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: #eef6ee;
    color: #26572b;
    font-weight: 700;
}

.form-status.error,
.form-status.turnstile_error,
.form-status.mail_error {
    background: #fff0ed;
    color: #8a3024;
}

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

.site-footer {
    padding: 30px 0;
    background: var(--charcoal);
    color: rgba(253, 251, 247, 0.7);
}

.footer-inner {
    display: grid;
    gap: 28px;
}

.footer-identity {
    display: grid;
    gap: 7px;
    justify-items: start;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.18rem;
    font-weight: 850;
}

.footer-brand img {
    width: 48px;
    height: 40px;
    border-radius: 7px;
    object-fit: cover;
    object-position: 12% 12%;
}

.footer-identity p {
    margin: 0;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-email {
    color: rgba(253, 251, 247, 0.72);
    font-size: 0.88rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    font-size: 0.88rem;
}

.footer-inner a:hover {
    color: var(--white);
}

.legal-main {
    min-height: 72vh;
    padding: 72px 0;
    background: var(--paper);
}

.legal-content {
    max-width: 820px;
}

.legal-content h1 {
    color: var(--ink);
    font-size: clamp(2.8rem, 11vw, 5.8rem);
}

.legal-content h2 {
    font-family: var(--body-font);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
}

.legal-content section {
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.legal-intro {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.legal-content address {
    color: var(--muted);
    font-style: normal;
}

.legal-content address strong {
    color: var(--ink);
}

.legal-content section p,
.legal-content section li,
.legal-content dd {
    color: var(--muted);
}

.legal-content section a {
    color: #9b762f;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-details {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    border-top: 1px solid var(--line);
}

.legal-details div {
    display: grid;
    gap: 5px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.legal-details dt {
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-details dd {
    margin: 0;
}

.legal-content ul {
    padding-left: 20px;
    color: var(--muted);
}

@media (min-width: 760px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        padding: 18px 32px;
    }

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

    .nav-cta {
        border: 1px solid rgba(224, 196, 124, 0.42);
        padding: 9px 13px;
    }

    .section {
        padding: 112px 0;
    }

    .hero-grid,
    .split {
        grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    }

    .visual-strip {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
        align-items: stretch;
    }

    .visual-tile,
    .visual-tile.large {
        min-height: 320px;
    }

    .card-grid,
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .footer-inner {
        grid-template-columns: 1fr auto;
        align-items: end;
    }

    .footer-legal {
        justify-content: flex-end;
    }
}

@media (min-width: 1040px) {
    .card-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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