/* =========================================================
   ゴリゴリパートナーズ — Design System
   Brand: GORILLA / 力強い・ゴリゴリ働く即戦力複業人材
   ========================================================= */

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

:root {
    /* Brand palette */
    --ink:        #17130E;   /* near-black, warm (gorilla fur) */
    --ink-2:      #241D16;
    --ink-soft:   #3a3027;
    --accent:     #FF7A1A;   /* ape orange — energetic / ゴリゴリ */
    --accent-dk:  #E85E00;
    --gold:       #FFC23C;   /* banana */
    --jungle:     #1E7B47;   /* jungle green (support) */
    --jungle-dk:  #145C34;
    --cream:      #FAF5EC;   /* warm background */
    --cream-2:    #F1E8D7;
    --paper:      #FFFFFF;
    --line:       #E7DDCB;
    --gray:       #6b6258;
    --gray-2:     #8c8479;
    --white:      #ffffff;

    /* Spacing (8pt) */
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Line heights */
    --lh-display: 1.18;
    --lh-heading: 1.4;
    --lh-snug: 1.6;
    --lh-body: 1.85;

    /* Type scale (fluid) */
    --fs-display: clamp(2.4rem, 6vw, 4.2rem);
    --fs-h2:      clamp(1.7rem, 3.6vw, 2.5rem);
    --fs-h3:      clamp(1.25rem, 2.2vw, 1.5rem);
    --fs-h4:      clamp(1.08rem, 1.7vw, 1.22rem);
    --fs-lead:    clamp(1.04rem, 1.5vw, 1.18rem);
    --fs-body:    clamp(0.98rem, 1.25vw, 1.04rem);
    --fs-sm:      clamp(0.9rem, 1.1vw, 0.95rem);
    --fs-xs:      0.76rem;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --shadow-card: 0 8px 28px rgba(23, 19, 14, 0.07);
    --shadow-card-hover: 0 18px 46px rgba(23, 19, 14, 0.13);
    --shadow-accent: 0 12px 30px rgba(255, 122, 26, 0.32);
}

html {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', system-ui, sans-serif;
    line-height: var(--lh-body);
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .card-title, .step-title, .cta-title {
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-break: strict;
    text-wrap: balance;
}
p, li { text-wrap: pretty; }

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 28px);
    width: 100%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 13px 0;
    background: rgba(23, 19, 14, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-content { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--white); font-weight: 900; }
.logo-icon { font-size: 1.7rem; line-height: 1; }
.logo-text { font-size: 1.12rem; letter-spacing: 0.02em; }
.logo-text small { display: block; font-size: 0.62rem; font-weight: 600; color: var(--gold); letter-spacing: 0.18em; }
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); }
.nav a { color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 0.92rem; font-weight: 700; transition: color .2s; }
.nav a:hover { color: var(--gold); }
.nav-cta {
    background: var(--accent); color: #fff !important; padding: 9px 20px; border-radius: 999px;
    font-weight: 900; box-shadow: var(--shadow-accent); transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-toggle { display: none; }
@media (max-width: 860px) {
    .nav .nav-link { display: none; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(140px, 18vw, 200px) 0 clamp(80px, 11vw, 130px);
    background:
        radial-gradient(1100px 540px at 78% -10%, rgba(255, 122, 26, 0.30), transparent 60%),
        radial-gradient(900px 480px at 8% 16%, rgba(30, 123, 71, 0.22), transparent 58%),
        linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 60%, #1c160f 100%);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}
.hero::after {
    content: "🦍";
    position: absolute; right: clamp(-30px, 2vw, 40px); bottom: -22px;
    font-size: clamp(160px, 30vw, 360px); line-height: 1;
    opacity: 0.10; transform: rotate(-6deg); pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 194, 60, 0.14); color: var(--gold);
    border: 1px solid rgba(255, 194, 60, 0.4);
    padding: 7px 18px; border-radius: 999px; font-size: 0.8rem; font-weight: 800;
    letter-spacing: 0.12em; margin-bottom: 26px;
}
.hero-title {
    font-size: var(--fs-display); font-weight: 900; line-height: var(--lh-display);
    letter-spacing: 0.01em; margin-bottom: 22px;
}
.hero-title .hl { color: var(--accent); }
.hero-title .hl-gold { color: var(--gold); }
.hero-subtitle { font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 800; margin-bottom: 20px; color: #fff; }
.hero-description {
    font-size: var(--fs-lead); line-height: var(--lh-body); color: rgba(255, 255, 255, 0.82);
    max-width: 680px; margin: 0 auto 38px;
}
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 16px 34px; border-radius: 999px; font-weight: 900; font-size: 1.04rem;
    text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { transform: translateY(-3px); background: var(--accent-dk); }
.btn-ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.45); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-3px); }
.hero-note { margin-top: 18px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }

