:root {
    --bg: #FFF7EF;
    --surface: #FFFFFF;
    --bubble-user: #FFD9BE;
    --bubble-yui: #DCEFE3;
    --mint: #5E9E82;
    --mint-deep: #3E7A63;
    --coral: #FF8B5E;
    --ink: #4A3F35;
    --ink-soft: #948A7C;
    --border-soft: #F0DFC9;
    --error: #C1483A;
}

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

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-padding-top: 90px;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.85;
    font-size: 1.08rem;
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

section {
    position: relative;
    padding: 90px 20px;
    max-width: 1080px;
    margin: 0 auto;
}

@media (min-width: 1440px) {
    section {
        max-width: 1280px;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }
    .logo {
        font-size: 1.55rem;
    }
    .logo-img {
        height: 68px;
    }
    .nav a {
        font-size: 0.95rem;
        padding: 9px 18px;
    }
    .hero-copy h1 {
        font-size: 2.9rem;
    }
    .btn-main {
        padding: 17px 42px;
        font-size: 1rem;
    }
    .bubble-icon {
        width: 50px;
        height: 50px;
    }
    .bubble-icon svg {
        width: 25px;
        height: 25px;
    }
    .mail-icon {
        width: 42px;
        height: 42px;
    }
    .mail-icon svg {
        width: 22px;
        height: 22px;
    }
    .step-num {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .profile-avatar {
        width: 94px;
        height: 94px;
    }
    .hero {
        padding-left: 90px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .hero-copy {
        margin-left: 70px;
    }
}

@media (min-width: 1600px) {
    html {
        font-size: 19px;
    }
    .logo {
        font-size: 1.7rem;
    }
    .logo-img {
        height: 74px;
    }
    .nav a {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .hero-copy h1 {
        font-size: 3.2rem;
    }
    .btn-main {
        padding: 18px 46px;
        font-size: 1.05rem;
    }
    .bubble-icon {
        width: 56px;
        height: 56px;
    }
    .bubble-icon svg {
        width: 28px;
        height: 28px;
    }
    .mail-icon {
        width: 46px;
        height: 46px;
    }
    .mail-icon svg {
        width: 24px;
        height: 24px;
    }
    .step-num {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
    }
    .profile-avatar {
        width: 104px;
        height: 104px;
    }
    .workspace-photo img {
        aspect-ratio: 2.2 / 1;
    }
}

@media (min-width: 1800px) {
    html {
        font-size: 20px;
    }
    section {
        max-width: 1440px;
    }
    .logo {
        font-size: 1.8rem;
    }
    .logo-img {
        height: 92px;
    }
    .nav a {
        font-size: 1.05rem;
        padding: 11px 22px;
    }
    .hero-copy {
        flex-basis: 520px;
        max-width: 520px;
    }
    .hero-copy h1 {
        font-size: 3.5rem;
    }
    .hero-copy p {
        max-width: 420px;
    }
    .mail-card {
        max-width: 420px;
    }
    .btn-main {
        padding: 19px 50px;
        font-size: 1.1rem;
    }
    .bubble-icon {
        width: 60px;
        height: 60px;
    }
    .bubble-icon svg {
        width: 30px;
        height: 30px;
    }
    .mail-icon {
        width: 50px;
        height: 50px;
    }
    .mail-icon svg {
        width: 26px;
        height: 26px;
    }
    .step-num {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }
    .profile-avatar {
        width: 112px;
        height: 112px;
    }
    .workspace-photo img {
        aspect-ratio: 2.4 / 1;
    }
    .hero {
        min-height: 62vh;
    }
}

@media (max-width: 768px) {
    section {
        padding: 56px 20px;
    }
}

.section-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--mint-deep);
    text-wrap: balance;
}

.nowrap-ja {
    white-space: nowrap;
}

.section-lead {
    text-align: center;
    color: var(--ink-soft);
    margin-bottom: 40px;
    font-size: 0.92rem;
    text-wrap: balance;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--mint);
    outline-offset: 3px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 247, 239, 0.92);
    backdrop-filter: blur(6px);
}

.logo {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--mint-deep);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.logo-img {
    height: 62px;
    width: auto;
    display: block;
}

.logo-pop {
    display: inline-block;
    width: 30px;
    height: 30px;
    opacity: 0;
    transform: scale(0) rotate(-20deg);
    margin-left: 4px;
}

.logo-pop svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo.pop .logo-pop {
    animation: logoPop 0.7s ease;
}

.logo.pop {
    animation: logoWiggle 0.5s ease;
}

@keyframes logoWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-6deg); }
    50% { transform: rotate(5deg); }
    75% { transform: rotate(-3deg); }
}

