/* ========================================
   FORGE STAFFING - style.css
   Construction Staffing Website
   ======================================== */

/* --- 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-weight: 400;
  color: #333;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color .3s;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #F57C00;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.sp-only { display: none; }

/* --- Sample Banner --- */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #F57C00;
  color: #fff;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 16px;
  letter-spacing: .04em;
}

/* --- Section Headers --- */
.section-label {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .2em;
  color: #F57C00;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label--light { color: rgba(255,255,255,.7); }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.4;
  color: #222;
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-desc {
  font-size: 1rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }

/* --- Header --- */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(34,34,34,.95);
  backdrop-filter: blur(12px);
  transition: background .3s, box-shadow .3s;
}
.header.scrolled {
  background: rgba(34,34,34,.98);
  box-shadow: 0 2px 24px rgba(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-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: .06em;
}
.logo-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: .65rem;
  color: #F57C00;
  letter-spacing: .22em;
}
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .3s;
  letter-spacing: .02em;
}
.nav-desktop a:hover { color: #F57C00; }
.nav-cta {
  background: #F57C00 !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background .3s !important;
}
.nav-cta:hover { background: #E65100 !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 4px 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .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(34,34,34,.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav-inner { text-align: center; }
.mobile-nav-link {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  padding: 14px 0;
  transition: color .3s;
}
.mobile-nav-link:hover { color: #F57C00; }
.mobile-nav-cta {
  display: inline-block !important;
  margin-top: 20px;
  background: #F57C00;
  padding: 14px 40px !important;
  border-radius: 4px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-size: .95rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 4px;
  transition: all .3s;
  letter-spacing: .04em;
}
.btn-primary {
  background: #F57C00;
  color: #fff;
}
.btn-primary:hover { background: #E65100; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,124,0,.35); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline:hover { border-color: #F57C00; color: #F57C00; }
.btn-full { width: 100%; text-align: center; font-size: 1.05rem; padding: 18px; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 104px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,34,34,.88) 0%, rgba(34,34,34,.65) 50%, rgba(34,34,34,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .3em;
  color: #F57C00;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.8);
  line-height: 2;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'Barlow', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.3);
  margin: 8px auto 0;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F57C00;
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* --- About --- */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.about-visual { text-align: center; }
.about-icon-box {
  background: #F5F5F5;
  border-radius: 12px;
  padding: 48px;
  display: inline-block;
}
.about-accent-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: rgba(245,124,0,.12);
  margin-top: 16px;
  letter-spacing: .1em;
}
.about-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.9;
}
.about-text p { color: #555; margin-bottom: 20px; }
.about-points { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #222;
}
.about-point-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,124,0,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- For Companies --- */
.for-companies { background: #F5F5F5; }
.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.company-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  border-top: 4px solid #F57C00;
  transition: transform .3s, box-shadow .3s;
}
.company-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.company-card-num {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: rgba(245,124,0,.15);
  margin-bottom: 12px;
  line-height: 1;
}
.company-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 12px;
}
.company-card p { font-size: .92rem; color: #666; }

/* --- Qualifications --- */
.qualifications { background: #fff; }
.qual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.qual-item {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  border: 2px solid transparent;
}
.qual-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  border-color: rgba(245,124,0,.3);
}
.qual-icon { margin-bottom: 12px; }
.qual-item h4 { font-size: .9rem; font-weight: 700; color: #222; }

/* --- Services --- */
.services { background: #222; }
.services .section-label { color: #F57C00; }
.services .section-title { color: #fff; }
.services .section-desc { color: rgba(255,255,255,.6); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  transition: transform .3s, border-color .3s, background .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,124,0,.4);
  background: rgba(255,255,255,.06);
}
.service-icon { margin-bottom: 20px; }
.service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(245,124,0,.1);
  line-height: 1;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.service-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags li {
  font-size: .78rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(245,124,0,.12);
  color: #F57C00;
}

/* --- 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(34,34,34,.9);
}
.numbers .container { position: relative; z-index: 2; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.number-item { text-align: center; }
.number-value {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: #F57C00;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.number-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.number-label {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,124,0,.92), rgba(230,81,0,.88));
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.5;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btns .btn-primary {
  background: #fff;
  color: #F57C00;
}
.cta-btns .btn-primary:hover {
  background: #222;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.cta-btns .btn-outline {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  letter-spacing: .06em;
}
.cta-btns .btn-outline:hover {
  background: #fff;
  color: #F57C00;
  border-color: #fff;
}

/* --- Flow --- */
.flow { background: #F5F5F5; }
.flow-steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(245,124,0,.2);
}
.flow-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}
.flow-step-num {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  background: #F57C00;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(245,124,0,.3);
}
.flow-step-content { padding-top: 8px; }
.flow-step-content h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 8px;
}
.flow-step-content p { font-size: .92rem; color: #666; }

/* --- Company --- */
.company { background: #fff; }
.company-table-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid #eee; }
.company-table th {
  text-align: left;
  font-weight: 700;
  font-size: .92rem;
  color: #222;
  padding: 20px 16px 20px 0;
  width: 160px;
  vertical-align: top;
  white-space: nowrap;
}
.company-table td {
  font-size: .92rem;
  color: #555;
  padding: 20px 0;
  line-height: 1.8;
}

/* --- Contact --- */
.contact { background: #F5F5F5; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info p { color: #666; margin-top: 16px; margin-bottom: 32px; }
.contact-tel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid rgba(245,124,0,.2);
}
.contact-tel-label { font-size: .8rem; color: #888; display: block; }
.contact-tel-number {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #222;
  display: block;
  letter-spacing: .04em;
}
.contact-tel-hours { font-size: .8rem; color: #888; }
.contact-form-wrap {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.required {
  font-size: .7rem;
  color: #fff;
  background: #F57C00;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* --- Footer --- */
.footer {
  background: #1a1a1a;
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-top: 12px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: #F57C00;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: color .3s;
}
.footer-col a:hover { color: #F57C00; }
.footer-hours { font-size: .8rem; color: rgba(255,255,255,.3); margin-top: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: #F57C00; transition: opacity .3s; }
.footer-bottom a:hover { opacity: .7; }

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .companies-grid { grid-template-columns: 1fr; }
  .qual-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sample-banner { font-size: .72rem; padding: 5px 12px; }
  .header { top: 28px; }
  .header-inner { height: 60px; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .sp-only { display: inline; }
  .hero { min-height: 100svh; padding-top: 88px; }
  .hero-title { margin-bottom: 20px; }
  .hero-desc { margin-bottom: 32px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; text-align: center; }
  .about-icon-box { padding: 32px; }
  .about-icon-box svg { width: 80px; height: 80px; }
  .qual-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .qual-item { padding: 20px 14px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .number-value { font-size: 2.4rem; }
  .flow-steps::before { left: 24px; }
  .flow-step { gap: 20px; padding: 24px 0; }
  .flow-step-num { width: 48px; height: 48px; font-size: 1.1rem; }
  .company-table th { width: 110px; font-size: .85rem; padding: 14px 12px 14px 0; }
  .company-table td { font-size: .85rem; padding: 14px 0; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .qual-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: .85rem; }
  .section-title { font-size: 1.4rem; }
  .company-table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
    border-bottom: none;
  }
  .company-table td {
    display: block;
    padding-top: 0;
    padding-bottom: 16px;
  }
  .company-table tr {
    display: block;
    padding: 12px 0;
  }
  .contact-tel { flex-direction: column; align-items: center; text-align: center; }
  .contact-tel-number { font-size: 1.3rem; }
  .about-accent-text { font-size: 1.8rem; }
  .flow-step { gap: 16px; }
  .flow-step-num { width: 40px; height: 40px; font-size: .95rem; }
  .flow-steps::before { left: 20px; }
  .flow-step-content h3 { font-size: 1rem; }
  .flow-step-content p { font-size: .85rem; }
  .number-value { font-size: 2rem; }
  .number-label { font-size: .8rem; }
}

/* --- Loading & Polish --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: fadeIn .6s ease;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #F57C00;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: rgba(245, 124, 0, .2);
  color: #222;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F57C00;
}

/* Additional hover states */
.qual-item .qual-icon svg {
  transition: transform .3s;
}
.qual-item:hover .qual-icon svg {
  transform: scale(1.1);
}

.service-card .service-icon svg {
  transition: transform .3s;
}
.service-card:hover .service-icon svg {
  transform: scale(1.08) rotate(-2deg);
}

.flow-step-num {
  transition: transform .3s, box-shadow .3s;
}
.flow-step:hover .flow-step-num {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(245,124,0,.4);
}

/* Company card icon stripe */
.company-card {
  position: relative;
  overflow: hidden;
}
.company-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F57C00, transparent);
  opacity: 0;
  transition: opacity .3s;
}
.company-card:hover::after {
  opacity: 1;
}

/* Hero gradient line decoration */
.hero-content::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #F57C00;
  margin: 0 auto 20px;
}

/* About section divider */
.about-text .section-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #F57C00;
  vertical-align: middle;
  margin-left: 12px;
}

/* Number item hover */
.number-item {
  transition: transform .3s;
}
.number-item:hover {
  transform: translateY(-4px);
}

/* Contact info section title */
.contact-info .section-title {
  position: relative;
  display: inline-block;
}
.contact-info .section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #F57C00;
}

/* Service tag hover */
.service-tags li {
  transition: background .3s, color .3s;
}
.service-tags li:hover {
  background: #F57C00;
  color: #fff;
}

/* Print styles */
@media print {
  .sample-banner,
  .header,
  .mobile-nav,
  .hero-scroll { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .section { padding: 40px 0; }
  body { color: #000; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}