/* Hero stats strip */
.hero-stats {
    display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 5vw, 60px);
    margin-top: clamp(44px, 6vw, 64px); position: relative; z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); margin-top: 8px; font-weight: 700; }

/* ---------- Section base ---------- */
.section { padding: clamp(70px, 9vw, 116px) 0; }
.section.alt { background: var(--paper); }
.section.cream2 { background: var(--cream-2); }
.section.ink { background: var(--ink); color: #fff; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto clamp(42px, 5.5vw, 64px); }
.section-badge {
    display: inline-block; background: var(--accent); color: #fff; font-size: 0.74rem; font-weight: 900;
    letter-spacing: 0.16em; padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.section.ink .section-badge { background: var(--gold); color: var(--ink); }
.section-title { font-size: var(--fs-h2); font-weight: 900; line-height: var(--lh-heading); letter-spacing: 0.02em; }
.section-title .hl { color: var(--accent); }
.section.ink .section-title .hl { color: var(--gold); }
.section-description { font-size: var(--fs-lead); color: var(--gray); margin-top: 18px; line-height: var(--lh-body); }
.section.ink .section-description { color: rgba(255, 255, 255, 0.78); }

/* ---------- Problem cards ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(16px, 2.2vw, 24px); }
.problem-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
    padding: clamp(26px, 3vw, 34px); box-shadow: var(--shadow-card); position: relative;
}
.problem-icon { font-size: 2.2rem; margin-bottom: 14px; }
.problem-card h3 { font-size: var(--fs-h4); font-weight: 900; margin-bottom: 10px; line-height: var(--lh-heading); }
.problem-card p { font-size: var(--fs-sm); color: var(--gray); line-height: var(--lh-snug); }

/* Bridge line */
.bridge { text-align: center; margin-top: clamp(40px, 5vw, 56px); }
.bridge .arrow { font-size: 2.2rem; color: var(--accent); }
.bridge p { font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-weight: 900; margin-top: 10px; }
.bridge p .hl { color: var(--accent); }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(18px, 2.4vw, 26px); }
.feature-card {
    background: var(--paper); border-radius: var(--radius-md); padding: clamp(28px, 3.2vw, 38px);
    box-shadow: var(--shadow-card); border-top: 5px solid var(--accent);
    transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.feature-num { font-size: 0.8rem; font-weight: 900; color: var(--accent); letter-spacing: 0.16em; }
.feature-card h3 { font-size: var(--fs-h3); font-weight: 900; margin: 12px 0 12px; line-height: var(--lh-heading); }
.feature-card p { font-size: var(--fs-sm); color: var(--gray); line-height: var(--lh-snug); }

/* ---------- Job / role categories ---------- */
.role-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(14px, 2vw, 20px); }
.role-card {
    display: flex; flex-direction: column; gap: 8px;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: clamp(22px, 2.6vw, 28px); text-decoration: none; color: inherit;
    transition: transform .2s, box-shadow .2s, border-color .2s; position: relative;
}
.role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent); }
.role-emoji { font-size: 2rem; }
.role-card h3 { font-size: var(--fs-h4); font-weight: 900; }
.role-card p { font-size: var(--fs-sm); color: var(--gray); line-height: var(--lh-snug); }
.role-card.is-featured { border: 2px solid var(--accent); background: linear-gradient(150deg, rgba(255,122,26,0.06), rgba(255,194,60,0.06)); }
.role-tag { position: absolute; top: 14px; right: 14px; background: var(--accent); color: #fff; font-size: 0.66rem; font-weight: 900; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 999px; }
.role-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; color: var(--accent); font-weight: 900; font-size: 0.84rem; }