@keyframes logoPop {
    0% { opacity: 0; transform: scale(0) rotate(-20deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(8deg); }
    70% { transform: scale(0.9) rotate(-4deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Wave divider */
.wave-divider {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--mint);
}

.wave-divider svg {
    width: 100%;
    height: 20px;
    display: block;
}

.wave-divider path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0.55;
}

/* Decorative leaf / dot accents */
.deco {
    position: absolute;
    pointer-events: none;
    color: var(--mint);
    opacity: 0.22;
    z-index: 0;
}

.deco svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.deco-leaf-1 {
    width: 46px;
    height: 46px;
    top: 8%;
    left: 2%;
    transform: rotate(-12deg);
}

.deco-dot-1 {
    width: 14px;
    height: 14px;
    top: 20%;
    right: 8%;
    color: var(--coral);
    opacity: 0.3;
}

.deco-dot-2 {
    width: 10px;
    height: 10px;
    bottom: 10%;
    left: 8%;
    opacity: 0.28;
}

.deco-leaf-2 {
    width: 38px;
    height: 38px;
    top: 2%;
    right: 3%;
    transform: rotate(20deg) scaleX(-1);
}

@media (max-width: 768px) {
    .deco {
        display: none;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--ink);
    padding: 8px 16px;
    border-radius: 999px;
    transition: background-color 0.2s ease;
}

.nav a:hover {
    background: var(--surface);
}

.nav-cta {
    background: var(--mint);
    color: var(--surface) !important;
    font-weight: 700;
}

.nav-cta:hover {
    background: var(--mint-deep) !important;
}

/* Hero */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    min-height: 80vh;
    padding-top: 40px;
}

.hero-copy {
    flex: 0 1 460px;
    max-width: 460px;
}

.eyebrow {
    display: inline-block;
    background: var(--bubble-yui);
    color: var(--mint-deep);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-copy h1 {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--ink);
}

.hero-copy p {
    color: var(--ink-soft);
    max-width: 380px;
    margin-bottom: 30px;
    text-wrap: balance;
}

.btn-main {
    display: inline-block;
    background: var(--coral);
    color: var(--surface);
    text-decoration: none;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 999px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.btn-main:hover {
    transform: translateY(-2px);
    background: #ec7846;
}

/* Hero mail preview card (旧チャットカードと同じ枠組みを流用) */
.mail-card {
    flex: 1 1 320px;
    max-width: 360px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 32px;
    border: 8px solid var(--ink);
    overflow: hidden;
    box-shadow: 0 24px 44px rgba(74, 63, 51, 0.16);
}

.mail-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--mint);
    color: var(--surface);
}

.mail-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mail-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mail-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.mail-meta {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-icon {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.mail-body {
    min-height: 340px;
    max-height: 420px;
    overflow-y: auto;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #FDFBF6;
}

@media (max-width: 768px) {
    .mail-body {
        min-height: 0;
        max-height: none;
        overflow-y: visible;
    }
    .mail-card {
        flex: 0 0 auto;
        height: auto;
    }
}

.mail-line {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--ink);
    padding-left: 12px;
    border-left: 2px solid var(--bubble-yui);
}

.mail-line.is-subject {
    font-weight: 700;
    color: var(--mint-deep);
    border-left-color: var(--mint);
}

.composing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 6px 0 6px 12px;
}

.composing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint-deep);
    opacity: 0.5;
    animation: bounce 1.2s infinite ease-in-out;
}

.composing span:nth-child(2) { animation-delay: 0.15s; }
.composing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.sent-badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 14px;
    background: var(--bubble-yui);
    color: var(--mint-deep);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.sent-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Workspace photo banner */
.workspace-photo {
    padding-top: 0;
    padding-bottom: 0;
}

.workspace-photo picture,
.workspace-photo img {
    display: block;
    width: 100%;
}

.workspace-photo img {
    width: 100%;
    aspect-ratio: 1.8 / 1;
    object-fit: cover;
    object-position: 50% 42%;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(74, 63, 51, 0.1);
}

@media (max-width: 640px) {
    .workspace-photo img {
        aspect-ratio: 4 / 5;
        object-position: 50% 45%;
    }
}

/* Feature cards */
.bubble-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 768px) {
    .bubble-grid {
        grid-template-columns: 1fr;
    }
}

.bubble-card {
    background: var(--bubble-yui);
    border-radius: 20px;
    padding: 30px 24px 30px 34px;
}

.bubble-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.bubble-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 50%;
    color: var(--mint-deep);
    flex-shrink: 0;
}

.bubble-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bubble-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--mint-deep);
}

.bubble-card p {
    font-size: 0.92rem;
    color: var(--ink);
}

