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

:root {
    --cream:    #FAF7F2;
    --cream-2:  #F2EDE3;
    --cream-3:  #E8DFD0;
    --ink:      #1C1812;
    --ink-2:    #3A342A;
    --ink-3:    #6B6057;
    --amber:    #C4872A;
    --amber-lt: #E8B96A;
    --amber-bg: #FDF3E3;
    --warm:     #8B6F47;
}

html { background-color: var(--ink); }
body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    min-height: 100vh;
}

/* ─── HEADER ─── */
header {
    background: var(--ink);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--amber-lt);
    letter-spacing: 0.02em;
}
.logo span { color: var(--cream-3); font-weight: 400; }
.header-tagline {
    font-size: 0.78rem;
    color: var(--ink-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
    background: var(--ink-2);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(196,135,42,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(196,135,42,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    background: rgba(196,135,42,0.15);
    color: var(--amber-lt);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(196,135,42,0.3);
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--amber-lt); }
.hero-sub {
    font-size: 1rem;
    color: var(--cream-3);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}
.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--amber);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.06em;
    opacity: 0.8;
}
.hero-scroll::after { content: '↓'; }

/* ─── MAIN ─── */
main {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 2rem;
    padding-top: 2rem;
}

/* ─── SECTION HEADER ─── */
.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.section-lead {
    color: var(--ink-3);
    font-size: 0.95rem;
    max-width: 560px;
    margin-bottom: 2rem;
}
.divider {
    width: 48px;
    height: 2px;
    background: var(--amber);
    border: none;
    margin: 0 0 2rem;
    border-radius: 2px;
}

/* ─── PROBLEM STRIP ─── */
.problem-strip {
    background: var(--ink);
    border-radius: 16px;
    padding: 2.25rem 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.problem-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 10% 50%, rgba(196,135,42,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.problem-strip p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    color: var(--cream);
    line-height: 1.5;
    font-style: italic;
    max-width: 640px;
}
.problem-strip p em {
    color: var(--amber-lt);
    font-style: normal;
}

/* ─── INFO CARDS ─── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 3.5rem;
}
.card {
    background: #fff;
    border: 1px solid var(--cream-3);
    border-radius: 12px;
    padding: 1.4rem 1.5rem;
}
.card-icon { font-size: 1.3rem; margin-bottom: 0.6rem; }
.card-title {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.35rem;
}
.card-body { font-size: 0.88rem; color: var(--ink-2); line-height: 1.6; }

/* ─── HOW IT WORKS ─── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.step { display: flex; flex-direction: column; gap: 0.6rem; }
.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--cream-3);
    line-height: 1;
}
.step-title { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.step-desc { font-size: 0.82rem; color: var(--ink-3); line-height: 1.6; }

/* ─── STATS BAR ─── */
.stats-bar {
    background: var(--amber-bg);
    border: 1px solid rgba(196,135,42,0.2);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--ink-3);
    letter-spacing: 0.06em;
    margin-top: 0.35rem;
    display: block;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}
.testimonial {
    background: #fff;
    border: 1px solid var(--cream-3);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-quote {
    font-size: 0.9rem;
    color: var(--ink-2);
    line-height: 1.7;
    flex: 1;
}
.testimonial-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--amber-lt);
    line-height: 0.5;
    display: block;
    margin-bottom: 0.75rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cream-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--warm);
    flex-shrink: 0;
}
.testimonial-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink);
    display: block;
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--ink-3);
    display: block;
}

/* ─── TESTIMONIALS PLACEHOLDER NOTE ─── */
.placeholder-note {
    font-size: 0.73rem;
    color: var(--ink-3);
    background: var(--cream-2);
    border: 1px dashed var(--cream-3);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    margin-top: -0.5rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

/* ─── ABOUT ME ─── */
.about-block {
    background: var(--cream-2);
    border: 1px solid var(--cream-3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}
.about-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ink-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--amber-lt);
    flex-shrink: 0;
}
.about-content { flex: 1; min-width: 200px; }
.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
}
.about-role {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
    display: block;
}
.about-text {
    font-size: 0.88rem;
    color: var(--ink-2);
    line-height: 1.7;
}

