/* ========================================
   ROYAL解体 - Urban Premium Demolition
   ======================================== */

:root {
  --charcoal: #1C1C1C;
  --royal: #2B47A8;
  --royal-light: #3A5BC7;
  --royal-dark: #1E3380;
  --silver: #C0C0C0;
  --silver-light: #D8D8D8;
  --silver-dark: #8A8A8A;
  --white: #FFFFFF;
  --bg: #111111;
  --bg-section: #161616;
  --bg-card: #1A1A1A;
  --text: #E8E8E8;
  --text-dim: #999999;
  --text-muted: #666666;
  --success: #4CAF50;
  --danger: #ff4444;
}

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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ========= Banner ========= */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--royal);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.sample-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}

/* ========= Header ========= */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 192, 192, 0.08);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.95);
  border-bottom-color: rgba(192, 192, 192, 0.12);
}

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

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

.logo-icon { flex-shrink: 0; }

.logo-en {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.logo-accent {
  color: var(--royal-light);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-left: 2px;
}

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

.nav-desktop a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

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

.nav-cta {
  background: var(--royal);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--royal-light) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(30px);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav.active { right: 0; }

.mobile-nav-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.3s;
  display: block;
}

.mobile-nav-link:hover { color: var(--white); }

.mobile-nav-cta {
  display: inline-block;
  background: var(--royal);
  color: var(--white) !important;
  padding: 12px 40px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 8px;
}

.mobile-nav-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.mobile-nav-phone {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.mobile-nav-hours {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========= Hero ========= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 108px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.7) 0%,
    rgba(17, 17, 17, 0.5) 40%,
    rgba(17, 17, 17, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--silver);
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 16px;
  color: var(--silver-light);
  line-height: 2;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
}

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

.btn-primary:hover { background: var(--royal-light); transform: translateY(-2px); }

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

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

.btn-full { width: 100%; text-align: center; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stat-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--royal-light);
  margin-left: 2px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--silver-dark);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(192, 192, 192, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--silver-dark);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--silver-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

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

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

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--royal-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-label.center { text-align: center; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title.center { text-align: center; }

.section-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 48px;
}

.section-desc.center { text-align: center; }

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

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-wrap {
  width: 100%;
  max-width: 300px;
}

.about-abstract { width: 100%; height: auto; }

.about-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--royal);
  padding: 16px 20px;
  text-align: center;
  border-radius: 4px;
}

.about-badge-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: 0.05em;
}

.about-badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--silver);
}

.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--silver-light);
  line-height: 2;
  margin-bottom: 16px;
}

.about-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(43, 71, 168, 0.1);
  border: 1px solid rgba(43, 71, 168, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.about-feature span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========= Technology ========= */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tech-diagram {
  display: flex;
  justify-content: center;
}

.tech-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(192, 192, 192, 0.08);
  border-radius: 8px;
  padding: 20px;
}

.tech-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.tech-item {
  display: flex;
  gap: 20px;
}

.tech-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--royal);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.tech-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.tech-info p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(192, 192, 192, 0.06);
  border-radius: 8px;
  padding: 36px 24px;
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: rgba(43, 71, 168, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  margin-bottom: 20px;
}

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

.service-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags span {
  font-size: 11px;
  color: var(--royal-light);
  background: rgba(43, 71, 168, 0.1);
  border: 1px solid rgba(43, 71, 168, 0.15);
  padding: 3px 10px;
  border-radius: 3px;
}

/* ========= Record ========= */
.record {
  background: linear-gradient(135deg, var(--charcoal) 0%, #0f1a3d 100%);
}

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

.record-item {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(192, 192, 192, 0.06);
  border-radius: 8px;
}

.record-num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.record-unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--royal-light);
  margin-left: 2px;
}

.record-label {
  font-size: 13px;
  color: var(--silver-dark);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.record-clients {
  text-align: center;
}

.record-clients-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.record-clients-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.record-clients-list span {
  font-size: 14px;
  color: var(--silver);
  padding: 8px 20px;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

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

.work-card {
  background: var(--bg-card);
  border: 1px solid rgba(192, 192, 192, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.work-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover .work-img img { transform: scale(1.08); }

.work-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.work-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: var(--royal);
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.work-info {
  padding: 24px;
}

.work-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.work-info p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-meta span {
  font-size: 11px;
  color: var(--silver-dark);
  background: rgba(192, 192, 192, 0.06);
  padding: 3px 10px;
  border-radius: 3px;
}

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

.flow-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(43, 71, 168, 0.2);
}

.flow-step {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
}

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

.flow-num {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--royal-light);
  background: var(--bg);
  width: 56px;
  height: 56px;
  border: 2px solid rgba(43, 71, 168, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

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

.flow-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

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

/* ========= Company ========= */
.company-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(192, 192, 192, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

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

.company-table th,
.company-table td {
  padding: 18px 24px;
  font-size: 14px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.06);
  text-align: left;
  vertical-align: top;
}

.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }

.company-table th {
  width: 180px;
  color: var(--silver);
  font-weight: 500;
  background: rgba(43, 71, 168, 0.04);
}

.company-table td {
  color: var(--text-dim);
  line-height: 1.8;
}

/* ========= Contact ========= */
.contact {
  background: linear-gradient(135deg, #0f1a3d 0%, var(--charcoal) 100%);
}

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

.contact-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 32px;
}

.contact-phone {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(192, 192, 192, 0.08);
  border-radius: 8px;
}

.contact-phone-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.contact-phone-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
}

.contact-phone-hours {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.required {
  font-size: 10px;
  color: var(--royal-light);
  background: rgba(43, 71, 168, 0.15);
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 4px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--royal);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--text);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ========= Footer ========= */
.footer {
  background: #0A0A0A;
  padding: 60px 0 0;
  border-top: 1px solid rgba(192, 192, 192, 0.06);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.06);
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.3s;
}

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

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

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.3s;
}

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

/* ========= Animations ========= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 100svh; }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat-num { font-size: 28px; }
  .hero-stat-divider { height: 30px; }

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

  .about-visual { order: -1; }
  .about-icon-wrap { max-width: 200px; }

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

  .tech-svg { max-width: 320px; }

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

  .works-grid { grid-template-columns: 1fr; }
  .work-img { height: 200px; }

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

  .company-table th {
    width: 120px;
    padding: 14px 16px;
  }

  .company-table td { padding: 14px 16px; }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-links { gap: 14px; }

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

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

  .flow-steps::before { left: 27px; }

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-stat-num { font-size: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 16px; }

  .btn { padding: 12px 28px; font-size: 13px; }

  .record-numbers { grid-template-columns: 1fr 1fr; }
  .record-num { font-size: 32px; }

  .contact-phone-num { font-size: 22px; }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding-bottom: 4px;
    border-bottom: none;
    font-weight: 700;
    color: var(--royal-light);
    font-size: 12px;
  }

  .company-table td { padding-top: 0; }
}
