:root {
    --ink: #111009;
    --parch: #f6f1e8;
    --warm: #ede4d3;
    --card: #faf7f2;
    --terra: #b85828;
    --forest: #243d2f;
    --gold: #c8a84a;
    --mid: #7a6e5f;
    --border: rgba(184, 88, 40, 0.13);
    --r: 18px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "DM Sans", sans-serif;
    background: var(--parch);
    color: var(--ink);
}


/* HERO */
.hero {
    background: var(--forest);
    color: #fff;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 80% at 50% 50%,
        rgba(184, 88, 40, 0.15),
        transparent 70%
    );
}
.hero-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}
.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 14px;
}
.hero h1 em {
    font-style: italic;
    color: rgba(200, 168, 74, 0.9);
}
.hero p {
    font-size: 0.92rem;
    opacity: 0.65;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* SECTIONS */
section {
    padding: 80px 40px;
}
.wrap {
    max-width: 1060px;
    margin: 0 auto;
}
.sec-tag {
    display: inline-block;
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 12px;
}
.sec-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 12px;
}
.sec-title em {
    font-style: italic;
    color: var(--terra);
}
.sec-sub {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 520px;
}

/* STEPS */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 60px;
}
.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--warm);
}
.step-row:last-child {
    border-bottom: 1px solid var(--warm);
}
.step-row.reverse {
    direction: rtl;
}
.step-row.reverse > * {
    direction: ltr;
}
.step-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(184, 88, 40, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}
.step-tag {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 100px;
    background: rgba(184, 88, 40, 0.1);
    color: var(--terra);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.step h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 12px;
}
.step p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 14px;
}
.step-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.sf {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.83rem;
    color: var(--ink);
}
.sf-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    flex-shrink: 0;
    margin-top: 6px;
}
.step-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(17, 16, 9, 0.12);
    border: 1px solid var(--border);
    background: var(--card);
}
.step-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.step-visual-body {
    padding: 18px 20px;
}
.svb-title {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--terra);
    margin-bottom: 8px;
}
.svb-content {
    font-size: 0.84rem;
    color: var(--ink);
    line-height: 1.6;
}

/* AI DEMO */
.ai-demo {
    background: var(--card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(17, 16, 9, 0.07);
}
.ai-demo-head {
    background: var(--forest);
    color: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ai-demo-head span {
    font-size: 0.8rem;
    opacity: 0.6;
}
.ai-demo-badge {
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.68rem;
}
.ai-msg {
    padding: 14px 18px;
    border-bottom: 1px solid var(--warm);
    font-size: 0.82rem;
    line-height: 1.6;
}
.ai-msg.user {
    background: var(--parch);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.ai-msg.ai {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.msg-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
}
.msg-avatar.u {
    background: var(--mid);
}
.msg-avatar.a {
    background: var(--terra);
}
.ai-typing {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}
.ai-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    opacity: 0.4;
    animation: pop 1.2s ease-in-out infinite;
}
.ai-typing span:nth-child(2) {
    animation-delay: 0.2s;
}
.ai-typing span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes pop {
    0%,
    80%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* PARTNERS GRID */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 32px;
}
.partner-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s;
}
.partner-card:hover {
    box-shadow: 0 4px 20px rgba(17, 16, 9, 0.08);
    transform: translateY(-2px);
    border-color: rgba(184, 88, 40, 0.25);
}
.partner-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.partner-name {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.partner-cat {
    font-size: 0.68rem;
    color: var(--mid);
}
.partner-comm {
    font-size: 0.72rem;
    color: var(--forest);
    font-weight: 500;
    margin-top: 5px;
}

/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}
.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--warm);
    cursor: pointer;
}
.faq-item:first-child {
    border-top: 1px solid var(--warm);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.92rem;
    font-weight: 600;
}
.faq-icon {
    font-size: 1.1rem;
    color: var(--terra);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-a {
    font-size: 0.84rem;
    color: var(--mid);
    line-height: 1.7;
    margin-top: 12px;
    display: none;
}
.faq-item.open .faq-a {
    display: block;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* CTA */
.cta {
    background: var(--terra);
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}
.cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
}
.cta h2 em {
    font-style: italic;
}
.cta p {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 28px;
}
.btn-cta {
    padding: 14px 32px;
    border-radius: 100px;
    background: #fff;
    color: var(--terra);
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}
.btn-cta:hover {
    background: var(--forest);
    color: #fff;
    transform: translateY(-1px);
}

footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.5);
    padding: 32px 40px;
    text-align: center;
    font-size: 0.78rem;
}
footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    color: var(--terra);
}


