:root {
    --cream: #fff8ef;
    --sand: #f3dfc8;
    --soft: #fff1e2;
    --paper: #ffffff;
    --clay: #a73420;
    --clay-dark: #742116;
    --brown: #351711;
    --muted: #6d4f45;
    --line: #ead0bd;
    --shadow: 0 18px 45px rgba(53, 23, 17, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--brown);
    font-family: Arial, Helvetica, sans-serif;
}

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

a {
    color: inherit;
}

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

h1,
h2,
h3 {
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.03em;
}

p,
li {
    line-height: 1.7;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 82px;
    padding: 12px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 248, 239, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(53, 23, 17, 0.05);
}

.brand img {
    height: 80px;
    max-width: 200px;
    object-fit: contain;
}

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

.nav a {
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    color: #2b1a15;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--clay);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1;
    transition: all 0.2s ease;
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
    opacity: 0.96;
}

.header-cta,
.button-primary {
    background: var(--clay);
    color: white;
    box-shadow: 0 12px 24px rgba(167, 52, 32, 0.22);
}

.button-secondary {
    color: var(--clay-dark);
    border: 2px solid var(--clay);
    background: rgba(255, 248, 239, 0.85);
}

.hero {
    padding: 78px 7%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 34px;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(255, 225, 189, 0.95), transparent 36%),
        linear-gradient(135deg, #fff8ef 0%, #f5dac0 48%, #c96a3d 100%);
}

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

.eyebrow {
    margin-bottom: 12px;
    color: var(--clay-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.02;
    color: #2f120c;
}

.hero-text {
    max-width: 640px;
    margin-bottom: 28px;
    color: #4b3027;
    font-size: 19px;
    line-height: 1.7;
}

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

.hero-image img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 8px solid rgba(255, 255, 255, 0.65);
}

.section {
    padding: 72px 7%;
}

.section-intro {
    margin-bottom: 34px;
}

.section-intro.narrow {
    max-width: 780px;
}

.section-intro.center {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section h2,
.contact-section h2 {
    margin-bottom: 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    color: var(--clay-dark);
}

.section-intro p:not(.eyebrow),
.about-copy p {
    color: var(--muted);
    font-size: 18px;
}

.problem-section {
    background: var(--cream);
    border-top: 1px solid var(--line);
}

.sign-grid,
.steps-grid,
.category-grid,
.pricing-grid {
    display: grid;
    gap: 18px;
}

.sign-grid {
    grid-template-columns: repeat(6, 1fr);
}

.sign-card {
    min-height: 120px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fffdf9;
    color: #4b3027;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(53, 23, 17, 0.05);
}

.trust-section,
.how-section,
.about-section {
    background: #fffdf9;
}

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

.step-card {
    padding: 30px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(53, 23, 17, 0.06);
}

.step-card span {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--clay);
    color: white;
    border-radius: 50%;
    font-weight: 900;
}

.step-card h3,
.category-card h3,
.price-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #351711;
}

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

.category-section {
    background:
        radial-gradient(circle at top right, rgba(167, 52, 32, 0.08), transparent 32%),
        var(--cream);
}

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

.category-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(53, 23, 17, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(53, 23, 17, 0.12);
}

.category-card summary {
    cursor: pointer;
    list-style: none;
}

.category-card summary::-webkit-details-marker {
    display: none;
}

.category-card summary img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.category-card summary div {
    padding: 24px;
}

.category-card summary h3::after {
    content: " +";
    color: var(--clay);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
}

.category-card[open] summary h3::after {
    content: " −";
}

.category-details {
    padding: 0 24px 26px;
    border-top: 1px solid var(--line);
    background: #fffaf4;
}

.category-details p {
    margin: 18px 0 8px;
    font-weight: 900;
    color: var(--clay-dark);
}

.category-details ul,
.check-list,
.x-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-details li,
.check-list li,
.x-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #473029;
}

.category-details li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clay);
    font-weight: 900;
}

.x-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--clay);
    font-weight: 900;
}

.details-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #fffdf9;
}

.split-card {
    padding: 34px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(53, 23, 17, 0.06);
}

.split-card.positive {
    background: #fff8ef;
}

.split-card h2 {
    font-size: 34px;
    color: #351711;
}

.pricing-section {
    background:
        radial-gradient(circle at top right, rgba(167, 52, 32, 0.10), transparent 36%),
        var(--cream);
}

.pricing-grid.two {
    max-width: 850px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
}

.price-card {
    padding: 30px;
    position: relative;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(53, 23, 17, 0.06);
}

.price-card.featured {
    border: 2px solid var(--clay);
    transform: translateY(-8px);
}

.tag {
    display: inline-block;
    margin-bottom: 12px !important;
    padding: 7px 10px;
    background: var(--clay);
    color: white !important;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price {
    margin: 8px 0 12px !important;
    font-size: 44px;
    font-weight: 900;
    color: var(--clay) !important;
    line-height: 1;
}

.price span {
    font-size: 16px;
    color: var(--muted);
}

.pricing-notes {
    max-width: 950px;
    margin: 28px auto 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pricing-notes p {
    margin: 0;
    color: #4b3027;
}

.about-section {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 54px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-copy {
    max-width: 820px;
}

.about-copy h2 {
    color: #351711;
}

.about-copy .strong {
    color: var(--clay-dark);
    font-weight: 900;
}

.contact-section {
    margin: 0 7% 52px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: white;
    background: linear-gradient(135deg, var(--clay), var(--clay-dark));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-section h2 {
    color: white;
    margin-bottom: 10px;
}

.contact-section p {
    margin-bottom: 0;
    color: #fff0e8;
}

.contact-button {
    background: white;
    color: var(--clay-dark);
    box-shadow: none;
}

.footer {
    padding: 22px 7%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #5b170f;
    color: white;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 1050px) {
    .site-header {
        position: static;
        flex-direction: column;
    }

    .hero,
    .details-section,
    .about-section {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 760px) {

    .section,
    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .header-cta {
        width: 100%;
    }

    .sign-grid,
    .steps-grid,
    .category-grid,
    .pricing-grid.two {
        grid-template-columns: 1fr;
    }

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

    .contact-section {
        margin-left: 6%;
        margin-right: 6%;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }
}