/* =============================================
   LUMINI THEME — main.css
   ============================================= */

/* ── TOKENS ── */
:root {
  --teal:        #2BA8B8;
  --teal-dark:   #1A8A99;
  --teal-deeper: #12707E;
  --teal-light:  #E8F7F9;
  --gold:        #F5B400;
  --ink:         #1C3A40;
  --ink-mid:     #3D6168;
  --ink-light:   #7AAAB3;
  --surface:     #FFFFFF;
  --bg:          #F4FAFB;
  --border:      #D6EDEF;
  --font-en:     'Inter', sans-serif;
  --font-ja:     'Noto Sans JP', sans-serif;
  --radius:      12px;
  --max-w:       1080px;
  --section-pad: 96px 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.lm-tag {
  display: inline-block;
  font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-light);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.lm-h2 {
  font-family: var(--font-en);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.2; color: var(--ink);
}
.lm-h2 span { color: var(--teal); }
.lm-sub { font-size: 15px; color: var(--ink-mid); margin-top: 12px; line-height: 1.85; }
.lm-divider {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px; margin: 18px 0 24px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  font-family: var(--font-en); font-size: 14px; font-weight: 600;
  padding: 14px 30px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(43,168,184,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(43,168,184,.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(43,168,184,.4); color: var(--teal-dark);
  font-family: var(--font-en); font-size: 14px; font-weight: 500;
  padding: 13px 26px; border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--teal); background: var(--teal-light); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--teal-deeper);
  font-family: var(--font-en); font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: 100px;
  transition: opacity .2s, transform .2s;
}
.btn-white:hover { opacity: .93; transform: translateY(-2px); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo-area { display: flex; align-items: center; height: 44px; }
.logo-area img { height: 40px; width: auto; }
/* ロゴ画像がない場合のフォールバック */
.logo-fallback { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 9px; position: relative;
}
.logo-icon::after {
  content: '✦'; color: var(--gold); font-size: 13px;
  position: absolute; top: -5px; right: -5px;
  text-shadow: 0 0 6px rgba(245,180,0,.5);
}
.logo-wordmark { font-family: var(--font-en); font-size: 22px; font-weight: 700; color: var(--teal); }
.logo-sub { font-size: 10px; color: var(--ink-light); letter-spacing: .06em; }

.nav-menu { display: flex; gap: 28px; list-style: none; }
.nav-menu a { font-size: 14px; font-weight: 500; color: var(--ink-mid); transition: color .2s; }
.nav-menu a:hover, .nav-menu .current-menu-item a { color: var(--teal); }
.nav-menu .menu-cta a {
  background: var(--teal); color: #fff;
  padding: 9px 22px; border-radius: 100px; font-weight: 600;
  transition: background .2s;
}
.nav-menu .menu-cta a:hover { background: var(--teal-dark); color: #fff; }

/* ハンバーガー */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ドロワー */
.nav-drawer {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
  flex-direction: column; padding: 24px 24px 40px;
  overflow-y: auto; z-index: 99;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block; padding: 16px 0; font-size: 18px; font-weight: 500;
  color: var(--ink-mid); border-bottom: 1px solid var(--border);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .drawer-cta {
  margin-top: 24px; background: var(--teal); color: #fff !important;
  padding: 16px !important; border-radius: 100px; text-align: center;
  font-weight: 700 !important; font-size: 16px !important; border-bottom: none !important;
}

/* ── PAGE HERO（内部ページ共通） ── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-dark) 100%);
  padding: 80px 24px 72px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: attr(data-bg-text);
  font-family: var(--font-en); font-size: clamp(80px, 15vw, 160px);
  font-weight: 800; color: rgba(255,255,255,.05);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none;
}
.page-hero .eyebrow {
  font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-en); font-size: clamp(30px, 5vw, 48px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero .lead { font-size: 15px; color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto; line-height: 1.85; }

/* ── CTA BAND ── */
.cta-band {
  padding: 72px 24px;
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-dark) 100%);
  text-align: center; color: #fff;
}
.cta-band h2 {
  font-family: var(--font-en); font-size: clamp(22px, 4vw, 34px);
  font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px;
}
.cta-band p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 32px; }

/* ── FOOTER ── */
.site-footer { background: var(--teal-deeper); padding: 48px 24px 32px; color: rgba(255,255,255,.55); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 28px;
}
.footer-brand .footer-logo { font-family: var(--font-en); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 220px; }
.footer-col h4 {
  font-family: var(--font-en); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.45); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; font-size: 12px;
}

