:root {
    color-scheme: light;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111111;
    background: #f7f7f5;
    --bg: #f7f7f5;
    --surface: #ffffff;
    --text: #111111;
    --muted: #666666;
    --accent: #c59d5f;
    --border: rgba(17, 17, 17, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto auto;
    top: 0;
    z-index: 10;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.phone-link {
    font-weight: 600;
}

main {
    padding-top: 100px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
    padding: 100px 8% 80px;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 0 24px;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.02;
}

.hero-text {
    max-width: 520px;
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 1.05rem;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.badge {
    padding: 12px 18px;
    background: var(--surface);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    font-size: 0.95rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--text);
    color: #fff;
}

.btn-muted {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
}

.hero-image {
    width: 100%;
}

.hero-image img {
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
    width: 100%;
    height: auto;
    object-fit: cover;
}

section {
    padding: 80px 8%;
}

h2 {
    margin: 0 auto 40px;
    max-width: 900px;
    font-size: clamp(2rem, 2.5vw, 3rem);
    text-align: center;
}

.grid,
.steps,
.brands {
    display: grid;
    gap: 24px;
}

.cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.step {
    background: var(--surface);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.step:hover {
    transform: translateY(-4px);
}

.card h3,
.step p {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.brands {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-items: center;
}

.brands span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
    font-weight: 600;
}

.steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step {
    text-align: center;
    padding-top: 30px;
}

.step-number {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 22px;
    font-weight: 700;
}

.request-form {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.field-group {
    display: grid;
    gap: 10px;
}

label {
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    padding: 18px 20px;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
button:focus-visible {
    outline: 3px solid rgba(197, 157, 95, 0.25);
    outline-offset: 3px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.hint {
    color: var(--muted);
    font-size: 0.95rem;
}

.form-error {
    background: #fff0f0;
    border: 1px solid #f1c0c0;
    color: #8c1d1d;
    padding: 16px 20px;
    border-radius: 16px;
}

.photo-summary {
    color: var(--muted);
    font-size: 0.95rem;
    min-height: 1.2rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.success-page,
.error-page {
    padding: 120px 8% 80px;
}

.success-card,
.error-card {
    margin: 0 auto;
    max-width: 560px;
    background: var(--surface);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
    padding: 54px 40px;
    text-align: center;
}

.success-card h1,
.error-card h1 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 70px 8%;
    text-align: center;
}

.site-footer a {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
    }

    .cards-grid,
    .steps,
    .brands {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 680px) {
    .site-header,
    section,
    .success-page,
    .error-page {
        padding-left: 6%;
        padding-right: 6%;
    }

    .site-header {
        padding: 18px 6%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