/* Services menu */
.menu-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 10px 30px;
    box-shadow: 0 12px 28px rgba(74, 63, 51, 0.06);
}

.menu-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-soft);
}

.menu-row:last-child {
    border-bottom: none;
}

.menu-name {
    font-weight: 700;
    color: var(--mint-deep);
    flex: 1 1 160px;
}

.menu-desc {
    color: var(--ink-soft);
    font-size: 0.85rem;
    flex: 2 1 220px;
}

.menu-price {
    font-weight: 900;
    background: var(--bubble-user);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
}

/* Flow: 縦型ステップリスト */
.flow {
    background: var(--surface);
    border-radius: 32px;
    margin: 40px auto;
    max-width: 760px;
}

.step-list {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.step-list::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 19px;
    width: 1px;
    background: var(--border-soft);
}

.step {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.step-num {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
}

.step-body {
    max-width: 480px;
}

.step-body h3 {
    font-size: 1rem;
    color: var(--mint-deep);
    margin-bottom: 4px;
}

.step-body p {
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.welcome-bubble {
    position: relative;
    text-align: center;
    background: var(--bg);
    border-radius: 20px;
    padding: 40px;
    max-width: 640px;
    margin: 0 auto;
}

.mascot {
    position: absolute;
    top: -22px;
    right: 24px;
}

.mascot svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mascot-welcome {
    width: 46px;
    height: 46px;
}

.welcome-bubble h3 {
    color: var(--mint-deep);
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-wrap: balance;
}

.welcome-bubble p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    text-wrap: balance;
}

/* Profile card */
.profile-card {
    background: var(--surface);
    border-radius: 28px;
    padding: 50px 40px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 12px 28px rgba(74, 63, 51, 0.06);
}

.profile-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--bubble-yui);
    color: var(--mint-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.profile-avatar svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
    border-radius: 50%;
}

.profile-card h2 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.profile-handle {
    color: var(--mint-deep);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.profile-bio {
    text-align: left;
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

/* FAQ accordion */
.faq-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
}

.faq-toggle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bubble-yui);
    color: var(--mint-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--coral);
    color: var(--surface);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 22px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 22px 20px;
}

.faq-a p {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

/* Contact */
.assure-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0;
}

.assure-list li {
    background: var(--bubble-yui);
    color: var(--mint-deep);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(74, 63, 51, 0.06);
}

.form-status {
    font-size: 0.85rem;
    color: var(--mint-deep);
    min-height: 1.2em;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label,
.radio-group legend {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.req {
    color: var(--error);
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(193, 72, 58, 0.1);
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 4px;
    white-space: nowrap;
    display: inline-block;
}

.opt {
    color: var(--ink-soft);
    font-size: 0.72rem;
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 4px;
    white-space: nowrap;
    display: inline-block;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: var(--bg);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
}

.field-error {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 6px;
    min-height: 1.1em;
}

.radio-group {
    border: none;
    padding: 0;
}

.radio-group legend {
    padding: 0;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    font-size: 0.92rem;
    color: var(--ink);
}

.radio-option input {
    accent-color: var(--mint);
    width: 16px;
    height: 16px;
}

.file-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1px dashed var(--border-soft);
    border-radius: 14px;
    background: var(--bg);
    font-size: 0.88rem;
    color: var(--ink-soft);
    cursor: pointer;
}

.file-input span {
    text-wrap: balance;
}

.file-input svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    color: var(--mint-deep);
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.consent-row input {
    margin-top: 3px;
    accent-color: var(--mint);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.consent-row a {
    color: var(--mint-deep);
    font-weight: 700;
}

.btn-submit-mail {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--mint);
    color: var(--surface);
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.btn-submit-mail:hover:not(:disabled) {
    transform: translateY(-2px);
    background: var(--mint-deep);
}

.btn-submit-mail:disabled {
    opacity: 0.7;
    cursor: default;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 14px;
}

.mailto-fallback {
    text-align: center;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 24px;
}

.mailto-fallback a {
    color: var(--mint-deep);
    font-weight: 700;
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px 50px;
    font-size: 0.78rem;
    color: var(--ink-soft);
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--mint-deep);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }
    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-copy h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
    .nav {
        gap: 4px;
    }
    .nav a {
        padding: 6px 12px;
        font-size: 0.82rem;
    }
    .profile-card {
        padding: 36px 24px;
    }
    .radio-option {
        display: flex;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 14px 5%;
    }
    .nav a:not(.nav-cta) {
        display: none;
    }
    .step-list {
        padding: 0 12px;
    }
    .flow {
        width: calc(100% - 32px);
        margin-left: auto;
        margin-right: auto;
        border-radius: 24px;
    }
}
