/* =========================================================
   Connecter — 新義豊株式会社 通訳コーディネート
   Restrained Japanese B2B design system
   ========================================================= */

:root {
    /* Brand / Primary — calm navy-blue (trust, not "AI loud") */
    --primary: #1f5199;
    --primary-dark: #173a6e;
    --primary-600: #2a62b0;
    --primary-100: #dbe6f5;
    --primary-50: #eef3fb;

    /* Ink & text (cool, near-black) */
    --ink: #16243a;
    --text: #3f4b5b;
    --text-soft: #6a7686;

    /* Surfaces & borders */
    --bg: #ffffff;
    --bg-alt: #f5f7fa;
    --bg-deep: #102640;
    --border: #e4e8ee;
    --border-strong: #d3dae3;

    --success: #1f9d6b;

    /* Elevation — soft, layered, subtle */
    --shadow-sm: 0 1px 2px rgba(16, 36, 58, .05), 0 1px 3px rgba(16, 36, 58, .06);
    --shadow-md: 0 6px 18px rgba(16, 36, 58, .07), 0 2px 6px rgba(16, 36, 58, .05);
    --shadow-lg: 0 16px 40px rgba(16, 36, 58, .10);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* Spacing scale (8px base) */
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-8: 48px;
    --space-10: 64px;
    --space-12: 96px;

    --max-width: 1140px;
    --max-narrow: 840px;
    --header-h: 72px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
        'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a { color: var(--primary); text-decoration: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow { max-width: var(--max-narrow); }

/* Focus visibility — accessible for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-100), 0 0 0 1px var(--primary);
    border-radius: 6px;
}

/* Section rhythm */
.section { padding: var(--space-12) 0; }
.section-alt { background: var(--bg-alt); }

/* Eyebrow label */
.eyebrow {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary-600);
    margin-bottom: var(--space-3);
}
.eyebrow-center { display: block; text-align: center; }

/* Section titles */
.section-title {
    font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.25rem);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -.01em;
    text-align: center;
    color: var(--ink);
    margin-bottom: var(--space-4);
}
.section-description {
    text-align: center;
    color: var(--text-soft);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto var(--space-10);
}
.section-subtitle {
    text-align: center;
    color: var(--text-soft);
    font-size: 1.05rem;
    margin-bottom: var(--space-8);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease,
        color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 1px 2px rgba(23, 58, 110, .25);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #fff;
    color: var(--primary-dark);
    border-color: var(--border-strong);
}
.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary-50);
}

.btn-light {
    background: #fff;
    color: var(--primary-dark);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .6); }

/* =========================================================
   Header
   ========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.header.scrolled {
    background: rgba(255, 255, 255, .94);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 0 rgba(16, 36, 58, .04);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
    height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.company-logo { width: 38px; height: 38px; }
.brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--ink);
}

.main-nav ul { display: flex; align-items: center; gap: var(--space-6); list-style: none; }
.main-nav a {
    position: relative;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text);
    padding: 4px 0;
    transition: color .2s ease;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    height: 2px; width: 0;
    background: var(--primary);
    transition: width .25s ease;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-4); }

.language-selector { display: inline-flex; gap: 4px; }
.lang-btn {
    padding: 6px 10px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-soft);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
}
.lang-btn:hover:not(.active) { background: var(--bg-alt); color: var(--text); }
.lang-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    display: block;
    width: 18px; height: 2px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    padding: var(--space-12) 0 var(--space-10);
    background:
        linear-gradient(180deg, var(--primary-50) 0%, transparent 60%),
        var(--bg);
    overflow: hidden;
}
.hero::after {
    /* very faint corner accent — restrained, not a mesh */
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
    opacity: .55;
    pointer-events: none;
}
.hero-content {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.hero .eyebrow { color: var(--primary-600); }
.hero-title {
    font-size: clamp(2rem, 1.3rem + 3vw, 3rem);
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: var(--space-5);
}
.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: var(--space-8);
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-6);
    list-style: none;
}
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    color: var(--text);
}
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    color: var(--success);
    background: rgba(31, 157, 107, .12);
    border-radius: var(--radius-pill);
    flex-shrink: 0;
}
.check svg { width: 13px; height: 13px; }

/* =========================================================
   Trust bar
   ========================================================= */
.trust-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-6) 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    list-style: none;
}
.trust-item {
    text-align: center;
    padding: 0 var(--space-3);
}
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--primary);
    line-height: 1.2;
}
.trust-unit { font-size: 1rem; font-weight: 600; margin-left: 2px; }
.trust-label {
    display: block;
    margin-top: 4px;
    font-size: .85rem;
    color: var(--text-soft);
}

/* =========================================================
   Cards (shared)
   ========================================================= */
.services-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.service-card,
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

/* Service cards */
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    color: var(--primary);
    margin-bottom: var(--space-4);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-3);
}
.service-list { list-style: none; }
.service-list li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: var(--text);
    font-size: .95rem;
}
.service-list li::before {
    content: "";
    position: absolute;
    left: 2px; top: 14px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* Feature (why) cards */
.feature-card { text-align: left; }
.feature-number {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    margin-bottom: var(--space-4);
}
.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-3);
}
.feature-card p { color: var(--text-soft); }