/* ─── PRICING ─── */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 4rem;
    align-items: start;
}
.pricing-card {
    background: #fff;
    border: 1px solid var(--cream-3);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card--active {
    border-color: var(--amber);
    box-shadow: 0 0 0 1px var(--amber), 0 8px 32px rgba(196,135,42,0.18);
    transform: translateY(-4px);
}
.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-tier {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}
.pricing-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink-3);
    margin-left: 0.2rem;
}
.pricing-maintenance {
    display: grid;
    grid-template-rows: 0fr;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.82rem;
    color: var(--warm);
    letter-spacing: 0.03em;
transition:
grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1),
opacity            0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
margin-top         0.45s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}
.pricing-maintenance > span { overflow: hidden; display: block; }
.pricing-maintenance.is-visible { grid-template-rows: 1fr; opacity: 1; }
.pricing-card--active .pricing-maintenance.is-visible { color: var(--amber); font-weight: 500; }
.pricing-period { font-size: 0.78rem; color: var(--ink-3); margin-bottom: 0; }
.pricing-features {
    margin-top: 0.7rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: var(--ink-2);
    margin-bottom: 1.75rem;
    flex: 1;
}
.pricing-features .muted { color: var(--ink-3); opacity: 0.55; }
.pricing-btn {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.7rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-btn--filled { background: var(--amber); color: #fff; }
.pricing-btn--filled:hover { background: var(--amber-lt); }
.pricing-btn--outline { background: transparent; color: var(--amber); border: 1px solid var(--amber); }
.pricing-btn--outline:hover { background: var(--amber-bg); }
.pricing-card--active .pricing-btn--outline { background: var(--amber); color: #fff; border-color: var(--amber); }

/* ─── MAINTENANCE ADDON ─── */
.maintenance-addon { margin-top: -2rem; margin-bottom: 0.1rem; }
.maintenance-option { display: block; cursor: pointer; }
.maintenance-option input { position: absolute; opacity: 0; pointer-events: none; }
.maintenance-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--cream-3);
    border-radius: 16px;
    padding: 1.3rem 1.5rem;
    transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.maintenance-option:hover .maintenance-card { border-color: rgba(196,135,42,0.45); }
.maintenance-option input:checked + .maintenance-card {
    border-color: var(--amber);
    box-shadow: 0 0 0 1px var(--amber), 0 8px 32px rgba(196,135,42,0.16);
    transform: translateY(-2px);
}
.maintenance-box {
    width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.15rem;
    border-radius: 6px; border: 1.5px solid var(--cream-3); background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    color: transparent;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.maintenance-option input:checked + .maintenance-card .maintenance-box {
    background: var(--amber); border-color: var(--amber); color: #fff;
}
.maintenance-copy { flex: 1; }
.maintenance-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 0.35rem;
}
.maintenance-title-wrap { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.maintenance-title { font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.maintenance-badge {
    background: var(--amber-bg); color: var(--amber);
    border: 1px solid rgba(196,135,42,0.22);
    font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 100px;
}
.maintenance-price {
    font-family: 'Playfair Display', serif; font-size: 1.45rem;
    font-weight: 600; color: var(--ink); white-space: nowrap; line-height: 1;
}
.maintenance-price span {
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
    font-weight: 400; color: var(--ink-3); margin-left: 0.2rem;
}
.maintenance-desc { font-size: 0.84rem; color: var(--ink-3); line-height: 1.65; }
@media (max-width: 640px) {
    .maintenance-top { flex-direction: column; align-items: flex-start; }
    .maintenance-price { font-size: 1.3rem; }
}

/* ─── PLANNED FEATURES NOTE ─── */
.planned-note {
    margin-top: 1.25rem; margin-bottom: 0;
    display: flex; align-items: flex-start; gap: 0.55rem;
}
.planned-note-asterisk {
    position: relative; top: 5px; font-size: 0.72rem;
    color: var(--ink-3); opacity: 0.55; line-height: 1.9;
    flex-shrink: 0; user-select: none;
}
.planned-note-text { font-size: 0.75rem; color: var(--ink-3); opacity: 0.6; line-height: 1.7; }
.planned-note-text strong { color: var(--ink-3); font-weight: 500; opacity: 0.85; }
.planned-details {
    margin-top: 0.45rem;
    border-top: 1px dashed rgba(107,96,87,0.18);
    padding-top: 0.7rem;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease;
    opacity: 0;
}
.planned-details.is-open { grid-template-rows: 1fr; opacity: 1; margin-bottom: 50px; }
.planned-details-inner { overflow: hidden; }
.planned-features-list {
    list-style: none; display: flex; flex-direction: column;
    gap: 0.55rem; padding-bottom: 0.25rem;
}
.planned-features-list li { display: flex; align-items: flex-start; gap: 0.65rem; }
.planned-feat-icon { font-size: 0.95rem; flex-shrink: 0; line-height: 1.5; }
.planned-feat-body { display: flex; flex-direction: column; gap: 0.1rem; }
.planned-feat-name { font-size: 0.78rem; font-weight: 500; color: var(--ink-2); }
.planned-feat-desc { font-size: 0.74rem; color: var(--ink-3); line-height: 1.6; }
.planned-toggle {
    background: none; border: none; padding: 0; cursor: pointer;
    color: var(--ink-3); opacity: 0.5; font-size: 0.74rem;
    letter-spacing: 0.06em; display: inline-flex; align-items: center;
    gap: 0.3rem; margin-top: 0.2rem; transition: opacity 0.2s;
    text-decoration: underline; text-decoration-style: dotted;
    text-underline-offset: 2px;
}
.planned-toggle:hover { opacity: 0.85; }
.planned-toggle-arrow {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    font-style: normal;
}
.planned-toggle.is-open .planned-toggle-arrow { transform: rotate(180deg); }

/* ─── GUARANTEE ─── */
.guarantee-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--ink-2);
    border: 1px solid rgba(196,135,42,0.18);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
}
.guarantee-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 120% at 5% 50%, rgba(196,135,42,0.10) 0%, transparent 65%);
    pointer-events: none;
}
.guarantee-shield-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(196,135,42,0.12);
    border: 1px solid rgba(196,135,42,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-lt);
    position: relative;
    z-index: 1;
}
.guarantee-copy {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.guarantee-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}
.guarantee-days {
    font-family: 'Playfair Display', serif;
    color: var(--amber-lt);
    font-style: italic;
}
.guarantee-text {
    font-size: 0.82rem;
    color: var(--cream-3);
    line-height: 1.55;
    opacity: 0.7;
    max-width: 100%;
}
.guarantee-tag {
    flex-shrink: 0;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(196,135,42,0.1);
    border: 1px solid rgba(196,135,42,0.2);
    border-radius: 100px;
    padding: 0.28rem 0.75rem;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
@media (max-width: 480px) {
    .guarantee-tag { display: none; }
}

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 3.5rem; }
.faq-item {
    border-bottom: 1px solid var(--cream-3);
}
.faq-item:first-child { border-top: 1px solid var(--cream-3); }
.faq-btn {
    width: 100%; background: none; border: none; padding: 1.1rem 0;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; cursor: pointer; text-align: left;
}
.faq-question {
    font-size: 0.92rem; font-weight: 500; color: var(--ink); line-height: 1.4;
}
.faq-arrow {
    width: 24px; height: 24px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--amber);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease;
    opacity: 0;
}
.faq-answer-inner { overflow: hidden; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; opacity: 1; }
.faq-answer-text {
    font-size: 0.86rem; color: var(--ink-3); line-height: 1.7;
    padding-bottom: 1.1rem;
}

