/* ===== YASPEN - 塗装・リフォーム会社 ===== */

:root {
  --primary: #7B4F2E;
  --primary-light: #A0673A;
  --primary-dark: #5C3820;
  --accent: #C8952A;
  --accent-light: #E4B84A;
  --bg: #FAF7F3;
  --bg-section: #F2EDE6;
  --text: #2D2016;
  --text-light: #6B5540;
  --white: #FFFFFF;
  --border: #DDD0C0;
  --shadow: rgba(91, 56, 32, 0.12);
  --font-ja: 'Noto Sans JP', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

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

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

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.5px;
}

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

.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
}

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

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3D2010 0%, #6B3A1F 40%, #8B5A2B 70%, #C8952A 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-title span {
  color: var(--accent-light);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200,149,42,0.4);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,149,42,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-main-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}

.stat-unit {
  font-size: 14px;
  color: var(--accent-light);
  font-weight: 700;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

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

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-section);
}

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

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.4;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== REASONS ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reason-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow);
}

.reason-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.reason-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.reason-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.reason-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  transition: transform 0.3s;
}

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

.service-img {
  width: 160px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--primary-light), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.service-body {
  padding: 28px;
  flex: 1;
}

.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(200,149,42,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.service-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== FLOW ===== */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}

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

.flow-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.flow-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  z-index: 1;
}

.flow-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--primary), var(--border));
  margin-top: 8px;
  min-height: 40px;
}

.flow-item:last-child .flow-line {
  display: none;
}

.flow-body {
  flex: 1;
  padding-top: 12px;
}

.flow-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

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

/* ===== VOICE ===== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--border);
}

.voice-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.voice-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.voice-text::before {
  content: '「';
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
}

.voice-text::after {
  content: '」';
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
}

.voice-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.voice-area {
  font-size: 11px;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 22px;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px var(--shadow);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding-top: 70px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding-bottom: 80px;
  padding-top: calc(70px + 80px);
  text-align: center;
}

.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-info-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 48px var(--shadow);
  border: 1px solid var(--border);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: #C0392B;
  margin-left: 4px;
  font-size: 11px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123,79,46,0.12);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow);
}

/* ===== COMPANY TABLE ===== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}

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

.company-table tr:last-child {
  border-bottom: none;
}

.company-table th {
  width: 200px;
  padding: 20px 28px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--bg-section);
  vertical-align: top;
}

.company-table td {
  padding: 20px 28px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

/* ===== LP PAGE ===== */
.lp-hero {
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #1A0A03 0%, #4A2210 50%, #7B4F2E 100%);
  position: relative;
  text-align: center;
}

.lp-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.lp-hero-catch {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.lp-hero-catch .highlight {
  color: var(--accent-light);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 2px;
}

.lp-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.lp-cta-box {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 40px;
  margin-top: 48px;
}

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

.price-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.price-item {
  text-align: center;
}

.price-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.price-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-light);
}

.price-unit {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-block {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.about-body h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.value-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-section);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.value-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual { display: none; }

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

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

  .service-card {
    flex-direction: column;
  }

  .service-img {
    width: 100%;
    height: 120px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .form-card {
    padding: 28px;
  }

  .company-table th {
    width: 120px;
    padding: 16px;
  }

  .company-table td {
    padding: 16px;
  }

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

  .about-values {
    grid-template-columns: 1fr;
  }

  .price-info {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .hero-title { font-size: 28px; }
  .btn-primary, .btn-outline { padding: 14px 24px; font-size: 15px; }
}