/* ---------- Hourly model ---------- */
.model-wrap { max-width: 920px; margin: 0 auto; display: grid; gap: clamp(18px, 2.4vw, 26px); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.model-card {
    background: var(--paper); border-radius: var(--radius-md); padding: clamp(28px, 3.2vw, 36px);
    text-align: center; box-shadow: var(--shadow-card); border: 1px solid var(--line);
}
.model-card .ico { font-size: 2.4rem; margin-bottom: 12px; }
.model-card h3 { font-size: var(--fs-h4); font-weight: 900; margin-bottom: 10px; }
.model-card p { font-size: var(--fs-sm); color: var(--gray); line-height: var(--lh-snug); }
.model-card .big { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 900; color: var(--accent); line-height: 1.1; }
.model-card .big small { font-size: 0.9rem; color: var(--gray); font-weight: 700; }
.model-note {
    max-width: 880px; margin: clamp(30px, 4vw, 44px) auto 0; background: var(--paper);
    border-left: 5px solid var(--accent); border-radius: var(--radius-sm);
    padding: clamp(22px, 2.8vw, 30px); font-size: var(--fs-body); color: var(--ink-soft); line-height: var(--lh-body);
}
.model-note strong { color: var(--accent-dk); }

/* ---------- Steps / flow ---------- */
.flow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(16px, 2.2vw, 24px); counter-reset: step; }
.flow-card {
    background: var(--paper); border-radius: var(--radius-md); padding: clamp(26px, 3vw, 34px);
    box-shadow: var(--shadow-card); position: relative; border: 1px solid var(--line);
}
.section.ink .flow-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.flow-step {
    display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    background: var(--accent); color: #fff; border-radius: 50%; font-weight: 900; font-size: 1.1rem; margin-bottom: 16px;
}
.flow-card h3 { font-size: var(--fs-h4); font-weight: 900; margin-bottom: 10px; line-height: var(--lh-heading); }
.flow-card p { font-size: var(--fs-sm); color: var(--gray); line-height: var(--lh-snug); }
.section.ink .flow-card p { color: rgba(255,255,255,0.74); }
.section.ink .flow-card h3 { color: #fff; }

/* ---------- Quality / checklist ---------- */
.quality-wrap { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); align-items: stretch; }
.quality-funnel { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 44px); }
.quality-funnel h3 { font-size: var(--fs-h3); font-weight: 900; margin-bottom: 8px; color: var(--gold); }
.quality-funnel p.sub { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); margin-bottom: 22px; }
.funnel-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,0.16); }
.funnel-row:last-child { border-bottom: none; }
.funnel-row .pct { font-size: 1.5rem; font-weight: 900; color: var(--accent); min-width: 76px; }
.funnel-row .txt { font-size: var(--fs-sm); color: rgba(255,255,255,0.88); line-height: var(--lh-snug); }
.check-list { list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 36px; font-size: var(--fs-body); border-bottom: 1px solid var(--line); line-height: var(--lh-snug); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 12px; width: 24px; height: 24px; background: var(--jungle); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; }
.check-list li strong { font-weight: 900; }

/* ---------- Compare table ---------- */
.compare-wrap { max-width: 940px; margin: 0 auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--paper); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); min-width: 620px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: center; font-size: var(--fs-sm); border-bottom: 1px solid var(--line); }
.compare-table thead th { background: var(--ink); color: #fff; font-weight: 900; }
.compare-table thead th.us { background: var(--accent); }
.compare-table tbody th { text-align: left; font-weight: 900; background: var(--cream); }
.compare-table td.us { background: rgba(255,122,26,0.07); font-weight: 800; color: var(--accent-dk); }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }

/* ---------- Reward / pay cards (recruit) ---------- */
.reward-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(16px, 2.2vw, 24px); }
.reward-card { background: var(--paper); border-radius: var(--radius-md); padding: clamp(26px, 3vw, 34px); border: 1px solid var(--line); box-shadow: var(--shadow-card); text-align: center; }
.reward-card .role { font-size: var(--fs-h4); font-weight: 900; margin-bottom: 10px; }
.reward-card .pay { font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 900; color: var(--accent); line-height: 1.1; }
.reward-card .pay small { font-size: 0.85rem; color: var(--gray); font-weight: 700; }
.reward-card .desc { font-size: var(--fs-sm); color: var(--gray); margin-top: 10px; line-height: var(--lh-snug); }

