/* ===== MEDICAL WASTE - style.css ===== */

/* -------------------------
   Reset & Base
   ------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: #333;
  line-height: 1.8;
  overflow-x: hidden;
  background: #fff;
}

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

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

ul {
  list-style: none;
}

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

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

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00796B;
  margin-bottom: 12px;
}

.section-label.white {
  color: #80CBC4;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #1A1A1A;
}

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

.section-desc {
  font-size: 16px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

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

/* -------------------------
   Buttons
   ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #00796B;
  color: #fff;
  border-color: #00796B;
}

.btn-primary:hover {
  background: #00695C;
  border-color: #00695C;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 121, 107, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-full {
  width: 100%;
}

/* -------------------------
   Sample Banner
   ------------------------- */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #00796B;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* -------------------------
   Header
   ------------------------- */
.header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 121, 107, 0.06);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

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

.logo-icon {
  font-size: 24px;
  color: #00796B;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: 1px;
}

.logo-accent {
  color: #00796B;
}

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

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #00796B;
}

.nav-desktop a.active {
  color: #00796B;
  font-weight: 700;
}

.nav-cta {
  background: #00796B;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
}

.nav-cta:hover {
  background: #00695C;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* -------------------------
   Mobile Nav
   ------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 121, 107, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav-link {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
}

.mobile-nav.active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav.active .mobile-nav-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav.active .mobile-nav-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav.active .mobile-nav-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav.active .mobile-nav-link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav.active .mobile-nav-link:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-nav-link.cta {
  display: inline-block;
  border: 2px solid #fff;
  padding: 12px 40px;
  border-radius: 8px;
  margin-top: 12px;
}

/* -------------------------
   Hero
   ------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #00796B 0%, #00695C 50%, #004D40 100%);
  overflow: hidden;
  padding-top: 104px;
}

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

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.hero-shape.s1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  animation: heroFloat 18s infinite ease-in-out;
}

.hero-shape.s2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -60px;
  animation: heroFloat 22s infinite ease-in-out reverse;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 2;
  margin-bottom: 40px;
  opacity: 0.85;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scrollDot 2s infinite;
  opacity: 0.5;
}

@keyframes scrollDot {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* -------------------------
   About
   ------------------------- */
.about {
  background: #fff;
}

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

.about-img-box {
  background: #E0F2F1;
  border-radius: 20px;
  padding: 40px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.medical-illustration {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.med-truck {
  position: relative;
  width: 140px;
  height: 80px;
}

.truck-body {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 90px;
  height: 50px;
  background: #00796B;
  border-radius: 6px;
  opacity: 0.7;
}

.truck-cab {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 40px;
  height: 35px;
  background: #00695C;
  border-radius: 4px 8px 4px 4px;
  opacity: 0.7;
}

.truck-cross {
  position: absolute;
  bottom: 25px;
  left: 35px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  opacity: 0.8;
}

.truck-wheel {
  position: absolute;
  bottom: 0;
  width: 16px;
  height: 16px;
  background: #333;
  border-radius: 50%;
}

.truck-wheel.w1 {
  left: 15px;
}

.truck-wheel.w2 {
  right: 10px;
}

.med-container {
  position: relative;
  width: 70px;
  height: 90px;
}

.container-box {
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 70px;
  background: #fff;
  border: 2px solid #00796B;
  border-radius: 6px;
}

.container-lid {
  position: absolute;
  bottom: 70px;
  left: -3px;
  width: 76px;
  height: 12px;
  background: #00796B;
  border-radius: 4px;
  opacity: 0.8;
}

.biohazard-mark {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: #00796B;
  opacity: 0.5;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: #00796B;
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 121, 107, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.badge-icon {
  font-size: 18px;
  opacity: 0.7;
}

.badge-number {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

.about-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
  line-height: 2;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  font-size: 13px;
  color: #00796B;
  background: #E0F2F1;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 500;
}

/* -------------------------
   Safety
   ------------------------- */
.safety {
  background: #E0F2F1;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.safety-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 121, 107, 0.12);
}

.safety-num {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #E0F2F1;
  position: absolute;
  top: -5px;
  right: 10px;
  line-height: 1;
}

.safety-icon-box {
  margin-bottom: 16px;
}

.safety-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.safety-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #00796B;
  margin-bottom: 10px;
}

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

/* -------------------------
   Services
   ------------------------- */
.services {
  background: #fff;
}

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

.service-card {
  background: #FAFAFA;
  border: 1px solid #E0F2F1;
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 121, 107, 0.1);
  border-color: #00796B;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.service-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #B2DFDB;
  line-height: 1;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 14px;
}

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

.service-tags span {
  font-size: 12px;
  color: #00796B;
  background: #E0F2F1;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 500;
}

/* -------------------------
   Numbers
   ------------------------- */
.numbers {
  background: linear-gradient(135deg, #00796B, #004D40);
}

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

.number-card {
  text-align: center;
  padding: 30px 16px;
}

.number-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.number-unit {
  font-size: 18px;
  color: #80CBC4;
  font-weight: 600;
  margin-left: 4px;
}

.number-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* -------------------------
   Works
   ------------------------- */
.works {
  background: #FAFAFA;
}

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

.work-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

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

.work-image {
  height: 180px;
  background: #E0F2F1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.work-illust {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-svg {
  width: 120px;
  height: 80px;
}

.work-type {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #00796B;
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
}

.work-content {
  padding: 24px;
}

.work-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

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

/* -------------------------
   Certifications
   ------------------------- */
.certifications {
  background: #fff;
}

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

.cert-card {
  background: #E0F2F1;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.cert-card:hover {
  background: #B2DFDB;
  transform: translateY(-3px);
}

.cert-badge {
  font-size: 32px;
  color: #00796B;
  margin-bottom: 12px;
}

.cert-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #00796B;
  margin-bottom: 8px;
  line-height: 1.5;
}

.cert-card p {
  font-size: 13px;
  color: #555;
}

/* -------------------------
   Flow
   ------------------------- */
.flow {
  background: #E0F2F1;
}

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

.flow-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #B2DFDB;
}

.flow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}

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

