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

:root {
    --cream: #f7f4ee;
    --cream-dark: #ede8dc;
    --ink: #1c1a16;
    --ink-soft: #4a4640;
    --ink-muted: #8c8680;
    --sage: #5c7a6b;
    --sage-light: #eaf0ec;
    --rust: #b85c38;
    --rust-light: #f5eae4;
    --border: rgba(28, 26, 22, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(247, 244, 238, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: "Lora", serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
}

.nav-cta {
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 100px;
    padding: 10px 24px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-cta:hover {
    opacity: 0.82;
}

/* SECTIONS */
section {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.hero {
    min-height: 90vh;
    padding-top: 160px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 100%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
    background: var(--sage-light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.7s 0.1s forwards;
}

.hero-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
}

.hero-h1 {
    font-family: "Lora", serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 800px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--sage);
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 0.7s 0.35s forwards;
}

.hero-form {
    display: flex;
    gap: 12px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
}

.hero-input {
    flex: 1;
    max-width: 360px;
    height: 52px;
    padding: 0 20px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: white;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}

.hero-input:focus {
    border-color: var(--sage);
}

.hero-input::placeholder {
    color: var(--ink-muted);
}

.hero-btn {
    height: 52px;
    padding: 0 32px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 100px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform 0.15s,
        opacity 0.15s;
}

.hero-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.hero-btn:active {
    transform: translateY(0);
}

.hero-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--ink-muted);
    opacity: 0;
    animation: fadeUp 0.7s 0.65s forwards;
}

.hero-bg-text {
    position: absolute;
    right: -20px;
    bottom: 80px;
    font-family: "Lora", serif;
    font-size: 180px;
    font-weight: 600;
    color: var(--cream-dark);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* PROBLEM */
.problem {
    background: var(--ink);
    border-radius: 32px;
    max-width: 1104px;
    margin: 0 auto;
    padding: 96px;
    color: var(--cream);
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.problem .section-label {
    color: rgba(247, 244, 238, 0.4);
}

.problem h2 {
    font-family: "Lora", serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--cream);
    max-width: 640px;
    margin-bottom: 64px;
}

.problem h2 em {
    font-style: italic;
    color: #b8a98a;
}

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

.problem-item {
    padding: 40px 36px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transition: background 0.2s;
}

.problem-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 24px;
}

.problem-item h3 {
    font-family: "Lora", serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.3;
}

.problem-item p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(247, 244, 238, 0.55);
}

.problem-stat {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 48px;
}

.stat-big {
    font-family: "Lora", serif;
    font-size: 72px;
    font-weight: 500;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.04em;
    flex-shrink: 0;
}

.stat-big span {
    font-size: 40px;
}

.stat-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(247, 244, 238, 0.6);
    max-width: 420px;
}

.stat-desc strong {
    color: var(--cream);
    font-weight: 500;
}

/* SOLUTION */
.solution-section {
    padding: 120px 48px;
}

.solution-inner {
    max-width: 1104px;
    margin: 0 auto;
}

.solution-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 80px;
}

.solution-header h2 {
    font-family: "Lora", serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.solution-header h2 em {
    font-style: italic;
    color: var(--sage);
}

.solution-header p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    padding-bottom: 8px;
}

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

.step {
    padding: 40px 36px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(28, 26, 22, 0.07);
}

