/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1e3a6e;
  --navy-dark: #1a2f5e;
  --navy-light: #243680;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fb923c;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: var(--shadow); }

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

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  font-size: 28px;
  color: var(--orange);
  display: inline-block;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.15em;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-desktop ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  position: relative;
  padding-bottom: 4px;
}
.nav-desktop ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-desktop ul li a:hover::after { width: 100%; }
.nav-desktop ul li a:hover { opacity: 1; }

.btn-nav {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.btn-nav:hover { background: var(--orange-dark) !important; transform: translateY(-1px); opacity: 1 !important; }
.btn-nav::after { display: none !important; }

/* ハンバーガー */
.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: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-200);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a {
  display: block;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  opacity: 1;
}
.btn-submit {
  background: var(--navy);
  color: white;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}

/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  background: #fff3ea;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header.light .section-tag {
  background: rgba(249,115,22,0.2);
  color: #ffb97a;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-header.light .section-title { color: white; }
.section-desc { color: var(--gray-600); font-size: 15px; line-height: 1.8; }
.section-header.light .section-desc { color: rgba(255,255,255,0.75); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1f3d 0%, #1e3a6e 50%, #1a2f5e 100%);
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 20, 50, 0.82) 0%,
    rgba(10, 20, 50, 0.65) 55%,
    rgba(10, 20, 50, 0.35) 100%
  );
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.shape2 {
  width: 400px; height: 400px;
  background: #3b82f6;
  bottom: -100px; left: -100px;
  animation: float2 10s ease-in-out infinite;
}
.shape3 {
  width: 200px; height: 200px;
  background: var(--orange);
  top: 40%; left: 30%;
  animation: float1 6s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.5);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: white;
  line-height: 1.25;
  margin-bottom: 24px;
}
.hero-accent {
  color: var(--orange);
  position: relative;
}
.hero-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-unit { font-size: 14px; font-weight: 700; color: var(--orange-light); margin-left: 2px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-machine {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 38%;
  max-width: 480px;
  z-index: 2;
  animation: float2 6s ease-in-out infinite;
}
.machine-svg { width: 100%; height: auto; }
.character-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 3px rgba(249,115,22,0.4);
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== NOTICE BAR ===== */
.notice-bar {
  background: var(--navy);
  color: white;
  padding: 12px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.notice-label {
  background: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  white-space: nowrap;
  margin: 0 24px;
  border-radius: 4px;
  flex-shrink: 0;
}
.notice-ticker {
  overflow: hidden;
  flex: 1;
}
.notice-ticker span {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  animation: ticker 25s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ===== SERVICE ===== */
.service-section { background: var(--gray-50); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.service-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.service-icon { width: 72px; margin-bottom: 20px; }
.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 20px; }
.service-list { list-style: none; }
.service-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== LINEUP ===== */
.lineup-section { background: white; }
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.lineup-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  background: white;
}
.lineup-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.lineup-img {
  height: 200px;
  overflow: hidden;
}
.lineup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lineup-body { padding: 18px; }
.lineup-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.lineup-body p { font-size: 12px; color: var(--gray-600); margin-bottom: 12px; line-height: 1.6; }
.lineup-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.lineup-tags span {
  font-size: 10px;
  font-weight: 600;
  color: var(--orange-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 2px 8px;
  border-radius: 4px;
}
.lineup-more { text-align: center; }
.lineup-more p { font-size: 14px; color: var(--gray-600); margin-bottom: 24px; }

/* ===== REASON ===== */
.reason-section { background: var(--navy); }
.reason-section .section-title { color: white; }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.reason-item {
  background: rgba(255,255,255,0.05);
  padding: 36px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}
.reason-item:hover { background: rgba(255,255,255,0.1); }
.reason-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
}
.reason-content h3 {
  font-size: 17px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.reason-content p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===== FLOW ===== */
.flow-section { background: var(--gray-50); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(to right, var(--navy), var(--orange));
  z-index: 0;
}
.flow-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.flow-icon { width: 72px; height: 72px; margin: 0 auto 16px; position: relative; z-index: 1; }
.flow-icon svg { width: 72px; height: 72px; }
.flow-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.flow-step h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.flow-step p { font-size: 12px; color: var(--gray-600); line-height: 1.7; }
.flow-arrow {
  font-size: 18px;
  color: var(--orange);
  margin: 16px 0;
  display: none;
}

/* ===== AREA ===== */
.area-section { background: white; }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.area-text .section-tag { margin-bottom: 12px; display: inline-block; }
.area-text h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
.area-text p { color: var(--gray-600); margin-bottom: 28px; font-size: 15px; }
.area-list { list-style: none; margin-bottom: 32px; }
.area-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-800);
}
.area-list li.main { font-weight: 700; color: var(--navy); font-size: 16px; }
.area-list li.note { font-size: 13px; color: var(--gray-400); }
.area-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-svg { width: 100%; height: auto; }

/* ===== ABOUT ===== */
.about-section { background: var(--gray-50); }
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.company-logo-large { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.company-logo-large svg { width: 100%; height: auto; }
.about-table-wrap { overflow: hidden; }
.about-table { width: 100%; border-collapse: collapse; }
.about-table th, .about-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  vertical-align: top;
}
.about-table th {
  background: var(--navy);
  color: white;
  font-weight: 700;
  width: 140px;
  white-space: nowrap;
}
.about-table td { background: white; color: var(--gray-800); }
.about-table a { color: var(--navy); font-weight: 600; }
.about-table a:hover { color: var(--orange); }
.about-table tr:first-child th { border-radius: 0; }

/* ===== CONTACT ===== */
.contact-section { background: var(--navy); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-direct { display: flex; flex-direction: column; gap: 24px; }
.contact-phone, .contact-email {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.2s;
}
.contact-phone:hover, .contact-email:hover { background: rgba(255,255,255,0.12); }
.contact-icon { flex-shrink: 0; width: 50px; height: 50px; }
.contact-icon svg { width: 50px; height: 50px; }
.contact-label { display: block; font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.contact-tel {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-mail {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 4px;
  word-break: break-all;
}
.contact-hours { display: block; font-size: 11px; color: rgba(255,255,255,0.5); }

/* フォーム */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.required {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--navy-dark); color: white; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy {
  display: flex;
  align-items: center;
}
.form-privacy label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.form-privacy input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--orange); }
.form-privacy span { font-size: 13px; color: rgba(255,255,255,0.7); }
.form-success {
  background: rgba(34,197,94,0.2);
  border: 1px solid rgba(34,197,94,0.4);
  color: #86efac;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer { background: #0f1f3d; padding: 48px 0 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .logo-main { font-size: 16px; color: white; }
.footer-logo .logo-icon { color: var(--orange); }
.footer-info { }
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.footer-info a { color: rgba(255,255,255,0.75); }
.footer-info a:hover { color: var(--orange); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange); opacity: 1; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .flow-steps::before { display: none; }
  .flow-arrow { display: block; }
  .flow-step:nth-child(2) .flow-arrow { display: none; }
  .flow-step:nth-child(4) .flow-arrow { display: none; }
  .area-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .company-logo-large { max-width: 280px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: 1fr 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps::before { display: none; }
  .flow-arrow { display: block; }
  .flow-step:nth-child(4) .flow-arrow { display: none; }
  .hero-machine { display: none; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .lineup-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
  .contact-phone, .contact-email { flex-direction: column; }
}