/* ---------- Persona / target ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(16px, 2.2vw, 24px); }
.persona-card { background: var(--paper); border-radius: var(--radius-md); padding: clamp(26px, 3vw, 34px); border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.persona-card .emoji { font-size: 2rem; margin-bottom: 12px; }
.persona-card h3 { font-size: var(--fs-h4); font-weight: 900; margin-bottom: 10px; line-height: var(--lh-heading); }
.persona-card p { font-size: var(--fs-sm); color: var(--gray); line-height: var(--lh-snug); }

/* ---------- Voice / quote ---------- */
.voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2.4vw, 26px); }
.voice-card { background: var(--paper); border-radius: var(--radius-md); padding: clamp(26px, 3vw, 34px); box-shadow: var(--shadow-card); border-left: 5px solid var(--gold); }
.voice-card .quote { font-size: var(--fs-body); line-height: var(--lh-body); }
.voice-card .who { margin-top: 16px; font-size: var(--fs-sm); color: var(--gray); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 900; font-size: var(--fs-body); display: flex; align-items: flex-start; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: 'Q'; flex: none; width: 26px; height: 26px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.faq-item summary::after { content: '＋'; margin-left: auto; color: var(--accent); font-weight: 900; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px 62px; font-size: var(--fs-sm); color: var(--gray); line-height: var(--lh-body); }

/* ---------- CTA band ---------- */
.cta-band {
    padding: clamp(70px, 9vw, 110px) 0; text-align: center; color: #fff; position: relative; overflow: hidden;
    background:
        radial-gradient(800px 420px at 80% 0%, rgba(255,122,26,0.5), transparent 60%),
        linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
}
.cta-band::after { content: "🦍"; position: absolute; left: -16px; bottom: -30px; font-size: clamp(120px, 22vw, 240px); opacity: 0.10; transform: rotate(8deg); }
.cta-band-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; line-height: var(--lh-heading); margin-bottom: 18px; }
.cta-title .hl { color: var(--gold); }
.cta-desc { font-size: var(--fs-lead); color: rgba(255,255,255,0.82); margin-bottom: 34px; line-height: var(--lh-body); }

/* ---------- Form ---------- */
.form-wrap { max-width: 760px; margin: 0 auto; background: var(--paper); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.form-wrap h3 { font-size: var(--fs-h3); font-weight: 900; text-align: center; margin-bottom: 22px; }

/* ---------- Company ---------- */
.company-card { max-width: 760px; margin: 0 auto; background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-card); }
.company-row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line); }
.company-row:last-child { border-bottom: none; }
.company-label { background: var(--cream); padding: 16px 22px; font-weight: 900; font-size: var(--fs-sm); }
.company-value { padding: 16px 22px; font-size: var(--fs-sm); color: var(--ink-soft); }
.company-value a { color: var(--accent-dk); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: clamp(40px, 6vw, 60px) 0 36px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 28px; }
.footer .logo { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.9rem; font-weight: 700; }
.footer-links a:hover { color: var(--gold); }
.footer-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; }

/* ---------- Floating CTA ---------- */
.floating-cta {
    position: fixed; right: 18px; bottom: 18px; z-index: 900;
    background: var(--accent); color: #fff; text-decoration: none; font-weight: 900;
    padding: 14px 24px; border-radius: 999px; box-shadow: var(--shadow-accent);
    display: inline-flex; align-items: center; gap: 8px; transition: transform .2s;
}
.floating-cta:hover { transform: translateY(-3px); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding-top: 96px; font-size: 0.82rem; color: var(--gray); }
.breadcrumb a { color: var(--accent-dk); text-decoration: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-cta { margin-top: clamp(36px, 5vw, 52px); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
    .quality-wrap { grid-template-columns: 1fr; }
    .company-row { grid-template-columns: 120px 1fr; }
    .company-label { padding: 14px; }
    .company-value { padding: 14px; }
    .hero-cta-group .btn { width: 100%; }
}

/* Reveal-on-scroll (progressive enhancement; visible by default) */
@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.in { opacity: 1; transform: none; }
}