.step-circle {
  min-width: 56px;
  height: 56px;
  background: #00796B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.step-content {
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #00796B;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: #666;
}

/* -------------------------
   Company
   ------------------------- */
.company {
  background: #FAFAFA;
}

.company-table {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

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

.company-table th,
.company-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.company-table th {
  background: #E0F2F1;
  color: #00796B;
  font-weight: 700;
  width: 180px;
}

.company-table td {
  color: #555;
}

/* -------------------------
   Contact
   ------------------------- */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 950px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.contact-card {
  background: #E0F2F1;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #00796B;
}

.contact-card.emergency {
  background: #FFF3E0;
  border-left-color: #E65100;
}

.contact-card.emergency .contact-icon {
  color: #E65100;
}

.contact-card.emergency .contact-value {
  color: #E65100;
}

.contact-icon {
  font-size: 22px;
  color: #00796B;
  margin-bottom: 6px;
}

.contact-label {
  font-size: 13px;
  color: #999;
}

.contact-value {
  font-size: 22px;
  font-weight: 700;
  color: #00796B;
}

.contact-note {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

.contact-form {
  background: #E0F2F1;
  padding: 36px;
  border-radius: 14px;
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  font-weight: 500;
}

.req {
  color: #E65100;
  font-size: 12px;
  margin-left: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #B2DFDB;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #333;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #00796B;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BBB;
}

/* -------------------------
   Footer
   ------------------------- */
.footer {
  background: #004D40;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer-brand .logo-icon {
  color: #80CBC4;
}

.footer-brand .logo-text {
  color: #fff;
}

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

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #80CBC4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit a {
  color: #80CBC4;
  font-weight: 500;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* -------------------------
   FAQ
   ------------------------- */
.faq {
  background: #fff;
}

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

.faq-item {
  background: #E0F2F1;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 121, 107, 0.1);
}

.faq-question {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.faq-q {
  min-width: 32px;
  height: 32px;
  background: #00796B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  padding-top: 4px;
}

.faq-answer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-left: 2px;
}

.faq-a {
  min-width: 32px;
  height: 32px;
  background: #B2DFDB;
  color: #00796B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  padding-top: 4px;
}

/* -------------------------
   CTA Section
   ------------------------- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #00796B, #004D40);
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.5;
}

.cta-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #80CBC4;
}

.cta-phone-icon {
  font-size: 20px;
}

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

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

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

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

  .works-grid .work-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

/* -------------------------
   Responsive - Mobile
   ------------------------- */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 134px;
  }

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

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

  .safety-grid .safety-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

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

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

  .works-grid .work-card:last-child {
    grid-column: auto;
    max-width: none;
  }

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

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

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

  .company-table th {
    width: 130px;
  }

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

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

/* -------------------------
   Responsive - Small Mobile
   ------------------------- */
@media (max-width: 480px) {
  .section {
    padding: 70px 0;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .safety-grid .safety-card:last-child {
    grid-column: auto;
    max-width: none;
  }

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

  .company-table th,
  .company-table td {
    padding: 14px 16px;
    font-size: 14px;
    display: block;
    width: 100%;
  }

  .company-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .company-table td {
    padding-top: 4px;
  }
}
