:root {
    --primary: #0075de;
    --primary-dark: #005bab;
    --primary-light: #f2f9ff;
    --primary-glow: rgba(0, 117, 222, 0.12);

    --bg: #ffffff;
    --bg-secondary: #f6f5f4;
    --bg-surface: #f6f5f4;
    --bg-hover: rgba(0, 0, 0, 0.05);

    --text: rgba(0, 0, 0, 0.95);
    --text-secondary: #615d59;
    --text-muted: #a39e98;

    --border: rgba(0, 0, 0, 0.1);
    --border-light: rgba(0, 0, 0, 0.06);

    --success: #2a9d99;
    --error: #EF4444;
    --warning: #dd5b00;

    --shadow-sm: 0 0.175px 1.04px rgba(0, 0, 0, 0.01), 0 0.8px 2.93px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.04), 0 2.025px 7.85px rgba(0, 0, 0, 0.027), 0 0.8px 2.93px rgba(0, 0, 0, 0.02), 0 0.175px 1.04px rgba(0, 0, 0, 0.01);
    --shadow-lg: 0 1px 3px rgba(0, 0, 0, 0.01), 0 3px 7px rgba(0, 0, 0, 0.02), 0 7px 15px rgba(0, 0, 0, 0.02), 0 14px 28px rgba(0, 0, 0, 0.04), 0 23px 52px rgba(0, 0, 0, 0.05);
    --shadow-primary: 0 8px 24px rgba(0, 117, 222, 0.18);

    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 4px;
    --radius-pill: 9999px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

section {
    scroll-margin-top: 80px;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Header ========== */
header {
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--bg-hover);
    padding: 3px;
    border-radius: var(--radius-sm);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: var(--bg);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
    color: var(--text-secondary);
}

/* ========== Animations ========== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ========== Hero ========== */
.hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 60%);
}

.hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 117, 222, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.0;
    letter-spacing: -2.125px;
    font-weight: 700;
    color: var(--text);
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 720px;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 16px;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-primary);
    border: none;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(0, 117, 222, 0.24);
}

.cta-button:active {
    transform: scale(0.98);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.ghost-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 12px;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    background: var(--primary-light);
    color: #097fe8;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.125px;
    border: none;
}

/* ========== Sections ========== */
.features,
.pricing,
.how-to,
.troubleshooting,
.contact {
    padding: 100px 0;
}

.pricing {
    background: var(--bg-secondary);
}

.troubleshooting {
    background: var(--bg-secondary);
}

.section-title {
    font-family: var(--font-heading);
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    color: var(--text);
}

.section-lead {
    max-width: 720px;
    margin: 0 0 48px;
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== Features ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.25px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ========== Pricing ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    aspect-ratio: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    align-self: center;
    gap: 2px;
}

.price-number {
    font-size: 5rem;
    line-height: 1;
}

.price-symbol {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.price-unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 4px;
}

.pricing-card h3 {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
}

.pricing-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.pricing-advantage {
    margin: 0 0 28px;
    padding: 24px 28px;
    background: var(--primary-light);
    border: 1px solid rgba(0, 117, 222, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.advantage-content h3 {
    color: var(--primary);
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.advantage-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.875rem;
}

.pricing-guidance {
    margin: 20px 0 0;
    padding: 24px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.pricing-guidance-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-guidance-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.pricing-policy-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.pricing-guidance-note-list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.8;
}

.pricing-guidance-note-list li {
    margin: 0 0 4px;
}

.pricing-policy-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 12px 0 0;
    display: grid;
    gap: 8px;
}

.pricing-policy-list li {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========== How to ========== */
.steps {
    display: grid;
    gap: 16px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    align-items: flex-start;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.step-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* ========== Troubleshooting ========== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.2s ease;
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.925rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    transition: background 0.15s;
}

.accordion-header:hover {
    background: var(--bg-hover);
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-inner {
    padding: 20px 24px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-surface);
}

.accordion-inner p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.accordion-inner p:last-child {
    margin-bottom: 0;
}

.accordion-inner strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.accordion-inner p span {
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-inner a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.accordion-inner a:hover {
    border-bottom-color: var(--primary);
}

/* ========== Contact ========== */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.form-group label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 117, 222, 0.1);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--bg) inset !important;
    -webkit-text-fill-color: var(--text) !important;
    transition: background-color 5000s ease-in-out 0s;
}

#contact-form .cta-button {
    align-self: center;
    cursor: pointer;
    min-width: 200px;
}

#form-status {
    text-align: left;
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== Commercial Disclosure ========== */
.disclosure-list {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 12px;
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.disclosure-list dt {
    font-weight: 600;
    color: var(--text);
    padding-top: 4px;
    font-size: 0.875rem;
}

.disclosure-list dd {
    color: var(--text-secondary);
    margin-inline-start: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.875rem;
}

.disclosure-list dd ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.disclosure-list dd ul li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.4em;
}

.disclosure-list dd ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.disclosure-list dd ul li:last-child {
    margin-bottom: 0;
}

.disclosure-list dd:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ========== Footer ========== */
footer {
    padding: 48px 0 32px;
    text-align: left;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--bg-secondary);
    font-size: 0.85rem;
}

.footer-links {
    margin-bottom: 16px;
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ========== Legal Pages ========== */
.legal-page {
    padding-top: 140px;
    padding-bottom: 80px;
}

.legal-page .container {
    max-width: 760px;
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.legal-page .updated-date {
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: right;
    font-size: 0.85rem;
}

.legal-page section {
    margin-bottom: 36px;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 600;
}

.legal-page p,
.legal-page li {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legal-page ul,
.legal-page ol {
    padding-left: 24px;
    margin-top: 12px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 8px;
}

.legal-page strong {
    color: var(--text);
    font-weight: 600;
}

.legal-page a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.legal-page a:hover {
    border-bottom-color: var(--primary);
}

/* ========== Cookie Banner ========== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(150%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-grow: 1;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    font-family: var(--font-body);
    border: 1px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary);
    color: white;
    border: none;
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

.cookie-btn-info {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.cookie-btn-info:hover {
    border-color: var(--text-secondary);
    color: var(--text);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
    .hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 16px;
    }

    nav {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        row-gap: 12px;
    }

    .logo {
        justify-self: start;
        grid-column: 1;
        grid-row: 1;
    }

    .lang-switch {
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
    }

    .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        width: 100%;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.625px;
    }

    .section-title {
        font-size: 1.75rem;
        letter-spacing: -0.625px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-actions .cta-button,
    .hero-actions .ghost-button {
        width: 100%;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .pricing-card {
        aspect-ratio: auto;
    }

    .features,
    .pricing,
    .how-to,
    .troubleshooting,
    .contact {
        padding: 64px 0;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 64px;
    }

    .pricing-advantage {
        flex-direction: column;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .disclosure-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .disclosure-list dd {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .legal-page .container {
        padding: 24px;
    }

    .legal-page h1 {
        font-size: 1.6rem;
    }

    #contact-form {
        padding: 24px;
    }
}
