/* ============================================
   くらしリノベ - KURASHI RENOVE
   Lifestyle Renovation Company Website
   ============================================ */

:root {
  --warm-white: #FFF8F2;
  --terra: #C17F59;
  --terra-light: #D4A078;
  --terra-dark: #A66B47;
  --sage: #7C9A7E;
  --sage-light: #9BB89D;
  --sage-dark: #5F7D61;
  --text: #3D3530;
  --text-light: #6B5E56;
  --text-muted: #9B8E85;
  --bg: #FFF8F2;
  --bg-alt: #F5EDE5;
  --bg-sage: #F0F5F0;
  --white: #FFFFFF;
  --border: #E8DDD4;
  --shadow: 0 4px 24px rgba(61, 53, 48, 0.08);
  --shadow-lg: 0 12px 48px rgba(61, 53, 48, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.sp-only { display: none; }

/* ---- Sample Banner ---- */
.sample-banner {
  background: var(--terra);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1001;
}

.sample-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  margin-top: 33px;
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(61, 53, 48, 0.06);
}

.header-inner {
  max-width: 1140px;
  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 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

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

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
}

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

.nav-cta:hover {
  background: var(--terra-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  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(255, 248, 242, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

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

.mobile-nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 16px;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--terra);
}

.mobile-nav-cta {
  margin-top: 12px;
  background: var(--terra);
  color: var(--white) !important;
  padding: 14px 40px !important;
  border-radius: 50px;
  font-weight: 600;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: 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(61, 53, 48, 0.55) 0%,
    rgba(61, 53, 48, 0.3) 50%,
    rgba(124, 154, 126, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(193, 127, 89, 0.4);
}

.hero-btn:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(193, 127, 89, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Numbers ---- */
.numbers {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.number-item {
  padding: 16px;
}

.number-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--terra);
  line-height: 1.2;
}

.number-unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--terra);
  margin-left: 2px;
}

.number-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Section Common ---- */
.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--terra);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-label.center { text-align: center; }

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--text);
}

.section-title.center { text-align: center; }

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

.section-desc.center {
  text-align: center;
  margin: 0 auto 48px;
}

/* ---- About ---- */
.about {
  padding: 100px 0;
}

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

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-icon-wrap {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 1;
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

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

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

.tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-alt);
  color: var(--terra);
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
}

/* ---- Lifestyle ---- */
.lifestyle {
  padding: 100px 0;
  background: var(--bg-sage);
}

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

.lifestyle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

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

.lifestyle-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.lifestyle-x {
  color: var(--terra);
  font-weight: 400;
}

.lifestyle-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.lifestyle-tag {
  font-size: 12px;
  color: var(--sage-dark);
  font-weight: 500;
}

/* ---- Works ---- */
.works {
  padding: 100px 0;
}

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

.work-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.work-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terra);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.work-body {
  padding: 24px;
}

.work-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}

.work-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

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

.work-tags span {
  font-size: 12px;
  color: var(--sage-dark);
  background: var(--bg-sage);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ---- Services ---- */
.services {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
  border-left: 4px solid var(--terra);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--terra-light);
  opacity: 0.5;
  margin-bottom: 12px;
  line-height: 1;
}

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

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

.service-list {
  list-style: none;
}

.service-list li {
  font-size: 14px;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

/* ---- Voices ---- */
.voices {
  padding: 100px 0;
}

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

.voice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.voice-quote {
  font-size: 48px;
  font-weight: 700;
  color: var(--terra-light);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.voice-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 24px;
}

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

.voice-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-sage);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

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

.voice-detail {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- Flow ---- */
.flow {
  padding: 100px 0;
  background: var(--bg-alt);
}

.flow-steps {
  max-width: 720px;
  margin: 0 auto;
}

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

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.flow-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.flow-step-content {
  padding-top: 6px;
}

.flow-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* ---- Company ---- */
.company {
  padding: 100px 0;
}

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

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

.company-table th,
.company-table td {
  padding: 16px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.company-table th {
  width: 140px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-alt);
  white-space: nowrap;
}

.company-table td {
  color: var(--text-light);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 8px;
}

.cta-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.cta-btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--white);
  color: var(--terra);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ---- Reason ---- */
.reason {
  padding: 100px 0;
  background: var(--white);
}

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

.reason-item {
  text-align: center;
  padding: 32px 24px;
}

.reason-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--terra);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.reason-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* ---- Contact ---- */
.contact {
  padding: 100px 0;
  background: var(--bg-sage);
}

.contact-grid {
  max-width: 800px;
  margin: 0 auto;
}

.contact-phone {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
}

.contact-phone-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-phone-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--terra);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.contact-phone-hours {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.required {
  font-size: 11px;
  color: var(--terra);
  margin-left: 4px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(193, 127, 89, 0.3);
}

/* ---- Footer ---- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.footer-address,
.footer-tel {
  font-size: 14px;
  margin-bottom: 4px;
  opacity: 0.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.footer-nav a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--terra-light);
}

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

.footer-credit a {
  color: var(--terra-light);
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 48px auto 0;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  .sp-only { display: inline; }

  .header { margin-top: 29px; }
  .header-inner { height: 64px; }

  .hero { min-height: 500px; }
  .hero-scroll { display: none; }

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

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

  .about { padding: 72px 0; }
  .about-icon-wrap { display: none; }

  .lifestyle { padding: 72px 0; }
  .lifestyle-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .works { padding: 72px 0; }
  .works-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .services { padding: 72px 0; }
  .voices { padding: 72px 0; }
  .flow { padding: 72px 0; }
  .company { padding: 72px 0; }
  .contact { padding: 72px 0; }

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

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

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

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

  .contact-phone-number {
    font-size: 28px;
  }

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

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

  .flow-step {
    gap: 20px;
  }

  .flow-step-num {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .flow-step:not(:last-child)::after {
    left: 24px;
    top: 72px;
  }
}

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

  .hero-title { margin-bottom: 16px; }

  .lifestyle-grid {
    max-width: 100%;
  }

  .works-grid {
    max-width: 100%;
  }
}
