/* ============================================
   FORGE設備 - Industrial Equipment Engineering
   Color: Dark Steel #2C2C2C + Orange #F57C00
   ============================================ */

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

:root {
  --dark: #2C2C2C;
  --darker: #1a1a1a;
  --orange: #F57C00;
  --orange-dark: #E65100;
  --orange-light: #FFB74D;
  --light: #F0F0F0;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-dark: #555555;
  --gray-light: #D0D0D0;
  --font-en: 'Barlow', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

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

body {
  font-family: var(--font-jp);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.pc-only { display: inline; }

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

a {
  color: inherit;
  text-decoration: none;
}

/* Sample Banner */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  z-index: 10000;
  letter-spacing: 0.5px;
}

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

/* Header */
.header {
  position: fixed;
  top: 37px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 124, 0, 0.15);
  transition: all 0.3s ease;
}

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

.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-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-en {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-jp {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

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

.nav-desktop a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

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

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

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

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

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

.nav-cta:hover {
  background: var(--orange-dark) !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: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.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);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--darker);
  z-index: 1050;
  padding: 120px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(245, 124, 0, 0.2);
}

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

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.mobile-nav-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 124, 0, 0.3);
}

.mobile-nav-phone {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

.mobile-nav-hours {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(44, 44, 44, 0.75) 50%, rgba(26, 26, 26, 0.85) 100%);
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(245, 124, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 124, 0, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(245, 124, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-family: var(--font-jp);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 124, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Section common */
.section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label.center { text-align: center; }
.section-label.light { color: var(--orange-light); }

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

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

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

/* About */
.about {
  background: var(--light);
}

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

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

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

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

.about-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.about-badge-num {
  display: block;
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

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

.about-text p {
  color: var(--gray-dark);
  font-size: 15px;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--dark) !important;
  margin-bottom: 24px !important;
  line-height: 1.7;
}

.about-features {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 20px;
  border-left: 3px solid var(--orange);
}

.about-feature span {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

/* BIM */
.bim {
  background: var(--darker);
}

.bim .section-title { color: var(--white); }
.bim .section-desc { color: rgba(255, 255, 255, 0.6); }

.bim-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.bim-visual {
  background: var(--dark);
  border: 1px solid rgba(245, 124, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.bim-svg {
  width: 100%;
  height: auto;
  display: block;
}

.bim-benefits {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bim-benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bim-benefit-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.bim-benefit h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.bim-benefit p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* Services */
.services {
  background: var(--light);
}

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

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: all 0.4s;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 2px;
  background: var(--orange);
}

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

.work-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

.work-tag {
  position: absolute;
  top: 16px;
  left: 0;
  background: var(--orange);
  color: var(--white);
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
}

.work-body {
  padding: 24px;
}

.work-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.5;
}

.work-body p {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.work-meta span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  padding-left: 12px;
  border-left: 2px solid var(--orange);
}

/* Numbers */
.numbers {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

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

.numbers-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numbers-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.9);
}

.numbers .container {
  position: relative;
  z-index: 1;
}

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

.number-item {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(245, 124, 0, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s;
}

.number-item:hover {
  border-color: var(--orange);
  background: rgba(245, 124, 0, 0.05);
}

.number-value {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

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

.number-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

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

.flow-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(245, 124, 0, 0.2));
}

.flow-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.flow-step-num {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  background: var(--orange);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  z-index: 1;
}

.flow-step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
  padding-top: 4px;
}

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

/* Company */
.company {
  background: var(--light);
}

.company-table-wrap {
  max-width: 800px;
  margin: 0 auto;
}

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

.company-table tr {
  border-bottom: 1px solid var(--gray-light);
}

.company-table th {
  text-align: left;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  width: 160px;
  vertical-align: top;
  background: rgba(245, 124, 0, 0.04);
  border-left: 3px solid var(--orange);
}

.company-table td {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* Contact */
.contact {
  background: var(--white);
}

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

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

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

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--light);
  border-left: 3px solid var(--orange);
}

.contact-method-icon {
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-method-label {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-method-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.contact-method-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--light);
  padding: 40px;
}

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

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

.required {
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  padding: 2px 6px;
  margin-left: 6px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-jp);
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

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

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--darker);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 0;
}

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

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--orange);
  display: inline-block;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-phone {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange) !important;
  margin-top: 8px;
}

.footer-hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

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

.footer-bottom a {
  color: var(--orange);
  transition: opacity 0.3s;
}

.footer-bottom a:hover {
  opacity: 0.7;
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */

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

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

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

  .about-visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pc-only { display: none; }

  .sample-banner {
    font-size: 11px;
    padding: 6px 12px;
  }

  .header {
    top: 33px;
  }

  .header-inner {
    height: 60px;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

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

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

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

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

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

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

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

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

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

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

  .company-table th {
    display: block;
    width: 100%;
    padding: 12px 16px 4px;
  }

  .company-table td {
    display: block;
    padding: 4px 16px 12px;
  }

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

  .logo-en {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .flow-step {
    flex-direction: column;
    padding-left: 0;
    gap: 12px;
  }

  .flow-steps::before {
    display: none;
  }
}
