/* ===== TITAN LOGISTICS - Style ===== */

:root {
  --charcoal: #1A1A1A;
  --charcoal-light: #2A2A2A;
  --charcoal-mid: #333333;
  --orange: #E65100;
  --orange-dark: #BF360C;
  --orange-light: #FF6D00;
  --gray: #E0E0E0;
  --gray-dark: #9E9E9E;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --text: #E0E0E0;
  --text-dark: #1A1A1A;
  --font-en: 'Barlow', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);
}

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

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

.text-accent {
  color: var(--orange);
}

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

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 81, 0, 0.15);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-top: 2px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray);
  position: relative;
  transition: color 0.3s;
}

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

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

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s, transform 0.3s;
}

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

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.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;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

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

.mobile-nav-link {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color 0.3s;
}

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

.mobile-nav-cta {
  margin-top: 16px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 14px 40px;
  border-radius: 4px;
}

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

.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 {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

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

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

.hero-pre {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 0.8s 0.5s forwards;
}

.hero-desc {
  font-size: 18px;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s 0.7s forwards;
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 0.8s 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  font-family: var(--font-jp);
}

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

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 81, 0, 0.4);
}

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

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

.btn-full {
  width: 100%;
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: -60px;
  background: var(--orange);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroFadeIn 0.8s 1.1s forwards;
}

.hero-badge-num {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-badge-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
}

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

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray-dark);
}

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

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

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

.section-dark {
  background: var(--charcoal-light);
}

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

.section-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 12px;
}

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

.section-desc {
  font-size: 15px;
  color: var(--gray-dark);
  margin-top: 16px;
}

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

.about-visual {
  text-align: center;
}

.about-icon-wrap {
  width: 260px;
  height: 260px;
  margin: 0 auto;
  background: var(--charcoal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(230, 81, 0, 0.2);
}

.about-icon-wrap svg {
  width: 140px;
  height: 140px;
}

.about-accent-text {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--orange);
  margin-top: 24px;
}

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

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal-light);
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid rgba(230, 81, 0, 0.15);
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 24px;
  height: 24px;
}

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

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

.fleet-card {
  background: var(--charcoal);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.fleet-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.fleet-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 3px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
}

.fleet-card-body {
  padding: 24px 20px;
}

.fleet-card-body h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

.fleet-card-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 16px;
}

.fleet-specs {
  list-style: none;
}

.fleet-specs li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.fleet-specs li:last-child {
  border-bottom: none;
}

.fleet-specs li span {
  color: var(--gray-dark);
}

.fleet-specs li strong {
  color: var(--white);
  font-weight: 700;
}

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

.service-card {
  background: var(--charcoal-light);
  padding: 40px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.4s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 81, 0, 0.2);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 64px;
  height: 64px;
}

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

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

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

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

.work-card:hover {
  transform: translateY(-8px);
}

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

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

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

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.work-card-tag {
  background: var(--orange);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
}

.work-card-body {
  padding: 24px;
}

.work-card-body h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.work-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.work-card-meta span {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.work-card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-dark);
}

/* ===== Numbers ===== */
.numbers {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  border-top: 1px solid rgba(230, 81, 0, 0.15);
  border-bottom: 1px solid rgba(230, 81, 0, 0.15);
}

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

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

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

.number-label {
  font-size: 14px;
  color: var(--gray-dark);
  font-weight: 500;
}

/* ===== 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: rgba(230, 81, 0, 0.2);
}

.flow-step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}

.flow-step-num {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 900;
  color: var(--orange);
  background: var(--charcoal-light);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--orange);
  position: relative;
  z-index: 1;
}

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

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

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

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

.company-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.company-table th {
  text-align: left;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  width: 160px;
  vertical-align: top;
  white-space: nowrap;
}

.company-table td {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--gray);
}

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

.contact-phone {
  background: var(--charcoal);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(230, 81, 0, 0.2);
}

.contact-phone-label {
  font-size: 14px;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.contact-phone-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.05em;
  display: block;
  transition: color 0.3s;
}

.contact-phone-num:hover {
  color: var(--orange-light);
}

.contact-phone-hours {
  font-size: 13px;
  color: var(--gray-dark);
  margin-top: 8px;
}

.contact-note {
  margin-top: 24px;
}

.contact-note p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.9;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-jp);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
  opacity: 0.5;
}

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

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

/* ===== Footer ===== */
.footer {
  background: #111111;
  padding: 60px 0 0;
  border-top: 1px solid rgba(230, 81, 0, 0.15);
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--gray-dark);
  transition: color 0.3s;
}

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

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

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

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

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

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

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .sample-banner {
    font-size: 11px;
    padding: 6px 12px;
  }

  .header {
    top: 32px;
  }

  .header-inner {
    height: 64px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero-desc br {
    display: none;
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 90px;
    height: 90px;
    margin-top: 32px;
  }

  .hero-badge-num {
    font-size: 30px;
  }

  .hero-badge-text {
    font-size: 10px;
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .company-table th {
    width: 110px;
    padding: 14px 12px;
  }

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

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

  .flow-step-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .flow-step {
    gap: 20px;
  }

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 38px;
  }

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

  .btn {
    padding: 14px 28px;
    font-size: 14px;
    text-align: center;
  }

  .about-icon-wrap {
    width: 200px;
    height: 200px;
  }

  .about-icon-wrap svg {
    width: 100px;
    height: 100px;
  }

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