/* ── FRONT PAGE ── */
.hero {
  padding: 108px 24px 100px; text-align: center;
  background: linear-gradient(180deg, #EBF8FA 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(43,168,184,.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 0 0 24px; height: 1.5px; background: var(--teal); opacity: .5;
}
.hero-title {
  font-family: var(--font-en); font-size: clamp(44px, 8vw, 76px);
  font-weight: 700; line-height: 1.05; letter-spacing: -.04em; color: var(--ink); margin-bottom: 12px;
}
.hero-title .highlight { color: var(--teal); }
.hero-ja { font-size: 16px; font-weight: 300; color: var(--ink-mid); letter-spacing: .08em; margin-bottom: 28px; }
.hero-body { font-size: 15px; color: var(--ink-mid); line-height: 1.9; margin-bottom: 44px; max-width: 540px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Philosophy */
.philosophy { padding: var(--section-pad); background: var(--bg); }
.philosophy .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.phil-sticky { position: sticky; top: 90px; }
.phil-cards { display: flex; flex-direction: column; gap: 16px; }
.phil-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; transition: border-color .2s, box-shadow .2s;
}
.phil-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(43,168,184,.1); }
.phil-card-en { font-family: var(--font-en); font-size: 12px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.phil-card-ja { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.phil-card-body { font-size: 14px; color: var(--ink-mid); line-height: 1.85; }

/* Values */
.values-section { padding: var(--section-pad); }
.values-section .v-header { text-align: center; margin-bottom: 56px; }
.values-section .v-header .lm-sub { margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.val-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.val-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(43,168,184,.13); }
.val-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold)); }
.val-en { font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.val-ja { font-size: 12px; color: var(--ink-light); margin-bottom: 10px; }
.val-body { font-size: 13px; color: var(--ink-mid); line-height: 1.7; }

/* ── SERVICES PAGE ── */
.services-layout { max-width: var(--max-w); margin: 0 auto; padding: 64px 24px 96px; display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.side-nav { position: sticky; top: 84px; }
.side-nav-label { font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 12px; }
.side-nav ul { list-style: none; border-left: 2px solid var(--border); }
.side-nav li a { display: block; padding: 10px 16px; font-size: 13px; color: var(--ink-mid); border-left: 2px solid transparent; margin-left: -2px; transition: color .2s, border-color .2s; }
.side-nav li a:hover, .side-nav li a.active { color: var(--teal); border-left-color: var(--teal); }
.services-list { display: flex; flex-direction: column; gap: 40px; }
.svc-block { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s; scroll-margin-top: 90px; }
.svc-block:hover { box-shadow: 0 8px 40px rgba(43,168,184,.1); }
.svc-header { padding: 28px 32px 24px; display: flex; align-items: flex-start; gap: 18px; background: var(--bg); border-bottom: 1px solid var(--border); }
.svc-icon-wrap { width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.svc-cat { font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.svc-title { font-size: 20px; font-weight: 700; line-height: 1.3; }
.svc-tagline { font-size: 13px; color: var(--ink-mid); margin-top: 5px; }
.svc-body { padding: 28px 32px; }
.svc-desc { font-size: 15px; color: var(--ink-mid); line-height: 1.9; margin-bottom: 24px; }
.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }
.feature-item::before { content: '✦'; color: var(--teal); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.feature-item span { font-size: 13px; color: var(--ink-mid); line-height: 1.5; }
.svc-cta-row { display: flex; align-items: center; gap: 12px; }
.btn-svc { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: #fff; font-family: var(--font-en); font-size: 13px; font-weight: 600; padding: 11px 22px; border-radius: 100px; box-shadow: 0 4px 12px rgba(43,168,184,.25); transition: transform .2s; }
.btn-svc:hover { transform: translateY(-2px); }
.btn-svc-ghost { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-mid); border: 1.5px solid var(--border); padding: 10px 18px; border-radius: 100px; transition: border-color .2s, color .2s; }
.btn-svc-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ── RECRUIT PAGE ── */
.who-section { padding: var(--section-pad); background: var(--bg); }
.who-section .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.who-sticky { position: sticky; top: 90px; }
.who-list { display: flex; flex-direction: column; gap: 12px; }
.who-item { display: flex; align-items: flex-start; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; transition: border-color .2s; }
.who-item:hover { border-color: var(--teal); }
.who-num { font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.who-text { font-size: 15px; color: var(--ink-mid); }
.criteria-section { padding: var(--section-pad); }
.criteria-section .inner { max-width: 800px; margin: 0 auto; }
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.crit-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; position: relative; overflow: hidden; }
.crit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold)); }
.crit-icon { font-size: 22px; margin-bottom: 10px; }
.crit-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.crit-body { font-size: 13px; color: var(--ink-mid); line-height: 1.75; }
.positions-section { padding: var(--section-pad); background: var(--bg); }
.positions-section .inner { max-width: 800px; margin: 0 auto; }
.pos-list { display: flex; flex-direction: column; gap: 12px; }
.pos-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: border-color .2s, box-shadow .2s; }
.pos-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(43,168,184,.1); }
.pos-badge { display: inline-block; font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--teal-light); color: var(--teal); padding: 3px 10px; border-radius: 100px; margin-bottom: 6px; }
.pos-title { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.pos-meta { font-size: 13px; color: var(--ink-light); }
.pos-arrow { width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 16px; flex-shrink: 0; transition: background .2s, border-color .2s; }
.pos-card:hover .pos-arrow { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ── CONTACT PAGE ── */
.contact-wrap { max-width: 640px; margin: 0 auto; padding: 72px 24px 96px; }
.form-intro { margin-bottom: 32px; }
.form-intro h2 { font-family: var(--font-en); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.form-intro p { font-size: 14px; color: var(--ink-mid); line-height: 1.85; }
.cat-label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 10px; display: block; }
.cat-select { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.cat-btn { padding: 12px 8px; border: 1.5px solid var(--border); border-radius: 8px; text-align: center; font-size: 13px; color: var(--ink-mid); cursor: pointer; transition: all .2s; background: #fff; font-family: var(--font-ja); }
.cat-btn:hover, .cat-btn.selected { border-color: var(--teal); background: var(--teal-light); color: var(--teal); font-weight: 600; }
.wpcf7 .form-group, .contact-form .form-group { margin-bottom: 18px; }
.wpcf7 label, .contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.req { color: var(--teal); margin-left: 4px; font-size: 11px; font-weight: 700; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 13px 16px; font-size: 15px; font-family: var(--font-ja);
  color: var(--ink); background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; outline: none; transition: border-color .2s; resize: vertical;
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus,
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wpcf7 input[type="submit"], .btn-submit {
  width: 100%; background: var(--teal); color: #fff;
  font-family: var(--font-en); font-size: 15px; font-weight: 700;
  padding: 16px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(43,168,184,.3); transition: transform .2s, box-shadow .2s;
  margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover, .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,168,184,.35); }
.form-note { font-size: 12px; color: var(--ink-light); text-align: center; margin-top: 14px; line-height: 1.7; }
.form-note a { color: var(--teal); text-decoration: underline; }
.wpcf7-response-output { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 14px; }

/* ── COMPANY PAGE ── */
.company-info { padding: var(--section-pad); }
.company-info .inner { max-width: 800px; margin: 0 auto; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:first-child { border-top: 1px solid var(--border); }
.info-table th { width: 180px; padding: 20px 0; font-size: 14px; font-weight: 600; color: var(--ink); text-align: left; vertical-align: top; white-space: nowrap; }
.info-table td { padding: 20px 0 20px 24px; font-size: 15px; color: var(--ink-mid); line-height: 1.8; }
.decision-section { padding: var(--section-pad); }
.decision-section .inner { max-width: 800px; margin: 0 auto; }
.decision-list { display: flex; flex-direction: column; gap: 12px; }
.decision-item { display: flex; align-items: flex-start; gap: 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; transition: border-color .2s; }
.decision-item:hover { border-color: var(--teal); }
.decision-num { font-family: var(--font-en); font-size: 22px; font-weight: 700; color: var(--teal); flex-shrink: 0; width: 32px; line-height: 1; }
.decision-en { font-family: var(--font-en); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.decision-ja { font-size: 13px; color: var(--ink-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-layout { grid-template-columns: 1fr; }
  .side-nav { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 72px 20px 64px; }
  .hero-title { font-size: 44px; }
  .philosophy .inner { grid-template-columns: 1fr; gap: 36px; }
  .phil-sticky { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .who-section .inner { grid-template-columns: 1fr; gap: 32px; }
  .who-sticky { position: static; }
  .criteria-grid { grid-template-columns: 1fr; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-header { padding: 20px; }
  .svc-body { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cat-select { grid-template-columns: 1fr 1fr; }
  .info-table th { width: 120px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .info-table th { display: block; width: 100%; padding: 14px 0 2px; font-size: 11px; color: var(--teal); }
  .info-table td { display: block; padding: 0 0 14px; }
  .info-table tr { display: block; }
  .pos-card { flex-direction: column; align-items: flex-start; }
}