/* ─── CONTACT FORM ─── */
.contact-block {
    background: var(--ink-2);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 0;
}
.contact-block .section-title { color: var(--cream); }
.contact-block .section-label { color: var(--amber-lt); }
.contact-block .divider { background: var(--amber); }
.contact-lead {
    font-size: 0.9rem; color: var(--cream-3);
    margin-bottom: 1.75rem; font-weight: 300; line-height: 1.6;
}
.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label {
    font-size: 0.73rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--cream-3); opacity: 0.7;
}
.form-input, .form-textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(250,247,242,0.3); }
.form-input:focus, .form-textarea:focus {
    border-color: var(--amber);
    background: rgba(255,255,255,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}
.form-submit:hover { background: var(--amber-lt); }
.form-note {
    font-size: 0.74rem; color: var(--cream-3);
    opacity: 0.45; margin-top: 0.25rem;
}
/* STATUS MESSAGES */
.form-status {
    font-size: 0.84rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(196,135,42,0.15);
    color: var(--amber-lt);
    border: 1px solid rgba(196,135,42,0.3);
}
.form-status.error {
    display: block;
    background: rgba(200,60,60,0.15);
    color: #f09090;
    border: 1px solid rgba(200,60,60,0.3);
}

/* ─── CTA ─── */
.cta-block {
    background: var(--ink-2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}
.cta-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--cream); margin-bottom: 0.5rem;
}
.cta-block p {
    font-size: 0.9rem; color: var(--cream-3);
    margin-bottom: 1.75rem; font-weight: 300;
}
.cta-btn {
    display: inline-block; position: relative;
    background: var(--amber); color: #fff;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
    padding: 0.75rem 2rem; border-radius: 100px;
    text-decoration: none; transition: background 0.2s;
}
.cta-btn:hover { background: var(--amber-lt); }
@keyframes ctaHighlight {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.03); }
    100% { transform: scale(1); }
}
@keyframes ctaRipple {
    0%   { transform: scale(1);   opacity: 0.15; }
    100% { transform: scale(1.5); opacity: 0; }
}
.cta-btn--highlight { animation: ctaHighlight 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.cta-btn--highlight::after {
    content: ''; position: absolute; inset: 0; border-radius: 100px;
    background: var(--amber);
    animation: ctaRipple 0.8s ease-out both;
    pointer-events: none; z-index: -1;
}

/* ─── FOOTER ─── */
footer {
    background: var(--cream-2);
    border-top: 1px solid var(--cream-3);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--ink-3);
}
footer strong { color: var(--warm); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero > * { animation: fadeUp 0.6s ease both; }
.hero .hero-badge  { animation-delay: 0.05s; }
.hero h1           { animation-delay: 0.15s; }
.hero .hero-sub    { animation-delay: 0.25s; }
.hero .hero-scroll { animation-delay: 0.35s; }

/* ─── FLOATING DEMO POINTER ─── */
.demo-pointer {
    position: fixed; bottom: 80px; right: 4px; z-index: 9999;
    display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
    pointer-events: none; transform-origin: bottom center;
    opacity: 1; transform: rotate(-12deg) translateY(0) scale(1);
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 1, 1),
                transform 0.4s cubic-bezier(0.4, 0, 1, 1),
                visibility 0s linear 0s;
}
.demo-pointer.is-hidden {
    opacity: 0; transform: rotate(-12deg) translateY(16px) scale(0.88);
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 1, 1),
                transform 0.4s cubic-bezier(0.4, 0, 1, 1),
                visibility 0s linear 0.4s;
}
@keyframes pointerBounceIn {
    0%   { opacity: 0; transform: rotate(-12deg) translateY(20px) scale(0.8); }
    55%  { opacity: 1; transform: rotate(-12deg) translateY(-7px) scale(1.07); }
    75%  { transform: rotate(-12deg) translateY(3px) scale(0.97); }
    100% { opacity: 1; transform: rotate(-12deg) translateY(0) scale(1); }
}
.demo-pointer.is-bouncing { animation: pointerBounceIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both; }
.demo-pointer-label {
    background: var(--ink); color: var(--amber-lt);
    font-family: 'DM Sans', sans-serif; font-size: 0.68rem;
    font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
    padding: 0.3rem 0.9rem; border-radius: 100px; white-space: nowrap;
    border: 1px solid rgba(196,135,42,0.35);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    animation: labelFloat 2.6s ease-in-out infinite;
}
.demo-pointer-arrow {
    width: 18px; height: 24px; position: relative;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    animation: labelFloat 2.6s ease-in-out infinite; animation-delay: 0.08s;
}
.demo-pointer-arrow::before, .demo-pointer-arrow::after {
    content: ''; display: block; width: 8px; height: 8px;
    border-right: 2px solid var(--amber); border-bottom: 2px solid var(--amber);
    transform: rotate(45deg); opacity: 0.9;
}
.demo-pointer-arrow::after { opacity: 0.45; margin-top: -12px; }
@keyframes labelFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(5px); }
}