.step-num {
    font-family: "Lora", serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.step-icon.sage {
    background: var(--sage-light);
}

.step-icon.rust {
    background: var(--rust-light);
}

.step-icon.cream {
    background: var(--cream-dark);
}

.step h3 {
    font-family: "Lora", serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1.3;
}

.step p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.step-connector {
    margin-right: 5.5px;
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    color: var(--ink-muted);
    font-size: 20px;
    z-index: 2;
}

/* TESTIMONIALS */
.reviews-section {
    padding: 120px 48px;
}

.reviews-inner {
    max-width: 1104px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.reviews-header h2 {
    font-family: "Lora", serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
    max-width: 480px;
}

.reviews-header h2 em {
    font-style: italic;
    color: var(--sage);
}

.reviews-meta {
    font-size: 14px;
    color: var(--ink-muted);
    text-align: right;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    padding: 36px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-card.featured {
    background: var(--ink);
    color: var(--cream);
    border-color: transparent;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    color: #d4a843;
    font-size: 14px;
}

.review-card.featured .review-stars {
    color: #e8c86a;
}

.review-text {
    font-family: "Lora", serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    font-style: italic;
    flex: 1;
    margin-bottom: 28px;
}

.review-card.featured .review-text {
    color: rgba(247, 244, 238, 0.8);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lora", serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-soft);
    flex-shrink: 0;
}

.review-card.featured .review-avatar {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.review-card.featured .review-name {
    color: var(--cream);
}

.review-role {
    font-size: 12px;
    color: var(--ink-muted);
}

.review-card.featured .review-role {
    color: rgba(247, 244, 238, 0.45);
}

/* FORM */
.form-section {
    padding: 120px 48px;
    background: var(--sage-light);
    border-radius: 0;
}

.form-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
    background: white;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    border: 1px solid rgba(92, 122, 107, 0.2);
}

.form-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
}

.form-section h2 {
    font-family: "Lora", serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 20px;
}

.form-section h2 em {
    font-style: italic;
    color: var(--sage);
}

.form-desc {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 480px;
    margin: 0 auto;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    padding-left: 6px;
}

.form-input_mt {
    margin-top: 10px;
}

.form-input {
    width: 100%;
    height: 54px;
    padding: 0 22px;
    border: 1.5px solid rgba(92, 122, 107, 0.25);
    border-radius: 100px;
    background: white;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--sage);
}

.form-input::placeholder {
    color: var(--ink-muted);
}

.form-textarea {
    width: 100%;
    min-height: 80px;
    padding: 16px 22px;
    border: 1.5px solid rgba(92, 122, 107, 0.25);
    border-radius: 20px;
    background: white;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    resize: none;
    line-height: 1.6;
    transition: border-color 0.2s;
}

.form-textarea:focus {
    border-color: var(--sage);
}

.form-textarea::placeholder {
    color: var(--ink-muted);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
}

.form-divider::before,
.form-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(92, 122, 107, 0.2);
}

.form-divider span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--sage);
    background: var(--sage-light);
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

.form-submit {
    width: 100%;
    height: 54px;
    background: var(--sage);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition:
        background 0.2s,
        transform 0.15s;
}

.form-submit:hover {
    background: #4a6959;
    transform: translateY(-1px);
}

.form-submit:active {
    transform: translateY(0);
}

.form-privacy {
    font-size: 12px;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 8px;
    line-height: 1.6;
}

.form-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.counter-avatars {
    display: flex;
}

.counter-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 2px solid white;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lora", serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-soft);
}

.counter-avatar:first-child {
    margin-left: 0;
}

.counter-text {
    font-size: 13px;
    color: var(--ink-soft);
}

.counter-text strong {
    color: var(--ink);
    font-weight: 600;
}

/* FOOTER */
footer {
    padding: 40px 48px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: "Lora", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

.footer-note {
    font-size: 13px;
    color: var(--ink-muted);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }

    section {
        padding: 80px 20px;
    }

    .hero-inner {
        padding: 0 20px;
    }

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

    .hero-input {
        max-width: 100%;
    }

    .problem {
        padding: 48px 24px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .solution-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-connector {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .problem-stat {
        flex-direction: column;
        gap: 16px;
    }

    .stat-big {
        font-size: 52px;
    }

    .solution-section {
        padding: 80px 20px;
    }

    .reviews-section {
        padding: 80px 20px;
    }

    .form-section {
        padding: 80px 20px;
    }

    footer {
        padding: 32px 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-bg-text {
        display: none;
    }
}
