:root {
    --bg: #fbf7f4;
    --bg-soft: #f5efea;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-solid: #ffffff;
    --surface-muted: #f7f1ed;
    --surface-strong: #141414;
    --ink: #181513;
    --muted: #645d58;
    --muted-soft: #8f8580;
    --line: rgba(24, 21, 19, 0.1);
    --line-strong: rgba(24, 21, 19, 0.18);
    --accent: #ff2a17;
    --accent-dark: #df200f;
    --accent-soft: rgba(24, 21, 19, 0.04);
    --accent-soft-strong: rgba(24, 21, 19, 0.08);
    --shadow-sm: 0 16px 40px rgba(35, 24, 17, 0.06);
    --shadow-md: 0 24px 70px rgba(35, 24, 17, 0.1);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    background: #ffffff;
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: none;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

main section {
    scroll-margin-top: 112px;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

.container {
    margin: 0 auto;
    max-width: var(--max-width);
    padding: 0 24px;
    width: 100%;
}

.section-space {
    padding: 104px 0;
}

.eyebrow,
.section-caption {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 42, 23, 0.16);
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.16em;
    min-height: 34px;
    padding: 0 14px;
    text-transform: uppercase;
}

.eyebrow::before,
.section-caption::before {
    background: var(--accent);
    border-radius: 999px;
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
}

.center-title,
.section-title,
.contact-shell h2,
.pricing-head h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.center-title {
    margin: 18px auto 0;
    max-width: 820px;
    text-align: center;
}

.section-title {
    max-width: 760px;
}

.center-subtitle,
.section-subtitle,
.contact-intro,
.pricing-head p,
.about-page-intro,
.standalone-form-head .contact-intro {
    color: var(--muted);
    font-size: 1.04rem;
}

.center-subtitle {
    margin: 16px auto 0;
    max-width: 680px;
    text-align: center;
}

.section-subtitle {
    max-width: 560px;
}

.site-header {
    background: transparent;
    inset: 0 0 auto 0;
    padding: 16px 0 0;
    position: fixed;
    z-index: 100;
}

.nav-shell {
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(35, 24, 17, 0.07);
    display: grid;
    gap: 20px;
    grid-template-columns: auto 1fr auto;
    min-height: 74px;
    padding: 10px 16px 10px 18px;
}

.brand {
    align-items: center;
    color: var(--accent);
    display: inline-flex;
    font-size: 1.08rem;
    font-weight: 800;
    gap: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.desktop-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(24, 21, 19, 0.06);
    border-radius: 999px;
    display: flex;
    gap: 8px;
    justify-self: center;
    padding: 6px;
}

.desktop-nav a,
.mobile-nav a {
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    min-height: 40px;
    padding: 0 16px;
    text-transform: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.desktop-nav a,
.mobile-nav a,
.header-signup,
.header-cta,
.btn {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--accent-soft);
    color: var(--accent);
}

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

.header-signup,
.header-cta,
.btn {
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    min-height: 46px;
    padding: 0 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-signup,
.btn-outline,
.btn-text {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(24, 21, 19, 0.1);
    color: var(--ink);
}

.header-signup:hover,
.btn-outline:hover,
.btn-text:hover {
    border-color: rgba(255, 42, 23, 0.2);
    color: var(--accent);
    transform: translateY(-1px);
}

.header-cta,
.btn-solid {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #ffffff;
}

.header-cta:hover,
.btn-solid:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn {
    border: 1px solid transparent;
}

.menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 4px;
    justify-self: end;
    padding: 4px;
}

.menu-toggle span {
    background: var(--ink);
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 22px;
}

.mobile-nav {
    display: none;
}

.hero {
    padding: 154px 0 42px;
}

.hero-inner {
    display: grid;
    gap: 32px;
}

.hero-primary {
    margin: 0 auto;
    max-width: 820px;
    text-align: center;
}

.hero-primary h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.94;
    margin: 22px auto 0;
    max-width: 900px;
}

.hero-accent {
    color: var(--accent);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 0.92em;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.12rem;
    margin: 22px auto 0;
    max-width: 660px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
}

.trust-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 22px;
}

.trust-note {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 999px;
    color: var(--muted);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 42px;
    padding: 0 18px;
    align-items: center;
}

.hero-showcase {
    animation: showcaseFloat 8s ease-in-out infinite;
    margin: 18px auto 0;
    max-width: 980px;
    width: 100%;
}

.showcase-board {
    animation: showcaseReveal 0.9s ease-out both;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    padding: 22px;
}