/* =========================================================
   Process
   ========================================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    list-style: none;
    counter-reset: step;
}
.process-step {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-6) var(--space-5);
    box-shadow: var(--shadow-sm);
}
.process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.process-step p { font-size: .92rem; color: var(--text-soft); }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    margin-bottom: var(--space-4);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius-pill);
}
/* connector line between steps (desktop) */
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(var(--space-6) + 20px);
    right: calc(var(--space-5) * -1 - 1px);
    width: var(--space-5);
    height: 2px;
    background: var(--border-strong);
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    max-width: 760px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}
.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-3);
    border-bottom: 1px solid var(--border);
}
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
}
.price-item:last-child { border-bottom: none; }
.price-label { color: var(--text-soft); font-size: .95rem; }
.price-value { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); }
.pricing-notes { margin-top: var(--space-6); text-align: center; }
.pricing-notes p { font-size: .85rem; color: var(--text-soft); margin: 4px 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: var(--space-5);
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 11px; height: 11px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer {
    padding: 0 var(--space-5) var(--space-5);
    color: var(--text-soft);
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
    background: var(--bg-deep);
    color: #fff;
    padding: var(--space-10) 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    flex-wrap: wrap;
}
.cta-text h2 {
    font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.cta-text p { color: rgba(255, 255, 255, .78); }
.cta-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* =========================================================
   Contact
   ========================================================= */
.contact-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-8);
    align-items: start;
}
.contact-form-wrap h3,
.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-5);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}
.form-group { margin-bottom: var(--space-4); }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
}
.req { color: #d14343; font-weight: 700; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 13px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-100);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy { margin-top: var(--space-3); font-size: .8rem; color: var(--text-soft); }
.form-status {
    margin-top: var(--space-3);
    padding: 0;
    font-size: .92rem;
    font-weight: 600;
}
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: #d14343; }

/* Contact info card */
.contact-info {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
}
.info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border);
}
.info-label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.info-item a { font-weight: 600; color: var(--primary-dark); }
.company-info { margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid var(--border); }
.company-info h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.company-info p { font-size: .92rem; color: var(--text-soft); }

/* =========================================================
   Company table
   ========================================================= */
.company-table {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    border-collapse: collapse;
}
.company-table th,
.company-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.company-table th {
    width: 32%;
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--ink);
    font-size: .95rem;
}
.company-table td { color: var(--text); }
.company-table td ul { list-style: none; }
.company-table td ul li { padding: 2px 0; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
    background: var(--bg-deep);
    color: rgba(255, 255, 255, .8);
    padding: var(--space-12) 0 var(--space-6);
}
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-3); }
.footer-logo { width: 36px; height: 36px; }
.footer-brand h3 { font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-brand p { color: rgba(255, 255, 255, .7); margin-bottom: 4px; }
.footer-brand .company-name { font-size: .9rem; color: rgba(255, 255, 255, .55); }
.footer-section h4 {
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #fff;
    margin-bottom: var(--space-4);
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section a { color: rgba(255, 255, 255, .75); font-size: .92rem; transition: color .2s ease; }
.footer-section a:hover { color: #fff; }
.footer-contact-info { font-size: .92rem; line-height: 1.9; color: rgba(255, 255, 255, .75); margin-bottom: var(--space-4); }
.footer-contact-info strong { color: #fff; }
.footer-contact-info a { color: rgba(255, 255, 255, .85); }
.footer-address { padding-top: var(--space-4); border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-address p { font-size: .88rem; color: rgba(255, 255, 255, .6); line-height: 1.6; }
.footer-bottom {
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}

/* Section scroll offset for sticky header */
section[id], main [id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* =========================================================
   Reveal-on-scroll (progressive, content visible without JS)
   ========================================================= */
.reveal-enabled .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
    .footer-brand { grid-column: 1 / -1; }
    .contact-content { grid-template-columns: 1fr; gap: var(--space-6); }
}

@media (max-width: 860px) {
    .services-grid,
    .features-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step:not(:last-child)::after { display: none; }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0; right: 0;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: var(--space-4) 0;
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; padding: 0 24px; }
    .main-nav li { width: 100%; }
    .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .main-nav a::after { display: none; }

    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }
}

@media (max-width: 680px) {
    .section { padding: var(--space-10) 0; }
    .hero { padding: var(--space-10) 0 var(--space-8); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5) 0; }
    .trust-item:nth-child(odd) { border-left: none; }
    .trust-item:nth-child(3) { border-top: 1px solid var(--border); padding-top: var(--space-5); }
    .trust-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: var(--space-5); }
    .pricing-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-actions { width: 100%; }
    .cta-actions .btn { flex: 1; }
}

@media (max-width: 420px) {
    .container { padding: 0 18px; }
    .process-steps { grid-template-columns: 1fr; }
    .company-table th { width: 38%; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    .reveal-enabled .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
    .header, .footer, .cta-band, .hero-actions, .language-selector, .mobile-menu-toggle { display: none; }
    body { color: #000; }
    .container { max-width: 100%; }
}
