/* ============================================
   SORA PRECISION - Aerospace Precision Mfg
   ============================================ */

:root {
  --navy: #0A1628;
  --navy-light: #0F1F38;
  --navy-mid: #152A4A;
  --sky: #4FC3F7;
  --sky-dark: #039BE5;
  --silver: #C0C0C0;
  --silver-light: #E0E0E0;
  --white: #FFFFFF;
  --text: #B0BEC5;
  --text-light: #78909C;
  --border: rgba(79, 195, 247, 0.12);
  --glow: rgba(79, 195, 247, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-en: 'Inter', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

*, *::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(--navy);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sky);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--white);
}

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

.section {
  padding: 100px 0;
}

/* Sample Banner */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(90deg, var(--sky), var(--sky-dark));
  color: var(--navy);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-jp);
}

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

/* Header */
.header {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  box-shadow: 0 4px 30px 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: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

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

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

.logo-main {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 1px;
}

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

.nav-desktop a {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--sky);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

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

.nav-cta:hover {
  background: var(--white);
  color: var(--navy) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 9100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

.hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--navy-light);
  z-index: 9050;
  padding: 100px 32px 40px;
  transition: right 0.4s ease;
  border-left: 1px solid var(--border);
}

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

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

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

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

.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(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.75) 50%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

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

.hero-label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

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

.btn-primary {
  background: var(--sky);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
}

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

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

.btn-full {
  width: 100%;
}

.hero-badges {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  flex-direction: column;
}

.badge-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1.2;
}

.badge-num small {
  font-size: 14px;
  font-weight: 400;
}

.badge-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-light);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--text-light);
  position: relative;
  overflow: hidden;
}

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

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

/* Section Headers */
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  max-width: 640px;
}

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

.section-header.center .section-desc {
  margin: 0 auto;
}

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

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

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

.about-icon-wrap {
  position: relative;
  animation: slowSpin 40s linear infinite;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-icon-wrap text {
  animation: slowSpin 40s linear infinite reverse;
  transform-origin: center;
}

.about-lead {
  font-size: 17px;
  color: var(--silver-light);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-text p {
  margin-bottom: 16px;
}

/* Aerospace */
.aerospace {
  background: var(--navy-light);
  position: relative;
}

.aerospace::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  opacity: 0.3;
}

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

.aero-card {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.aero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.aero-card:hover {
  border-color: rgba(79, 195, 247, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79, 195, 247, 0.08);
}

.aero-card-icon {
  margin-bottom: 24px;
}

.aero-card h3 {
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.aero-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

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

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

.service-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: rgba(79, 195, 247, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.service-num {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 800;
  color: rgba(79, 195, 247, 0.08);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}

.service-icon {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

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

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}

.service-tags li {
  font-size: 12px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--sky);
  font-weight: 500;
}

/* Works */
.works {
  background: var(--navy-light);
}

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

.work-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(79, 195, 247, 0.2);
}

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

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

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

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
}

.work-cat {
  font-size: 11px;
  color: var(--sky);
  font-weight: 600;
  letter-spacing: 1px;
}

.work-info {
  padding: 24px;
}

.work-info h3 {
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

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

.work-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.work-specs span {
  font-size: 11px;
  padding: 3px 10px;
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--sky);
  font-weight: 500;
}

/* Equipment */
.equipment {
  background: var(--navy);
}

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

.equip-item {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.equip-item:hover {
  border-color: rgba(79, 195, 247, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

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

.equip-item h3 {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
}

.equip-spec {
  font-size: 12px;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 12px !important;
  letter-spacing: 0.5px;
}

.equip-item p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
}

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

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

/* Numbers */
.numbers {
  background: var(--navy);
  position: relative;
}

.numbers::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.number-item {
  text-align: center;
  padding: 32px 16px;
}

.number-value {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1.2;
  margin-bottom: 8px;
}

.number-value small {
  font-size: 18px;
  font-weight: 400;
  color: var(--silver);
}

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

/* Flow */
.flow {
  background: var(--navy-light);
}

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

.flow-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 1px;
  height: 100%;
  background: var(--border);
}

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

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

.flow-num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--sky);
  background: var(--navy-light);
  border: 2px solid var(--sky);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow-content h3 {
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 10px;
}

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

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

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

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

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

.company-table th,
.company-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.company-table th {
  color: var(--sky);
  font-weight: 600;
  width: 160px;
  white-space: nowrap;
}

.company-table td {
  color: var(--text);
  line-height: 1.8;
}

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

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

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-info > p {
  margin-bottom: 32px;
  line-height: 1.9;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ci-label {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.ci-value {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.contact-form-wrap {
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

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

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

.req {
  font-size: 10px;
  color: var(--sky);
  margin-left: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-jp);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234FC3F7' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

/* Footer */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-name-jp {
  font-size: 10px;
  color: var(--text-light);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--sky);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
}

.footer-credit a {
  color: var(--sky);
}

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

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

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .hamburger {
    display: block;
  }

  .aero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

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

  .about-visual {
    order: -1;
  }

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

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

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

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

  .hero-badges {
    gap: 24px;
  }

  .badge-num {
    font-size: 22px;
  }

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

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

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

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

  .company-table td {
    display: block;
    padding-top: 0;
    padding-bottom: 16px;
  }

  .hero-scroll {
    display: none;
  }

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

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

  .hero-content {
    padding: 120px 16px 60px;
  }

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

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

  .btn {
    text-align: center;
  }

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

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

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