:root {
    --cream: #f7e4da;
    --cream-soft: #fbf0e9;
    --white: #ffffff;
    --ink: #201b17;
    --ink-soft: #6b615a;
    --line: #e9ddd1;
    --line-soft: #f0e5da;
    --orange: #d97a46;
    --orange-dark: #bd6636;
    --orange-tint: #f3d9c7;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --shadow-card:
        0 1px 2px rgba(32, 27, 23, 0.04),
        0 12px 28px -18px rgba(32, 27, 23, 0.22);
    --display: "Plus Jakarta Sans", system-ui, sans-serif;
    --body: "Inter", system-ui, sans-serif;
    --script: "Caveat", cursive;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}
h1,
h2,
h3,
h4 {
    font-family: var(--display);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--ink);
}
p {
    margin: 0;
    line-height: 1.65;
    color: var(--ink-soft);
}
.eyebrow {
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-dark);
    display: block;
    margin-bottom: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.94rem;
    border: 1.5px solid transparent;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
    white-space: nowrap;
}
.btn:focus-visible {
    outline: 2.5px solid var(--orange-dark);
    outline-offset: 3px;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}
.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
}
.btn-outline.on-cream {
    border-color: rgba(32, 27, 23, 0.35);
}
.btn-link {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-link svg {
    transition: transform 0.18s ease;
}
.btn-link:hover svg {
    transform: translateX(3px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    font-family: var(--script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.18s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}
.has-dropdown button {
    background: none;
    border: none;
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
}
.has-dropdown svg {
    transition: transform 0.18s ease;
}
.has-dropdown.open svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
}
.dropdown-menu a::after {
    display: none;
}
.dropdown-menu a:hover {
    background: var(--cream-soft);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
}
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .header-actions .btn-outline {
        display: none;
    }
}
.mobile-panel {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 0 32px 22px;
    border-bottom: 1px solid var(--line-soft);
}
.mobile-panel.open {
    display: flex;
}
.mobile-panel a,
.mobile-panel button.mp-link {
    padding: 12px 4px;
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
}
.mobile-panel .btn {
    margin-top: 14px;
    justify-content: center;
}

section {
    padding: 88px 0;
}
.section-head {
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
}
.section-head p {
    margin-top: 14px;
}
.section-head.left {
    margin: 0 0 44px;
    text-align: left;
    max-width: 640px;
}

/* Hero */
.page-hero {
    background: var(--cream);
    padding: 64px 0 0;
    overflow: hidden;
}
.hero-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 32px;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
}
.hero-copy p {
    max-width: 560px;
    margin: 20px auto 0;
    font-size: 1.05rem;
}
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.hero-image {
    margin-top: 52px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    height: min(46vw, 360px);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Path tabs */
.path-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    border-bottom: 1px solid var(--line);
}
.tab-btn {
    background: none;
    border: none;
    padding: 14px 22px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink-soft);
    position: relative;
    top: 1px;
    border-bottom: 2px solid transparent;
    transition:
        color 0.18s ease,
        border-color 0.18s ease;
}
.tab-btn:hover {
    color: var(--ink);
}
.tab-btn.active {
    color: var(--ink);
    border-bottom-color: var(--orange);
}
.path-panel {
    display: none;
    animation: fadeUp 0.4s ease both;
}
.path-panel.active {
    display: block;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 44px;
}
.intro-row h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    margin-bottom: 14px;
}
.intro-row p {
    margin-bottom: 0;
}
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
}
.benefit-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--orange-tint);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-item span {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
}
@media (max-width: 820px) {
    .intro-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Partner type cards */
.type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.type-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    box-shadow: var(--shadow-card);
}
.type-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--orange-tint);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.type-card h4 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}
.type-card p {
    font-size: 0.88rem;
}
@media (max-width: 980px) {
    .type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .type-grid {
        grid-template-columns: 1fr;
    }
}

/* Steps */
.steps-section {
    background: var(--cream-soft);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}
.step-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    box-shadow: var(--shadow-card);
}
.step-num-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.92rem;
}
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Form */
.form-section .wrap {
    max-width: 820px;
}
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 48px;
    box-shadow: var(--shadow-card);
}
.form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-card > p {
    margin-bottom: 30px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.field label {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--ink);
}
.field input,
.field select,
.field textarea {
    font-family: var(--body);
    font-size: 0.95rem;
    padding: 12px 15px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--cream-soft);
    color: var(--ink);
    transition:
        border-color 0.18s ease,
        background 0.18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}
.field textarea {
    resize: vertical;
    min-height: 110px;
    font-family: var(--body);
}
.field.full {
    grid-column: 1/-1;
}
.form-foot {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.form-note {
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: #f1f7ee;
    border: 1px solid #cfe3c4;
    color: #3a6b2a;
    padding: 16px 18px;
    border-radius: 14px;
    margin-top: 20px;
    font-size: 0.92rem;
}
.form-success.show {
    display: flex;
}
.form-panel {
    display: none;
}
.form-panel.active {
    display: block;
}
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 32px 26px;
    }
}

footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 56px 0 30px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 36px;
}
.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
}
.footer-nav a:hover {
    color: var(--ink);
}
.social-row {
    display: flex;
    gap: 12px;
}
.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: all 0.18s ease;
}
.social-row a:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.disclaimer {
    border-top: 1px solid var(--line-soft);
    padding: 26px 0;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 900px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid var(--line-soft);
    padding-top: 22px;
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.legal-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.legal-links a:hover {
    color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 600px) {
    section {
        padding: 60px 0;
    }
    .wrap {
        padding: 0 20px;
    }
}
