/* PROMINENCE社労士法人 - style.css */
/* Black #0B0B0B + Gold #C5A55A */

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #ccc;
  background: #0B0B0B;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .3s, opacity .3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }
/* ==================== Utility ==================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 100px 0;
}
.section-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C5A55A;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #f0f0f0;
}
.section-desc {
  font-size: 1rem;
  color: #999;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
/* ==================== Fade ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ==================== Sample banner ==================== */
.sample-banner {
  background: #C5A55A;
  color: #0B0B0B;
  text-align: center;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  position: relative;
  z-index: 1100;
}
/* ==================== Header ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11,11,11,0);
  transition: all .4s;
  padding-top: 30px;
}
.header.scrolled {
  background: rgba(11,11,11,.97);
  box-shadow: 0 1px 20px rgba(0,0,0,.4);
  padding-top: 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #C5A55A;
  letter-spacing: .1em;
}
.logo-icon { flex-shrink: 0; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: .82rem;
  font-weight: 500;
  color: #999;
  position: relative;
  padding: 4px 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .05em;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #C5A55A;
  transition: width .3s;
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}
.nav a:hover { color: #C5A55A; }
.nav-cta {
  background: #C5A55A !important;
  color: #0B0B0B !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background .3s, transform .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #d4b76a !important;
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #C5A55A;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* ==================== Hero ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0B0B0B;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,.7) 0%, rgba(11,11,11,.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 60px;
}
.hero-sub {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: #C5A55A;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f0f0f0;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.hero-scroll span {
  font-size: .7rem;
  letter-spacing: .2em;
  color: #C5A55A;
  font-family: 'Montserrat', sans-serif;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: #C5A55A;
  margin: 10px auto 0;
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  border: 1px solid transparent;
  letter-spacing: .05em;
}
.btn-primary {
  background: #C5A55A;
  color: #0B0B0B;
  border-color: #C5A55A;
}
.btn-primary:hover {
  background: #d4b76a;
  border-color: #d4b76a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197,165,90,.3);
}
.btn-outline {
  background: transparent;
  color: #C5A55A;
  border-color: #C5A55A;
}
.btn-outline:hover {
  background: #C5A55A;
  color: #0B0B0B;
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
/* ==================== About ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.about-text { font-size: .95rem; color: #bbb; }
.about-text p { margin-bottom: 16px; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  border-left: 3px solid #C5A55A;
  padding-left: 16px;
  margin-bottom: 24px !important;
  line-height: 1.7;
}
.about-image svg {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
/* ==================== Services ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: #151515;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform .3s, border-color .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #C5A55A;
}
.service-icon { margin-bottom: 20px; }
.service-icon svg { width: 52px; height: 52px; }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #f0f0f0;
}
.service-card p {
  font-size: .88rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-list {
  padding-top: 12px;
  border-top: 1px solid #2A2A2A;
}
.service-list li {
  font-size: .83rem;
  color: #bbb;
  padding: 6px 0 6px 20px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C5A55A;
  opacity: .5;
}
/* ==================== Strength ==================== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.strength-card {
  background: #151515;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 40px 28px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.strength-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197,165,90,.3);
}
.strength-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #C5A55A;
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.strength-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f0f0f0;
}
.strength-card p {
  font-size: .85rem;
  color: #999;
  line-height: 1.7;
}
/* ==================== Cases ==================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  background: #151515;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 32px 24px;
  transition: transform .3s, border-color .3s;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197,165,90,.3);
}
.case-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  color: #C5A55A;
  background: rgba(197,165,90,.1);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.case-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #e0e0e0;
}
.case-card p {
  font-size: .83rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 16px;
}
.case-result {
  border-top: 1px solid #2A2A2A;
  padding-top: 12px;
  font-size: .8rem;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-result-label {
  font-size: .7rem;
  font-weight: 700;
  color: #0B0B0B;
  background: #C5A55A;
  padding: 2px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
/* ==================== Numbers ==================== */
.numbers {
  background: #111;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.number-card {
  text-align: center;
  padding: 24px 16px;
}
.number-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: #C5A55A;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
}
.number-unit {
  font-size: 1rem;
  font-weight: 600;
  color: #C5A55A;
  opacity: .6;
}
.number-label {
  font-size: .83rem;
  color: #888;
  margin-top: 8px;
}
/* ==================== Flow ==================== */
.flow-steps {
  max-width: 700px;
  margin: 48px auto 0;
}
.flow-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #1A1A1A;
  align-items: flex-start;
}
.flow-step:last-child { border-bottom: none; }
.flow-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #C5A55A;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  opacity: .5;
  font-family: 'Montserrat', sans-serif;
}
.flow-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #e0e0e0;
}
.flow-body p {
  font-size: .86rem;
  color: #999;
  line-height: 1.7;
}
/* ==================== CTA ==================== */
.cta-banner {
  background: linear-gradient(135deg, #C5A55A, #a88c3a);
  padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B0B0B;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: .92rem;
  color: rgba(11,11,11,.8);
  margin-bottom: 32px;
  line-height: 1.8;
}
.cta-banner .btn-primary {
  background: #0B0B0B;
  color: #C5A55A;
  border-color: #0B0B0B;
}
.cta-banner .btn-primary:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
}
/* ==================== Languages ==================== */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lang-card {
  background: #151515;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.lang-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197,165,90,.3);
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #C5A55A;
  color: #C5A55A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 16px;
}
.lang-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 10px;
}
.lang-card p {
  font-size: .82rem;
  color: #999;
  line-height: 1.7;
}
/* ==================== Knowledge ==================== */
.knowledge {
  background: #111;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.knowledge-card {
  background: #151515;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform .3s;
}
.knowledge-card:hover { transform: translateY(-4px); }
.knowledge-date {
  font-size: .75rem;
  font-weight: 600;
  color: #C5A55A;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  display: block;
}
.knowledge-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 10px;
  line-height: 1.5;
}
.knowledge-card p {
  font-size: .82rem;
  color: #999;
  line-height: 1.7;
}
/* ==================== FAQ ==================== */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item { border-bottom: 1px solid #1A1A1A; }
.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #C5A55A;
  color: #0B0B0B;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}
.faq-question h3 {
  font-size: .92rem;
  font-weight: 600;
  flex: 1;
  color: #ccc;
  line-height: 1.5;
  transition: color .3s;
}
.faq-question:hover h3 { color: #C5A55A; }
.faq-toggle {
  font-size: 1.4rem;
  color: #C5A55A;
  transition: transform .3s;
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px 46px;
}
.faq-item.open .faq-answer {
  display: flex;
  gap: 16px;
}
.faq-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1A1A1A;
  color: #C5A55A;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}
.faq-answer p {
  font-size: .88rem;
  color: #999;
  line-height: 1.8;
}
/* ==================== Voices ==================== */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.voice-card {
  background: #151515;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 32px 24px;
  transition: transform .3s, border-color .3s;
}
.voice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197,165,90,.2);
}
.voice-text {
  font-size: .88rem;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}
