/* ===== HARBOR WASTE - Deep Navy Maritime Industrial ===== */
:root {
  --primary: #0B1D33;
  --primary-light: #122B4D;
  --accent: #4682B4;
  --accent-light: #5A9FD4;
  --accent-glow: rgba(70, 130, 180, 0.3);
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --text: #1E293B;
  --text-light: #64748B;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(11, 29, 51, 0.08);
  --shadow-lg: 0 12px 48px rgba(11, 29, 51, 0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

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

ul { list-style: none; }

/* ===== SAMPLE BANNER ===== */
.sample-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: rgba(11, 29, 51, 0.95);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(70, 130, 180, 0.2);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 28px;
}

.logo-main {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}

.logo-sub {
  display: block;
  font-size: 10px;
  color: var(--accent-light);
  letter-spacing: 0.15em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.03em;
  position: relative;
}

.nav-list a:hover {
  color: var(--white);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 24px;
  border-radius: 4px;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B1D33 0%, #0D2847 40%, #122B4D 100%);
  overflow: hidden;
  padding-top: 108px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600"><path fill="rgba(70,130,180,0.05)" d="M0,300 Q360,200 720,300 T1440,300 V600 H0Z"/><path fill="rgba(70,130,180,0.03)" d="M0,350 Q360,250 720,350 T1440,350 V600 H0Z"/></svg>') bottom center/cover no-repeat;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(70, 130, 180, 0.3);
  padding: 6px 20px;
}

.hero-title {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-full {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}

.section:nth-child(even) {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-placeholder, .work-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--gray-400);
  font-size: 14px;
  gap: 8px;
}

.placeholder-icon {
  font-size: 48px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image {
  position: relative;
}

.badge-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  font-weight: 500;
}

.about-content .section-label { margin-bottom: 8px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }

.about-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 2;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.feature-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
  background: var(--primary) !important;
}

.services .section-label {
  color: var(--accent-light);
}

.services .section-title {
  color: var(--white);
}

.services .section-desc {
  color: var(--gray-400);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(70, 130, 180, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon {
  font-size: 28px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
}

.service-list li {
  font-size: 13px;
  color: var(--gray-300);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== WORKS ===== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.work-img-placeholder span {
  font-size: 14px;
}

.work-content {
  padding: 24px;
}

.work-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(70, 130, 180, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.work-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.work-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== NUMBERS ===== */
.numbers {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
}

.numbers .section-label { color: var(--accent-light); }
.numbers .section-title { color: var(--white); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.number-card {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(70, 130, 180, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
}

.number-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}

.number-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-light);
  margin-left: 4px;
}

.number-label {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 8px;
}

/* ===== FLOW ===== */
.flow-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.flow-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.flow-step:last-child { margin-bottom: 0; }

.flow-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.flow-content {
  padding-top: 12px;
}

.flow-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.flow-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== COMPANY ===== */
.company-table {
  max-width: 800px;
  margin: 0 auto;
}

.company-table table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  text-align: left;
}

.company-table th {
  font-weight: 600;
  color: var(--primary);
  width: 160px;
  background: var(--gray-50);
}

.company-table td {
  color: var(--text);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--gray-50) !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-label { margin-bottom: 8px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }

.contact-info > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item small {
  display: block;
  font-size: 12px;
  color: var(--text-light);
}

.contact-item strong {
  font-size: 16px;
  color: var(--primary);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 16px;
}

.footer-brand .logo-main { font-size: 16px; }

.footer-nav h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-nav a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
}

.footer-credit a {
  color: var(--accent-light);
}

.footer-credit a:hover {
  color: var(--white);
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0D2847 100%) !important;
  padding: 80px 0;
}

.cta-box {
  text-align: center;
}

.cta-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 2;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
}

.cta-feature-icon {
  font-size: 20px;
}

/* ===== STRENGTHS ===== */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.strength-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.strength-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 12px;
}

.strength-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== EQUIPMENT ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.equipment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.equipment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.equipment-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.equipment-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  padding: 20px 20px 8px;
}

.equipment-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  padding: 0 20px 20px;
}

/* ===== AREA ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}

.area-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.area-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.5;
}

.faq-a {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strengths-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .cta-features { gap: 16px; }
}

@media (max-width: 768px) {
  .sample-banner { font-size: 11px; padding: 8px 16px; }
  .header { top: 34px; }
  .header-inner { height: 60px; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 94px;
    left: 0;
    width: 100%;
    height: calc(100vh - 94px);
    background: rgba(11, 29, 51, 0.98);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
  }

  .nav-list a {
    font-size: 18px;
    color: var(--white);
  }

  .hero { min-height: 100vh; padding-top: 94px; }
  .hero-title { font-size: clamp(28px, 8vw, 48px); }
  .hero-desc { font-size: 14px; }

  .section { padding: 64px 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .number-value { font-size: 36px; }

  .flow-steps::before { left: 24px; }
  .flow-number { width: 48px; height: 48px; font-size: 14px; }
  .flow-step { gap: 20px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap { padding: 24px; }

  .company-table th {
    width: 120px;
    padding: 12px;
  }
  .company-table td { padding: 12px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn { width: 100%; max-width: 280px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-value { font-size: 32px; }
}