.showcase-toolbar {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.showcase-dots {
    display: flex;
    gap: 6px;
}

.showcase-dots span {
    animation: showcasePulse 2.8s ease-in-out infinite;
    background: rgba(24, 21, 19, 0.18);
    border-radius: 999px;
    display: inline-block;
    height: 10px;
    width: 10px;
}

.showcase-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.showcase-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.showcase-dots span:first-child {
    background: rgba(255, 42, 23, 0.5);
}

.showcase-toolbar p {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.showcase-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.4fr repeat(3, 1fr);
}

.showcase-card {
    animation: showcaseCardIn 0.8s ease-out both;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 24px;
    display: grid;
    gap: 10px;
    min-height: 188px;
    padding: 22px;
}

.showcase-card:nth-child(1) {
    animation-delay: 0.1s;
}

.showcase-card:nth-child(2) {
    animation-delay: 0.2s;
}

.showcase-card:nth-child(3) {
    animation-delay: 0.3s;
}

.showcase-card:nth-child(4) {
    animation-delay: 0.4s;
}

.showcase-card-primary {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(24, 21, 19, 0.08);
}

.showcase-label,
.service-index,
.plan-meta,
.clients-need-index,
.process-step {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.clients-need-label {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.showcase-card h3 {
    font-size: 1.48rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.showcase-card strong {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

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

@keyframes showcaseReveal {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }

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

@keyframes showcaseCardIn {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes showcaseFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes showcasePulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.14);
    }
}

.services,
.process,
.faq,
.contact,
.pricing-hero,
.about-page-hero,
.standalone-form {
    position: relative;
}

.services::before,
.faq::before,
.pricing-hero::before,
.about-page-hero::before,
.standalone-form::before {
    background: rgba(255, 255, 255, 0.34);
    border-top: 1px solid rgba(24, 21, 19, 0.05);
    border-bottom: 1px solid rgba(24, 21, 19, 0.05);
    content: "";
    inset: 18px 24px;
    pointer-events: none;
    position: absolute;
}

.services .container,
.process .container,
.faq .container,
.contact .container,
.pricing-hero .container,
.about-page-hero .container,
.standalone-form .container {
    position: relative;
    z-index: 1;
}

.section-head {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 34px;
}

.services-grid,
.pricing-cards,
.about-team-goals,
.clients-need-points {
    display: grid;
    gap: 18px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 38px;
}

.service-card,
.process-card,
.faq-item,
.faq-lead-toggle,
.project-form-card,
.about-detail-card,
.pricing-card,
.contact-card,
.contact-aside,
.form-insight-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.service-card,
.process-card,
.about-detail-card,
.contact-card,
.contact-aside,
.form-insight-card {
    padding: 28px;
}

.service-card,
.pricing-card,
.about-detail-card,
.form-insight-card,
.contact-card,
.contact-aside {
    backdrop-filter: blur(10px);
}

.service-card h3,
.process-card h3,
.about-detail-card h3,
.contact-card h3,
.contact-aside h4,
.form-insight-card h3,
.form-insight-card h4 {
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-top: 14px;
}

.service-card p,
.process-card p,
.about-detail-card p,
.contact-card p,
.contact-aside p,
.form-insight-card p {
    color: var(--muted);
    margin-top: 10px;
}

.service-card:hover,
.pricing-card:hover,
.about-detail-card:hover,
.form-insight-card:hover {
    border-color: rgba(255, 42, 23, 0.14);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.process {
    background: transparent;
}

.process-shell {
    display: grid;
    gap: 34px;
}

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

.process-card {
    min-height: 220px;
}

.process-card h3 {
    margin-top: 16px;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 36px;
}

.faq-item {
    overflow: hidden;
    padding: 0;
}

.faq-item summary,
.faq-lead-toggle summary {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    list-style: none;
    padding: 24px 28px;
    position: relative;
}

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

.faq-item summary::after,
.faq-lead-toggle summary::after {
    color: var(--accent);
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    position: absolute;
    right: 24px;
    top: 20px;
}

.faq-item[open] summary::after,
.faq-lead-toggle[open] summary::after {
    content: "-";
}

.faq-item p {
    color: var(--muted);
    padding: 0 28px 26px;
}

.faq-lead-toggle {
    margin-top: 16px;
    overflow: hidden;
}

.faq-lead-body {
    border-top: 1px solid rgba(24, 21, 19, 0.08);
    padding: 0;
}

.faq-add,
.project-form {
    display: grid;
    gap: 14px;
}

.faq-add {
    padding: 26px 28px 28px;
}

.faq-add label,
.project-form label {
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-add input,
.faq-add textarea,
.project-form input:not([type="checkbox"]),
.project-form select,
.project-form textarea,
.footer-subscribe input {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 18px;
    color: var(--ink);
    min-height: 50px;
    outline: none;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-add textarea,
.project-form textarea {
    min-height: 132px;
    resize: vertical;
}

.faq-add input:focus,
.faq-add textarea:focus,
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus,
.footer-subscribe input:focus {
    border-color: rgba(255, 42, 23, 0.4);
    box-shadow: 0 0 0 4px rgba(255, 42, 23, 0.08);
}

.faq-add-note,
.form-note,
.pricing-disclaimer,
.footer-bottom p {
    color: var(--muted-soft);
    font-size: 0.84rem;
}

.form-status {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    margin-top: 10px;
}

.form-status[hidden] {
    display: none;
}

.form-status.is-pending {
    color: var(--muted);
}

.form-status.is-success {
    color: #1c8c55;
}

.form-status.is-error {
    color: var(--accent);
}

.pricing-disclaimer {
    text-align: center;
}

.contact {
    padding-top: 52px;
}

.contact-shell {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.contact-main {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 22px;
    padding: 28px;
}

.contact-block {
    display: grid;
    gap: 14px;
}

.contact-block h3 {
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.contact-line {
    align-items: start;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(24, 21, 19, 0.06);
    border-radius: 20px;
    display: grid;
    gap: 12px;
    grid-template-columns: 40px 1fr;
    padding: 18px;
}

.contact-icon {
    align-items: center;
    background: var(--accent-soft);
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.contact-icon svg {
    fill: currentColor;
    height: 18px;
    width: 18px;
}

.contact-copy {
    color: var(--muted);
    display: inline-block;
}

.contact-copy strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.contact-copy a {
    color: var(--accent);
    font-weight: 600;
}

.whatsapp-mini {
    align-items: center;
    color: #1f9d55;
    display: inline-flex;
    font-weight: 300;
    gap: 6px;
    margin-top: 2px;
}

.whatsapp-mini-icon {
    align-items: center;
    color: currentColor;
    display: inline-flex;
    justify-content: center;
}

.whatsapp-mini-icon svg {
    fill: currentColor;
    height: 14px;
    width: 14px;
}

.whatsapp-mini span:last-child {
    font-weight: 300;
}

.callout-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 28px;
}

.callout-card .btn {
    width: 100%;
}

.site-footer {
    padding: 64px 0 28px;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer::before {
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid rgba(24, 21, 19, 0.06);
    content: "";
    inset: 0;
    position: absolute;
}

.site-footer {
    color: var(--ink);
    margin-top: 94px;
    position: relative;
}

.footer-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
}

.footer-brand {
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-intro,
.footer-grid p,
.footer-grid a {
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-grid h3 {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-stack {
    align-content: start;
    display: grid;
    gap: 6px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 999px;
    color: var(--ink);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    width: 40px;
}

.footer-socials a:hover {
    background: var(--accent-soft);
    border-color: rgba(255, 42, 23, 0.16);
    color: var(--accent);
}

.footer-socials svg {
    fill: currentColor;
    height: 14px;
    width: 14px;
}

.footer-subscribe form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(24, 21, 19, 0.08);
    margin-top: 28px;
    padding-top: 18px;
}

.footer-bottom p {
    text-align: center;
}

.footer-member-line {
    margin-top: 4px;
}

.footer-legal-links {
    margin-top: 6px;
}

.footer-legal-links a,
.footer-legal-links span {
    color: var(--muted-soft);
}

.support-chat {
    bottom: 22px;
    position: fixed;
    right: 22px;
    z-index: 120;
}

.support-chat-toggle {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(24, 21, 19, 0.1);
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    height: 72px;
    justify-content: center;
    padding: 0;
    width: 72px;
}

.support-chat-toggle-logo {
    display: block;
    height: 42px;
    width: 42px;
}

.support-chat-panel {
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 24px;
    bottom: calc(100% + 12px);
    box-shadow: 0 22px 48px rgba(24, 21, 19, 0.12);
    padding: 20px 20px 18px;
    position: absolute;
    right: 0;
    width: min(320px, calc(100vw - 28px));
}

.support-chat-panel[hidden] {
    display: none;
}

.support-chat-close {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.5rem;
    height: 34px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
}

.support-chat-kicker {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-chat-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.98;
    margin-top: 10px;
}

.support-chat-panel p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-top: 10px;
}

.support-chat-links {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.support-chat-links a {
    background: #faf8f7;
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 16px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 12px 14px;
}

.support-chat-links a:hover {
    border-color: rgba(255, 42, 23, 0.2);
    color: var(--accent);
}

.cookie-banner {
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 24px;
    bottom: 22px;
    box-shadow: 0 20px 48px rgba(24, 21, 19, 0.12);
    left: 22px;
    max-width: 420px;
    padding: 18px 18px 16px;
    position: fixed;
    width: calc(100% - 168px);
    z-index: 119;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-kicker {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cookie-banner-copy {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: 10px;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.cookie-banner-actions .btn {
    min-height: 44px;
}

.legal-page {
    min-height: 100vh;
    padding-top: 154px;
}

.legal-shell {
    max-width: 860px;
}

.legal-head {
    max-width: 680px;
}

.legal-kicker {
    color: var(--ink);
}

.legal-head h1 {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.96;
    margin-top: 18px;
}

.legal-head p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-top: 14px;
}

.legal-content {
    border-top: 1px solid rgba(24, 21, 19, 0.12);
    display: grid;
    gap: 28px;
    margin-top: 34px;
    padding-top: 28px;
}

.legal-content section {
    display: grid;
    gap: 10px;
}

.legal-content section + section {
    border-top: 1px solid rgba(24, 21, 19, 0.12);
    margin-top: 10px;
    padding-top: 26px;
}

.legal-content h2 {
    color: rgba(229, 101, 101, 0.96);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.92;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

.about-page-hero,
.pricing-hero,
.standalone-form {
    min-height: 100vh;
    padding-top: 154px;
}

.about-page-shell,
.pricing-head,
.standalone-form-head {
    text-align: center;
}

.about-page-intro,
.pricing-head p,
.standalone-form-head .contact-intro {
    margin: 18px auto 0;
    max-width: 720px;
}

.about-team-goals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 42px;
    text-align: left;
}

.about-page-hero {
    min-height: auto;
    padding-bottom: 124px;
}

.about-page-hero::before {
    content: none;
}

.about-page-shell {
    max-width: 1088px;
}

.about-page-kicker {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    font-size: 0.72rem;
    gap: 0;
    justify-content: center;
    letter-spacing: 0.24em;
    min-height: auto;
    padding: 0;
}

.about-page-kicker::before {
    content: none;
}

.about-page-title {
    font-size: clamp(2.35rem, 4.3vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.92;
    margin-top: 24px;
    max-width: 760px;
}

.about-page-intro {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 18px auto 0;
    max-width: 900px;
}

.about-page-sections {
    margin: 104px auto 0;
    max-width: 1030px;
    text-align: left;
}

.about-page-section + .about-page-section {
    border-top: 1px solid rgba(24, 21, 19, 0.12);
    margin-top: 68px;
    padding-top: 56px;
}

.about-page-section h2,
.about-contact-block h2 {
    color: rgba(229, 101, 101, 0.96);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.92;
}

.about-page-section h3,
.about-contact-block h3,
.about-tilt-card h2 {
    color: var(--ink);
    font-size: clamp(1rem, 1.35vw, 1.26rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.96;
    margin-top: 18px;
}

.about-tilt-card h2 {
    margin-top: 0;
}

.about-page-section p,
.about-contact-block p,
.about-tilt-card p {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-top: 18px;
    max-width: 920px;
}

.about-page-points {
    gap: 14px;
    margin-top: 20px;
}

.about-page-points li {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
    padding-left: 32px;
}

.about-page-points li::before {
    font-size: 0.92rem;
    left: 2px;
    top: 1px;
}

.about-page-bottom {
    align-items: start;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.7fr);
    margin-top: 74px;
}

.about-tilt-card {
    background: #ffffff;
    border: 1px solid rgba(255, 42, 23, 0.34);
    box-shadow: none;
    padding: 42px 36px 34px;
    transform: rotate(-2deg);
}

.about-tilt-card h3 {
    color: rgba(229, 101, 101, 0.96);
    font-size: clamp(1.26rem, 1.8vw, 1.82rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.94;
    margin-top: 20px;
    max-width: 560px;
}

.about-tilt-card p {
    max-width: 560px;
}

.about-contact-block {
    max-width: 320px;
    padding-top: 8px;
}

.about-contact-block p a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.about-detail-card h2,
.pricing-card h2,
.clients-need-card h3,
.form-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.about-page-points,
.simple-list,
.pricing-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.about-page-points li,
.simple-list li,
.pricing-card li {
    color: var(--muted);
    padding-left: 22px;
    position: relative;
}

.about-page-points li::before,
.simple-list li::before,
.pricing-card li::before {
    color: var(--accent);
    content: "\2713";
    font-weight: 700;
    left: 0;
    position: absolute;
    top: 0;
}

.about-member-note {
    color: var(--muted);
    margin-top: 28px;
}

.pricing-head .center-title {
    margin-top: 18px;
}

.pricing-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 42px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(24, 21, 19, 0.08);
    transform: translateY(-10px);
}

.plan-copy {
    color: var(--muted);
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
}

.soft {
    color: var(--accent);
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

.pricing-help-note {
    color: var(--muted);
    margin: 28px auto 0;
    max-width: 620px;
    text-align: center;
}

.pricing-help-note a {
    color: var(--accent);
    font-weight: 600;
}

.pricing-head .pricing-page-intro {
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 18px auto 0;
    max-width: 780px;
}

.pricing-page-shell {
    max-width: 1088px;
}

.pricing-primary-cards {
    align-items: end;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 56px auto 0;
    max-width: 926px;
}

.pricing-page-card {
    background: #ffffff;
    border: 1px solid rgba(255, 42, 23, 0.34);
    border-radius: 0;
    box-shadow: none;
    gap: 0;
    min-height: 610px;
    padding: 30px 30px 40px;
}

.pricing-page-card:hover {
    border-color: rgba(255, 42, 23, 0.4);
    box-shadow: 0 14px 28px rgba(35, 24, 17, 0.08);
    transform: translateY(-14px);
}

.pricing-page-card .plan-meta {
    margin-bottom: 18px;
}

.pricing-page-card h2 {
    font-size: clamp(2rem, 3.3vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.92;
    max-width: 260px;
}

.pricing-page-card .plan-copy {
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-top: 18px;
    max-width: 240px;
}

.pricing-page-card .plan-price {
    font-size: clamp(2.45rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.96;
    margin-top: 18px;
}

.pricing-page-card ul {
    gap: 14px;
    margin-top: 36px;
}

.pricing-page-card li {
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.98;
    padding-left: 28px;
}

.pricing-page-card li::before,
.pricing-enterprise li::before {
    color: var(--accent);
    content: "\2713";
    font-size: 0.9rem;
    font-weight: 600;
    left: 2px;
    position: absolute;
    top: 1px;
}

.pricing-page-button {
    border-radius: 0;
    margin: auto auto 0;
    min-height: 42px;
    min-width: 154px;
    padding: 0 24px;
    width: auto;
}

.pricing-page-button-outline {
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.14);
    color: #55504a;
}

.pricing-page-button-outline:hover {
    background: #ffffff;
    color: #1d1d1d;
}

.pricing-primary-cards .featured-card {
    background: #fff8f7;
    border-color: rgba(255, 42, 23, 0.5);
    box-shadow: 0 18px 36px rgba(255, 42, 23, 0.08);
    min-height: 610px;
    transform: none;
    z-index: 2;
}

.pricing-help-note {
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin: 38px auto 0;
    max-width: none;
}

.pricing-help-note a {
    font-weight: 600;
}

.pricing-disclaimer {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 10px auto 0;
}

.pricing-section-divider {
    border-top: 1px solid rgba(24, 21, 19, 0.14);
    margin: 54px 0 0;
    width: 100%;
}

.pricing-enterprise {
    margin-top: 94px;
    max-width: 640px;
    padding-left: 10px;
}

.pricing-enterprise .plan-meta {
    margin-bottom: 22px;
}

.pricing-enterprise h2 {
    font-size: clamp(2.6rem, 5vw, 3.3rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.94;
}

.pricing-enterprise-copy {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-top: 22px;
    max-width: 620px;
}

.pricing-enterprise-note,
.pricing-enterprise-cta-copy {
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.2;
    max-width: 620px;
}

.pricing-enterprise-note {
    margin-top: 18px;
}

.pricing-enterprise-details {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
    max-width: 760px;
}

.pricing-enterprise-detail {
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.1);
    padding: 18px 18px 20px;
}

.pricing-enterprise-detail h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-enterprise-detail p {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.2;
    margin-top: 12px;
}

.pricing-enterprise ul {
    display: grid;
    gap: 24px;
    list-style: none;
    margin-top: 42px;
    padding: 0;
}

.pricing-enterprise li {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    padding-left: 28px;
    position: relative;
}

.pricing-enterprise-button {
    border-radius: 0;
    margin-top: 42px;
    min-width: 156px;
    padding: 0 22px;
    width: auto;
}

.pricing-enterprise-cta-copy {
    margin-top: 30px;
}

.pricing-hero {
    min-height: auto;
    padding-bottom: 124px;
}

.pricing-hero::before {
    content: none;
}

.pricing-head .eyebrow {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    font-size: 0.72rem;
    gap: 0;
    justify-content: center;
    letter-spacing: 0.24em;
    min-height: auto;
    padding: 0;
}

.pricing-head .eyebrow::before {
    content: none;
}

.pricing-head .center-title {
    font-size: clamp(3.2rem, 6vw, 4.9rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.92;
    margin-top: 24px;
    max-width: 700px;
}

.pricing-page-card:nth-child(1),
.pricing-page-card:nth-child(3) {
    min-height: 610px;
}

.pricing-enterprise .plan-meta,
.pricing-page-card .plan-meta {
    letter-spacing: 0.06em;
}

.pricing-enterprise .plan-meta {
    margin-bottom: 18px;
}

.site-footer {
    margin-top: 0;
    padding: 48px 0 34px;
}

.site-footer::before {
    background: #ffffff;
    border-top: 1px solid rgba(24, 21, 19, 0.12);
}

.footer-grid {
    align-items: start;
    gap: 20px;
    grid-template-columns: 1.15fr 1fr 1.1fr 1fr 1.2fr;
}

.footer-brand {
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.footer-grid p,
.footer-grid a {
    color: #26211d;
    font-size: 0.93rem;
    line-height: 1.45;
}

.footer-grid h3 {
    font-size: 0.94rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-stack {
    gap: 5px;
}

.footer-socials {
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.14);
    height: 42px;
    width: 42px;
}

.footer-subscribe p {
    max-width: 220px;
}

.footer-subscribe form {
    gap: 14px;
    margin-top: 16px;
}

.footer-subscribe input {
    border-radius: 999px;
    min-height: 44px;
}

.footer-subscribe .btn {
    min-height: 50px;
    width: 100%;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 22px;
}

.footer-bottom p {
    text-align: center;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-page-bottom {
        gap: 34px;
        grid-template-columns: 1fr;
    }

    .about-contact-block {
        max-width: none;
        padding-top: 0;
    }
}

@media (max-width: 1100px) {
    .pricing-primary-cards {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .pricing-page-card,
    .pricing-primary-cards .featured-card {
        min-height: auto;
        transform: none;
    }

    .pricing-enterprise {
        max-width: none;
        padding-left: 0;
    }

    .pricing-enterprise-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .pricing-head .pricing-page-intro {
        line-height: 1.28;
    }

    .about-page-title {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .about-page-intro,
    .about-page-section p,
    .about-contact-block p,
    .about-tilt-card p,
    .about-page-points li {
        line-height: 1.2;
    }

    .about-page-sections {
        margin-top: 82px;
    }

    .about-page-section + .about-page-section {
        margin-top: 56px;
    }

    .about-tilt-card {
        padding: 30px 24px 26px;
        transform: none;
    }

    .pricing-page-card {
        padding: 24px 22px 28px;
    }

    .pricing-page-card h2 {
        max-width: none;
    }

    .pricing-page-card .plan-copy,
    .pricing-enterprise-copy,
    .pricing-enterprise li,
    .pricing-page-card li {
        line-height: 1.12;
    }

    .pricing-enterprise {
        margin-top: 72px;
    }

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

.standalone-form .contact-shell {
    align-items: start;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

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

.standalone-form-head h2 {
    margin-top: 18px;
}

.form-insight-card {
    text-align: left;
}

.form-insight-soft {
    background: rgba(255, 255, 255, 0.9);
}

.clients-need-card {
    background: rgba(255, 255, 255, 0.78);
}

.clients-need-card h3 {
    margin-top: 12px;
}

.clients-need-copy {
    color: var(--muted);
    margin-top: 12px;
}

.clients-need-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.clients-need-points article {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(24, 21, 19, 0.06);
    border-radius: 20px;
    padding: 18px;
}

.project-form-card {
    padding: 30px;
}

.form-title {
    font-size: 1.72rem;
}

.form-subtitle {
    color: var(--muted);
    margin-bottom: 4px;
}

.form-consent {
    align-items: start;
    display: flex;
    gap: 10px;
}

.form-consent input[type="checkbox"] {
    accent-color: var(--accent);
    margin-top: 4px;
}

.form-consent span {
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: none;
}

.form-submit {
    width: 100%;
}

.standalone-form {
    min-height: auto;
    padding-bottom: 124px;
}

.standalone-form::before {
    content: none;
}

.standalone-form-shell {
    align-items: start;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.92fr);
    max-width: 1088px;
}

.standalone-form-side {
    display: grid;
    gap: 52px;
}

.standalone-form-side > * + * {
    border-top: 1px solid rgba(24, 21, 19, 0.12);
    padding-top: 34px;
}

.standalone-form-page-head {
    max-width: 760px;
    text-align: left;
}

.standalone-form-kicker {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    font-size: 0.72rem;
    gap: 0;
    justify-content: flex-start;
    letter-spacing: 0.24em;
    min-height: auto;
    padding: 0;
}

.standalone-form-kicker::before {
    content: none;
}

.standalone-form-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.94;
    margin-top: 18px;
    max-width: 760px;
}

.standalone-form-intro {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin-top: 16px;
    max-width: 640px;
    text-align: left;
}

.standalone-form-intro a {
    color: var(--accent);
    text-decoration: none;
}

.standalone-project-form {
    background: #ffffff;
    border: 1px solid rgba(255, 42, 23, 0.34);
    border-radius: 0;
    box-shadow: none;
    gap: 0;
    margin-top: 0;
    max-width: 646px;
    padding: 54px 54px 48px;
    justify-self: end;
    width: 100%;
}

.standalone-project-form .form-title {
    color: rgba(229, 101, 101, 0.96);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.94;
}

.standalone-project-form .form-subtitle {
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 18px 0 16px;
    max-width: 460px;
}

.standalone-project-form label:not(.form-consent) {
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-top: 18px;
    text-transform: none;
}

.standalone-project-form input:not([type="checkbox"]),
.standalone-project-form select,
.standalone-project-form textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(24, 21, 19, 0.55);
    border-radius: 0;
    box-shadow: none;
    color: var(--ink);
    display: block;
    min-height: 58px;
    padding: 12px 0 10px;
    width: 100%;
}

.standalone-project-form input:not([type="checkbox"])::placeholder,
.standalone-project-form textarea::placeholder,
.standalone-project-form select {
    color: #7c756f;
}

.standalone-project-form textarea {
    min-height: 138px;
    padding-top: 18px;
}

.standalone-project-form input[type="file"] {
    border-bottom: 1px solid rgba(24, 21, 19, 0.55);
    min-height: auto;
    padding: 14px 0 12px;
}

.standalone-project-form input[type="file"]::file-selector-button {
    background: #f6f3f1;
    border: 1px solid rgba(24, 21, 19, 0.1);
    border-radius: 0;
    color: #5d5650;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-right: 14px;
    padding: 9px 14px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.standalone-project-form input[type="file"]::file-selector-button:hover {
    background: #f1ece9;
    border-color: rgba(24, 21, 19, 0.16);
    color: var(--ink);
}

.standalone-project-form input:focus,
.standalone-project-form select:focus,
.standalone-project-form textarea:focus {
    border-color: rgba(24, 21, 19, 0.8);
    box-shadow: none;
}

.standalone-project-form input[type="file"]:focus {
    border-color: rgba(24, 21, 19, 0.8);
}

.form-select-wrap {
    border: 0;
    box-shadow: none;
    position: relative;
    width: 100%;
}

.form-select-wrap::after {
    color: var(--accent);
    content: "\25be";
    font-size: 0.9rem;
    line-height: 1;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.standalone-project-form select {
    appearance: none;
    padding-right: 34px;
    width: 100%;
}

.standalone-project-form select:focus-visible,
.standalone-project-form input[type="file"]:focus-visible,
.standalone-project-form textarea:focus-visible,
.standalone-project-form .form-select-wrap:focus-within {
    outline: none;
    outline-offset: 0;
}

.standalone-project-form .form-consent {
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.standalone-project-form .form-consent input[type="checkbox"] {
    accent-color: auto;
    border: 1px solid rgba(24, 21, 19, 0.5);
    border-radius: 0;
    height: 18px;
    margin-top: 0;
    width: 18px;
}

.standalone-project-form .form-consent span {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.standalone-project-form .form-submit {
    border-radius: 0;
    margin-top: 16px;
    min-height: 52px;
}

.standalone-project-form .form-note {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-top: 14px;
}

.form-file-note {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-top: 10px;
}

.start-project-details,
.start-project-links {
    max-width: 646px;
}

.start-project-details h3,
.start-project-links h3 {
    color: rgba(229, 101, 101, 0.96);
    font-size: clamp(1.42rem, 2.1vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.94;
}

.start-project-detail-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin-top: 18px;
    padding: 0;
}

.start-project-detail-list li {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.12;
    padding-left: 24px;
    position: relative;
}

.start-project-detail-list li::before {
    color: var(--accent);
    content: "\2713";
    font-size: 0.88rem;
    left: 0;
    position: absolute;
    top: 0;
}

.start-project-links .simple-list {
    gap: 14px;
    margin-top: 18px;
}

.start-project-links .simple-list li {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    padding-left: 24px;
}

.start-project-links .simple-list li::before {
    font-size: 0.88rem;
    left: 0;
    top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (max-width: 1120px) {
    .nav-shell {
        grid-template-columns: auto 1fr auto;
    }

    .showcase-grid,
    .pricing-cards,
    .standalone-form .contact-shell,
    .contact-shell,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .about-team-goals,
    .clients-need-points,
    .process-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-card {
        transform: none;
    }

    .standalone-form-shell {
        gap: 36px;
        grid-template-columns: 1fr;
    }

    .standalone-project-form,
    .start-project-links,
    .start-project-details {
        max-width: none;
    }

    .standalone-project-form {
        justify-self: stretch;
    }
}

@media (max-width: 920px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        background: #ffffff;
        border: 1px solid rgba(24, 21, 19, 0.08);
        backdrop-filter: none;
        border-radius: 24px;
        box-shadow: var(--shadow-sm);
        display: none;
        gap: 10px;
        margin-top: 12px;
        padding: 14px;
    }

    .mobile-nav.open {
        display: grid;
    }

    .mobile-nav a {
        justify-content: flex-start;
    }

    .section-space {
        padding: 90px 0;
    }

    .hero,
    .about-page-hero,
    .pricing-hero,
    .standalone-form {
        padding-top: 132px;
    }

    .services::before,
    .faq::before,
    .pricing-hero::before,
    .about-page-hero::before,
    .standalone-form::before,
    .site-footer::before {
        inset: 0 12px;
    }

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

@media (max-width: 720px) {
    .container {
        padding: 0 18px;
    }

    .nav-shell {
        min-height: 70px;
        padding: 10px 14px 10px 16px;
    }

    .brand {
        font-size: 0.96rem;
        gap: 10px;
    }

    .hero-primary h1,
    .center-title,
    .section-title,
    .contact-shell h2,
    .pricing-head h1 {
        font-size: clamp(2.4rem, 13vw, 3.7rem);
    }

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

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

    .showcase-card,
    .service-card,
    .process-card,
    .about-detail-card,
    .pricing-card,
    .contact-main,
    .callout-card,
    .form-insight-card,
    .project-form-card,
    .faq-add {
        padding: 22px;
    }

    .services-grid,
    .about-team-goals,
    .clients-need-points,
    .process-cards {
        grid-template-columns: 1fr;
    }

    .trust-row {
        flex-direction: column;
    }

    .standalone-form-title {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .standalone-project-form {
        padding: 32px 22px 28px;
    }

    .standalone-project-form .form-subtitle,
    .standalone-form-intro,
    .start-project-links .simple-list li {
        line-height: 1.2;
    }

    .start-project-links {
        margin-top: 54px;
    }
}

.home-kicker {
    color: var(--ink);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.home-hero {
    padding: 150px 0 104px;
    position: relative;
}

.home-hero::before {
    content: none;
}

.home-hero .hero-inner {
    align-items: start;
    gap: 64px;
    grid-template-columns: minmax(0, 520px) minmax(0, 500px);
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.home-hero-copy {
    margin: 0;
    max-width: 520px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.home-hero-pill {
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 999px;
    color: #1f1b18;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 600;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
}

.home-hero-pill img {
    display: block;
    height: 28px;
    width: 28px;
}

.home-hero-title {
    font-size: clamp(2rem, 3.55vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.97;
    margin: 18px 0 0;
    max-width: 520px;
    text-align: left;
}

.home-hero-title-line {
    display: block;
    white-space: nowrap;
}

.home-hero-subtitle {
    color: #6d6660;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.45;
    margin: 18px 0 0;
    max-width: 470px;
    text-align: left;
}

.home-hero .hero-actions {
    justify-content: flex-start;
    margin-top: 28px;
}

.trust-flag {
    display: inline-block;
    margin-right: 6px;
}

.home-services::before,
.home-faq::before,
.home-contact::before {
    content: none;
}

.home-hero .trust-row {
    justify-content: flex-start;
    margin-top: 18px;
}

.home-hero-visual {
    display: grid;
    justify-items: end;
    position: relative;
    z-index: 1;
}

.home-hero-card {
    background: #f5efea;
    border: 1px solid rgba(24, 21, 19, 0.06);
    border-radius: 30px;
    box-shadow: 0 28px 54px rgba(35, 24, 17, 0.12);
    aspect-ratio: 0.98 / 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: min(100%, 510px);
}

.home-hero-card-video {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.home-hero-card-overlay {
    background:
        linear-gradient(180deg, rgba(255, 249, 246, 0.18) 0%, rgba(255, 249, 246, 0.08) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 40%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-hero-reviews {
    display: block;
    margin: -70px 0 0;
    position: relative;
    width: min(100%, 430px);
    z-index: 3;
}

.home-review-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(35, 24, 17, 0.12);
    left: 0;
    opacity: 0;
    padding: 20px 22px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(-34px) scale(0.98);
    transition: opacity 0.85s ease, transform 0.85s ease;
    width: 100%;
}

.home-hero-reviews:not(.is-ready) .home-review-card:first-child,
.home-review-card.is-active {
    animation: heroReviewSlideIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
    opacity: 1;
    pointer-events: auto;
    position: relative;
    transform: translateX(0) scale(1);
}

.home-review-stars {
    color: var(--accent);
    font-size: 0;
    letter-spacing: 0;
    line-height: 1;
}

.home-review-stars::before {
    content: "★★★★★";
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.home-review-quote {
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.5;
    margin-top: 14px;
}

.home-review-name {
    border-top: 1px solid rgba(24, 21, 19, 0.08);
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 18px;
    padding-top: 14px;
}

.home-review-role {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.3;
    margin-top: 4px;
}

.home-review-stars::before {
    content: "\2605\2605\2605\2605\2605";
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

@keyframes heroReviewSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-38px) scale(0.98);
    }

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

.home-hero-floating {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(24, 21, 19, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(35, 24, 17, 0.12);
    display: grid;
    gap: 4px;
    min-width: 250px;
    padding: 16px 18px;
    position: absolute;
    z-index: 2;
}

.home-hero-floating strong {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.home-hero-floating span {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.3;
}

.home-hero-floating-top {
    left: -44px;
    top: 58%;
}

.home-hero-floating-bottom {
    left: -18px;
    top: 73%;
}

.home-hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.home-hero-dots span {
    background: rgba(24, 21, 19, 0.14);
    border-radius: 999px;
    display: block;
    height: 8px;
    width: 8px;
}

.home-hero-dots span.active {
    background: rgba(24, 21, 19, 0.45);
}

.home-services {
    padding-top: 0;
    position: relative;
}

.home-services .home-kicker {
    display: block;
    text-align: center;
}

.home-services::after {
    content: none;
}

.home-section-line {
    border-top: 1px solid rgba(24, 21, 19, 0.26);
    margin: 0 auto 34px;
    max-width: 940px;
}

.home-section-title,
.home-process-title,
.home-contact-title {
    font-size: clamp(2.3rem, 5vw, 3.3rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.home-section-title,
.home-section-subtitle {
    text-align: center;
}

.home-section-title {
    margin-top: 18px;
}

.home-section-subtitle {
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.32;
    margin: 16px auto 0;
    max-width: 620px;
}

.home-services-list {
    margin: 46px auto 0;
    max-width: 1620px;
    overflow: hidden;
    position: relative;
    transition: height 0.78s ease;
}

.home-service-row {
    align-items: center;
    column-gap: 88px;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(320px, 480px) minmax(420px, 1fr);
    left: 0;
    max-width: 1460px;
    margin: 0 auto;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition:
        transform 0.85s ease,
        opacity 0.85s ease;
    will-change: transform, opacity;
    transform: translateX(-34px) scale(0.98);
}

.home-service-copy {
    display: grid;
    gap: 14px;
    justify-items: start;
    text-align: left;
}

.home-service-picture {
    align-items: center;
    background: linear-gradient(180deg, #fff6f2 0%, #ffecea 100%);
    border: 1px solid rgba(255, 42, 23, 0.12);
    border-radius: 28px;
    justify-self: end;
    overflow: hidden;
    display: inline-flex;
    aspect-ratio: 1.38 / 1;
    height: auto;
    justify-content: center;
    transition: transform 0.55s ease, opacity 0.45s ease;
    width: min(860px, 100%);
    position: relative;
}

.home-service-picture img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-service-copy h3 {
    color: #4f4a46;
    font-size: clamp(2.4rem, 4.5vw, 4.9rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.94;
    margin: 0;
}

.home-service-copy p {
    color: #181513;
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.35;
    margin: 0;
    max-width: 640px;
}

.home-service-copy h3,
.home-service-row .home-service-picture,
.home-service-copy p {
    transition:
        color 0.85s ease,
        opacity 0.85s ease,
        transform 0.85s ease,
        font-size 0.85s ease;
}

.home-service-row .home-service-picture,
.home-service-copy p {
    opacity: 0;
}

.home-service-copy h3 {
    transform: scale(1);
    transform-origin: left center;
}

.home-service-row.is-active {
    animation: heroReviewSlideIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
    opacity: 1;
    pointer-events: auto;
    position: relative;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.home-service-row.is-active .home-service-copy h3 {
    color: #ea4a43;
    transform: scale(1);
}

.home-service-row.is-active .home-service-picture,
.home-service-row.is-active .home-service-copy p {
    opacity: 1;
}

.home-service-row.is-active .home-service-picture {
    transform: scale(1);
}

.home-service-row.is-muted {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-34px) scale(0.98);
}

.home-process {
    background: transparent;
    padding: 56px 0 102px;
    position: relative;
}

.home-process::after {
    content: none;
}

.home-process .container,
.home-faq .container,
.home-contact .container,
.site-footer .container {
    max-width: 1088px;
}

.home-process .process-shell {
    gap: 22px;
}

.home-process .process-shell::before {
    border-top: 1px solid rgba(24, 21, 19, 0.2);
    content: "";
    display: block;
    margin: 0 0 14px;
    width: 100%;
}

.home-process-title {
    color: rgba(229, 101, 101, 0.96);
    margin-top: 14px;
    max-width: 460px;
}

.home-process-copy {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.26;
    max-width: 520px;
}

.home-process-cards {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    justify-content: start;
    margin-top: 26px;
}

.home-process .process-card {
    align-items: start;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 0;
    box-shadow: none;
    clip-path: none;
    display: grid;
    gap: 24px;
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 0;
    padding: 22px 0;
}

.home-process-step {
    color: rgba(229, 101, 101, 0.96);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 4px 0 0;
    text-transform: uppercase;
}

.home-process-item-copy {
    display: grid;
    gap: 10px;
}

.home-process .process-card h3 {
    color: var(--ink);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.98;
    margin-top: 0;
}

.home-process .process-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.45;
    margin-top: 0;
}

.home-process .process-card:last-child {
    border-bottom: 0;
}

.home-faq {
    padding: 96px 0;
    position: relative;
}

.home-faq::after {
    content: none;
}

.home-faq-layout {
    align-items: start;
    display: grid;
    gap: 42px;
    grid-template-columns: 250px minmax(0, 1fr);
}

.home-faq-layout::before {
    border-top: 1px solid rgba(24, 21, 19, 0.2);
    content: "";
    display: block;
    grid-column: 1 / -1;
    margin: 0 0 12px;
    width: 100%;
}

.home-faq-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.92;
    margin-top: 18px;
    max-width: 210px;
}

.home-faq-button {
    align-items: center;
    background: #1d1d1d;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 24px;
    min-height: 34px;
    padding: 0 16px;
    text-transform: uppercase;
}

.home-faq .faq-list {
    gap: 14px;
    margin-top: 0;
}

.home-faq .faq-item,
.home-faq .faq-lead-toggle {
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.1);
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(35, 24, 17, 0.05);
    overflow: hidden;
}

.home-faq .faq-item[open] {
    border-radius: 26px;
}

.home-faq .faq-item summary,
.home-faq .faq-lead-toggle summary {
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 58px;
    padding: 18px 24px;
}

.home-faq .faq-item summary::after,
.home-faq .faq-lead-toggle summary::after {
    right: 22px;
    top: 16px;
}

.home-faq .faq-item p {
    font-size: 0.88rem;
    padding: 0 24px 22px;
}

.home-faq .faq-lead-toggle {
    background: #8d8d8d;
    border-color: #8d8d8d;
    border-radius: 24px;
    margin-top: 16px;
}

.home-faq .faq-lead-toggle summary {
    color: #ffffff;
}

.home-faq .faq-lead-toggle summary::after {
    color: #ffffff;
}

.home-faq .faq-lead-body {
    background: #ffffff;
}

.home-contact {
    padding: 98px 0 88px;
    position: relative;
}

.home-contact::after {
    content: none;
}

.home-contact-wrap {
    max-width: 1088px;
}

.home-contact-wrap::before {
    border-top: 1px solid rgba(24, 21, 19, 0.2);
    content: "";
    display: block;
    margin: 0 0 34px;
    width: 100%;
}

.home-contact-title {
    margin-top: 16px;
}

.home-contact-subtitle {
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.3;
    margin-top: 12px;
}

.home-contact-layout {
    align-items: start;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) 360px;
    margin-top: 42px;
}

.home-contact-layout.is-booking-open {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 600px);
}

.home-contact-main h3 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.home-contact-block {
    gap: 18px;
    margin-top: 22px;
}

.home-contact-line {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.home-contact-line .contact-icon {
    background: #fff1ed;
    border: 1px solid rgba(255, 42, 23, 0.12);
    height: 34px;
    width: 34px;
}

.home-contact-line .contact-icon svg {
    height: 15px;
    width: 15px;
}

.home-contact-line .contact-copy {
    font-size: 0.9rem;
}

.home-callout-card {
    background: #fde8e5;
    border: 0;
    box-shadow: none;
    max-width: 320px;
    padding: 26px 24px;
    transform: rotate(-4deg);
}

.home-callout-card h4 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.home-callout-card p {
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.4;
}

.home-callout-card .btn {
    justify-self: start;
    min-width: 120px;
    width: auto;
}

.home-booking-slot {
    position: relative;
}

.home-booking-slot[hidden],
.home-booking-slot [hidden] {
    display: none !important;
}

.home-booking-slot.is-open {
    width: 100%;
}

.home-booking-panel {
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 28px;
    max-width: 600px;
    padding: 24px 22px 22px;
    width: 100%;
}

.home-booking-panel[hidden] {
    display: none;
}

.home-booking-close {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.8rem;
    height: 36px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 12px;
    width: 36px;
}

.home-booking-title {
    font-size: clamp(1.7rem, 2.2vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.96;
    margin-top: 12px;
    max-width: none;
}

.home-booking-copy {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 10px;
    max-width: none;
}

.home-booking-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.booking-platform-fieldset {
    border: 0;
    display: grid;
    gap: 12px;
    padding: 0;
}

.booking-platform-fieldset legend {
    color: rgba(229, 101, 101, 0.96);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-platform-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.booking-platform-option {
    cursor: pointer;
    display: block;
}

.booking-platform-option input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.booking-platform-card {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 18px;
    display: grid;
    gap: 14px;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 72px;
    padding: 12px 12px 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.booking-platform-option:hover .booking-platform-card {
    border-color: rgba(255, 42, 23, 0.22);
    transform: translateY(-1px);
}

.booking-platform-option input:checked + .booking-platform-card {
    background: #fff5f2;
    border-color: rgba(255, 42, 23, 0.34);
    box-shadow: 0 0 0 4px rgba(255, 42, 23, 0.08);
}

.booking-platform-option input:focus-visible + .booking-platform-card {
    box-shadow: 0 0 0 4px rgba(255, 42, 23, 0.08);
}

.booking-platform-icon {
    align-items: center;
    background: #fff1ed;
    border-radius: 14px;
    color: var(--accent);
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.booking-platform-icon svg {
    fill: currentColor;
    height: 18px;
    width: 18px;
}

.booking-platform-text {
    display: grid;
    gap: 2px;
}

.booking-platform-text strong {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.booking-platform-text span {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.3;
}

.booking-modal-fields,
.home-booking-fields {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.booking-modal-field {
    display: grid;
    gap: 8px;
}

.booking-modal-field-full {
    grid-column: 1 / -1;
}

.home-booking-form label,
.booking-modal-field label {
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.home-booking-form input,
.home-booking-form textarea {
    background: #ffffff;
    border: 1px solid rgba(24, 21, 19, 0.12);
    border-radius: 18px;
    color: var(--ink);
    min-height: 52px;
    outline: none;
    padding: 13px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.home-booking-form textarea {
    min-height: 118px;
    resize: vertical;
}

.home-booking-form input:focus,
.home-booking-form textarea:focus {
    border-color: rgba(255, 42, 23, 0.32);
    box-shadow: 0 0 0 4px rgba(255, 42, 23, 0.08);
}

.home-booking-form .btn {
    margin-top: 2px;
    width: 100%;
}

@media (max-width: 1120px) {
    .home-hero .hero-inner {
        gap: 44px;
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        margin: 0 auto;
        max-width: 760px;
        text-align: center;
    }

    .home-hero-title,
    .home-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .home-hero-pill {
        margin: 0 auto;
    }

    .home-hero .hero-actions,
    .home-hero .trust-row {
        justify-content: center;
    }

    .home-hero-card {
        aspect-ratio: 1 / 1;
        width: min(100%, 540px);
        min-height: 0;
    }

    .home-hero-visual {
        justify-items: center;
    }

    .home-hero-reviews {
        margin-top: -56px;
        width: min(100%, 420px);
    }

    .home-review-card:nth-child(1),
    .home-review-card:nth-child(2),
    .home-review-card:nth-child(3) {
        width: 100%;
    }

    .home-hero-floating-top {
        left: 18px;
        top: auto;
        bottom: 108px;
    }

    .home-hero-floating-bottom {
        left: 28px;
        top: auto;
        bottom: 28px;
    }

    .home-service-row {
        column-gap: 48px;
        grid-template-columns: minmax(280px, 380px) minmax(320px, 1fr);
    }

    .home-service-copy h3 {
        font-size: clamp(2.15rem, 5vw, 3.6rem);
    }

    .home-service-copy p {
        font-size: 1.05rem;
        max-width: 520px;
    }

    .home-faq-layout,
    .home-contact-layout {
        grid-template-columns: 1fr;
    }

    .home-faq-title {
        max-width: none;
    }

    .home-booking-panel {
        max-width: none;
        padding: 26px 24px 24px;
    }
}

@media (max-width: 820px) {
    body::before {
        height: 340px;
        left: -120px;
        top: 140px;
        width: 340px;
    }

    body::after {
        bottom: 120px;
        height: 380px;
        right: -140px;
        width: 380px;
    }

    .home-services-list {
        max-width: 100%;
    }

    .home-hero-card {
        border-radius: 28px;
        aspect-ratio: 1 / 1;
        min-height: 0;
        width: min(100%, 500px);
    }

    .home-hero-floating {
        min-width: 0;
        width: calc(100% - 36px);
    }

    .home-hero-floating-top,
    .home-hero-floating-bottom {
        left: 18px;
    }

    .home-hero-floating-top {
        bottom: 106px;
    }

    .home-hero-floating-bottom {
        bottom: 24px;
    }

    .home-service-row {
        gap: 26px;
        grid-template-columns: 1fr;
        max-width: 100%;
        text-align: center;
        transform: translateX(-34px) scale(0.98);
        transition:
            transform 0.85s ease,
            opacity 0.85s ease;
    }

    .home-service-copy {
        justify-items: center;
        text-align: center;
    }

    .home-service-copy h3 {
        font-size: clamp(2.3rem, 8vw, 3.3rem);
        transform-origin: center;
    }

    .home-service-copy p {
        font-size: 1rem;
        max-width: 620px;
    }

    .home-service-copy h3,
    .home-service-row .home-service-picture,
    .home-service-copy p {
        transition:
            color 0.85s ease,
            opacity 0.85s ease,
            transform 0.85s ease,
            font-size 0.85s ease;
    }

    .home-service-picture {
        justify-self: center;
        width: min(100%, 700px);
    }

    .home-service-row.is-muted {
        transform: translateX(-34px) scale(0.98);
    }

    .home-service-row.is-active {
        animation: heroReviewSlideIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
        transform: translateX(0) scale(1);
    }

    .home-process .process-card {
        gap: 18px;
        grid-template-columns: 54px minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .home-services::after,
    .home-process::after,
    .home-faq::after,
    .home-contact::after {
        opacity: 0.6;
    }

    .support-chat {
        bottom: 16px;
        left: auto;
        right: 16px;
    }

    .support-chat-toggle {
        height: 78px;
        margin-left: 0;
        width: 78px;
    }

    .support-chat-panel {
        left: auto;
        right: 0;
        width: min(320px, calc(100vw - 32px));
    }

    .cookie-banner {
        bottom: 82px;
        left: 16px;
        max-width: none;
        right: 16px;
        width: auto;
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .home-hero {
        padding: 128px 0 84px;
    }

    .home-hero-title,
    .home-section-title,
    .home-process-title,
    .home-faq-title,
    .home-contact-title {
        font-size: clamp(2.4rem, 12vw, 3.8rem);
    }

    .home-hero-subtitle {
        font-size: 0.96rem;
    }

    .home-hero-title {
        max-width: 600px;
    }

    .home-hero-title-line {
        display: inline;
        white-space: normal;
    }

    .home-hero-card {
        width: min(100%, 390px);
    }

    .home-hero-reviews {
        margin-top: 18px;
        width: 100%;
    }

    .home-review-card {
        padding: 18px 18px 16px;
    }

    .home-review-quote {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .home-hero-floating {
        padding: 14px 16px;
    }

    .home-services-list {
        gap: 22px;
    }

    .home-faq .faq-item,
    .home-faq .faq-lead-toggle {
        border-radius: 28px;
    }

    .home-faq .faq-item summary,
    .home-faq .faq-lead-toggle summary {
        min-height: auto;
        padding-right: 52px;
    }

    .home-callout-card {
        max-width: none;
        transform: none;
    }

    .booking-platform-grid,
    .home-booking-fields {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-showcase,
    .showcase-board,
    .showcase-card,
    .showcase-dots span,
    .home-review-card,
    .home-service-row,
    .home-service-row h3,
    .home-service-row .home-service-picture,
    .home-service-row p:last-child {
        animation: none !important;
        transform: none !important;
    }

    .home-service-row {
        filter: none !important;
        opacity: 1 !important;
    }

    .home-service-row .home-service-picture,
    .home-service-row p:last-child {
        opacity: 1 !important;
    }
}