.voice-author {
  border-top: 1px solid #2A2A2A;
  padding-top: 12px;
}
.voice-name {
  font-size: .8rem;
  font-weight: 600;
  color: #999;
}
/* ==================== Partners ==================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.partner-card {
  background: #151515;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 28px 20px;
  transition: transform .3s;
}
.partner-card:hover { transform: translateY(-4px); }
.partner-card h3 {
  font-size: .92rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 10px;
}
.partner-card p {
  font-size: .82rem;
  color: #999;
  line-height: 1.7;
}
.partners-note {
  margin-top: 28px;
  text-align: center;
}
.partners-note p {
  font-size: .85rem;
  color: #888;
  line-height: 1.8;
}
/* ==================== Company ==================== */
.company-table {
  max-width: 760px;
  margin: 48px auto 0;
  background: #151515;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2A2A2A;
}
.company-table th,
.company-table td {
  padding: 16px 24px;
  font-size: .88rem;
  border-bottom: 1px solid #1A1A1A;
  text-align: left;
  vertical-align: top;
}
.company-table th {
  background: #1A1A1A;
  font-weight: 600;
  width: 28%;
  color: #C5A55A;
}
.company-table td { color: #bbb; }
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
/* ==================== Contact ==================== */
.contact {
  background: #111;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: 4px;
}
.contact-item strong {
  display: block;
  font-size: .83rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: .86rem;
  color: #999;
  line-height: 1.6;
}
/* ==================== Form ==================== */
.contact-form {
  background: #151515;
  border-radius: 8px;
  padding: 36px;
  border: 1px solid #2A2A2A;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: .88rem;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  background: #0B0B0B;
  color: #ccc;
  transition: border-color .3s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #C5A55A;
  box-shadow: 0 0 0 2px rgba(197,165,90,.15);
}
.form-group textarea { resize: vertical; }
.form-group select option { background: #151515; }
/* ==================== Footer ==================== */
.footer {
  background: #050505;
  color: #666;
  padding: 60px 0 0;
  border-top: 1px solid #1A1A1A;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid #1A1A1A;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #C5A55A;
  display: block;
  margin-bottom: 8px;
  letter-spacing: .1em;
}
.footer-brand p {
  font-size: .8rem;
  color: #555;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .8rem;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .03em;
  transition: color .3s;
}
.footer-links a:hover { color: #C5A55A; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
}
.footer-credit a { color: #C5A55A; }
.footer-credit a:hover { text-decoration: underline; }
/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
  .lang-grid,
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .strength-grid,
  .cases-grid,
  .knowledge-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0B0B0B;
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,.5);
    transition: right .3s;
    z-index: 999;
  }
  .nav.open { right: 0; }
  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid #1A1A1A;
    font-size: .9rem;
    width: 100%;
  }
  .nav-cta { margin-top: 20px; text-align: center; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.5rem; }
  .section { padding: 70px 0; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .strength-grid,
  .cases-grid,
  .knowledge-grid,
  .voices-grid,
  .lang-grid,
  .partners-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form { padding: 24px; }
  .company-table th { display: block; width: 100%; border-bottom: none; padding-bottom: 4px; }
  .company-table td { display: block; padding-top: 0; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-value { font-size: 2.2rem; }
  .btn { padding: 12px 28px; font-size: .86rem; }
}
