/* ===== Reset & Base ===== */
*, *::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-size: 16px;
  line-height: 1.8;
  color: #1a1a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  opacity: 0.85;
}

ul {
  list-style: none;
}

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

.sp-only {
  display: none;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  height: 72px;
}

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

.logo img {
  height: 32px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0d5c8f;
  transition: width 0.3s;
}

.header-nav a:hover {
  opacity: 1;
  color: #0d5c8f;
}

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

.header-cta {
  display: inline-block;
  background: linear-gradient(135deg, #e85d2a 0%, #f07b4f 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.3s;
}

.header-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 93, 42, 0.3);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #e85d2a 0%, #f07b4f 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 93, 42, 0.25);
}

.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 42, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: #0d5c8f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  font-size: 17px;
  padding: 16px 40px;
  border-radius: 10px;
}

.btn-icon {
  font-size: 1.2em;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-truck.jpg') center center / cover no-repeat;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(6, 30, 55, 0.95) 0%,
      rgba(13, 70, 120, 0.88) 30%,
      rgba(20, 100, 160, 0.78) 55%,
      rgba(232, 93, 42, 0.55) 85%,
      rgba(255, 140, 50, 0.45) 100%
    );
}

.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(232, 93, 42, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(13, 92, 143, 0.3) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  color: #fff;
}

.hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ffb347, #ff8f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 12px 20px;
  border-radius: 10px;
  transition: background 0.3s;
}

.hero-points li:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero-points li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #ffb347, #ff8f1c);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 22px 30px;
  text-align: center;
  min-width: 165px;
  transition: transform 0.3s, background 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 8px;
}

.stat-value {
  display: block;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffb347, #ff8f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-value small {
  font-size: 16px;
  font-weight: 600;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  opacity: 0.55;
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  line-height: 1.4;
}

.section-title.white {
  color: #fff;
}

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

.text-accent {
  color: #0d5c8f;
}

.text-yellow {
  color: #ffb347;
}

/* ===== Problems ===== */
.problems {
  padding: 100px 0;
  background: #f8f9fb;
}

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

.problem-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eef1f5;
  display: flex;
  flex-direction: row;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.problem-img-wrap {
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.problem-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
  color: #1a1a2e;
}

.problem-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ===== Solution ===== */
.solution {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, #061e37 0%, #0a3a65 35%, #0d5c8f 65%, #1a7ab5 100%);
  overflow: hidden;
}

.solution-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 80%, rgba(232, 93, 42, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 20%, rgba(255, 179, 71, 0.08) 0%, transparent 40%);
}

.solution-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

.solution-text {
  flex: 1;
}

.solution-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #ffb347;
  letter-spacing: 3px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 179, 71, 0.4);
  padding: 6px 24px;
  border-radius: 50px;
}

.solution-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 2;
}

.solution-image {
  flex-shrink: 0;
  width: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.solution-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ===== Features ===== */
.features {
  padding: 100px 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef1f5;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-img-wrap {
  width: 380px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.feature-item:hover .feature-img {
  transform: scale(1.05);
}

.feature-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0d5c8f, #1a7ab5);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  border-radius: 14px;
  margin-bottom: 16px;
}

.feature-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.feature-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}

/* ===== CTA Mid ===== */
.cta-mid {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.cta-mid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      #e85d2a 0%,
      #f07b4f 40%,
      #ff9a5c 70%,
      #ffb347 100%
    );
}

.cta-mid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.cta-mid-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-mid-text {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.cta-mid-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ===== Service ===== */
.service {
  padding: 100px 0;
  background: #f8f9fb;
}

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

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef1f5;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card-img {
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.service-card-body {
  padding: 28px 24px;
}

.service-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0d5c8f;
}

.service-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-card-body ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.service-card-body ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #0d5c8f;
  font-weight: 700;
}

/* ===== Flow ===== */
.flow {
  padding: 100px 0;
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.flow-step {
  flex: 1;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef1f5;
  transition: transform 0.3s;
}

.flow-step:hover {
  transform: translateY(-4px);
}

.flow-step-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0d5c8f, #1a7ab5);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.flow-step-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.flow-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.flow-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: #0d5c8f;
  font-size: 22px;
  padding-top: 80px;
  opacity: 0.35;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: #f8f9fb;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #eef1f5;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  padding: 20px 52px 20px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: #1a1a2e;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0d5c8f, #1a7ab5);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #0d5c8f;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 28px 20px 68px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* ===== Contact ===== */
.contact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.contact-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      #061e37 0%,
      #0a3a65 25%,
      #0d5c8f 50%,
      #1a7ab5 75%,
      #2490c8 100%
    );
}

.contact-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 90%, rgba(232, 93, 42, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 10%, rgba(255, 179, 71, 0.08) 0%, transparent 40%);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #fff;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
}

.contact-phone {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #ffb347 !important;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.contact-email {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #ffb347 !important;
  margin-bottom: 8px;
}

.contact-hours {
  font-size: 13px;
  opacity: 0.65;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form-wrapper h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1a1a2e;
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.required {
  background: linear-gradient(135deg, #e85d2a, #f07b4f);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid #e0e4ea;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d5c8f;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 92, 143, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 12px;
}

.btn-submit {
  min-width: 280px;
}

/* ===== Company ===== */
.company {
  padding: 80px 0;
}

.company-table {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid #eef1f5;
}

.company-table th,
.company-table td {
  padding: 16px 20px;
  font-size: 15px;
  text-align: left;
}

.company-table th {
  width: 160px;
  font-weight: 600;
  color: #0d5c8f;
  background: #f8f9fb;
  border-radius: 6px 0 0 6px;
}

.company-table td a {
  color: #0d5c8f;
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  padding: 32px 0;
  background: #0f0f1e;
  color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  opacity: 0.6;
  filter: brightness(10);
}

.footer-copy {
  font-size: 13px;
}

/* ===== Fixed CTA ===== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.fixed-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.fixed-cta-phone {
  background: #fff;
  color: #0d5c8f;
}

.fixed-cta-form {
  background: linear-gradient(135deg, #e85d2a, #f07b4f);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .feature-img-wrap {
    width: 300px;
  }

  .solution-image {
    width: 300px;
  }
}

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

  .header-nav {
    display: none;
  }

  .header-cta {
    font-size: 13px;
    padding: 8px 16px;
  }

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

  .hero-sub {
    font-size: 16px;
  }

  .hero-points li {
    font-size: 14px;
    padding: 10px 16px;
    gap: 10px;
  }

  .hero-points li::before {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-card {
    min-width: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    text-align: left;
  }

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

  .section-title {
    font-size: 26px;
    margin-bottom: 36px;
  }

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

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

  .problem-img-wrap {
    width: 120px;
  }

  .solution-inner {
    flex-direction: column;
    gap: 32px;
  }

  .solution-image {
    width: 100%;
  }

  .solution-image img {
    height: 200px;
  }

  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
  }

  .feature-img-wrap {
    width: 100%;
    height: 200px;
  }

  .feature-body {
    padding: 28px 24px;
  }

  .flow-steps {
    flex-direction: column;
    gap: 16px;
  }

  .flow-arrow {
    display: none;
  }

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

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

  .contact-form-wrapper {
    padding: 28px 20px;
  }

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

  .cta-mid-text {
    font-size: 18px;
  }

  .cta-mid-buttons {
    flex-direction: column;
    align-items: center;
  }

  .company-table th {
    width: 110px;
    font-size: 13px;
  }

  .company-table td {
    font-size: 14px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .fixed-cta {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }

  .solution-desc br {
    display: none;
  }

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

  .contact-desc br {
    display: none;
  }
}
