/* =========================================================
 * Ogura Works - 外壁塗装業向け HPテンプレ v2
 * 設計思想: 人柄・関係性・安心感（女性性重視）
 * Inspired by: 不破塗装（笑顔・水彩・親しみ）+ ペイントスタイル + 三宏建装
 * Color: 空色 #4A7BA8 × クリーム #FBF6EE × 暖オレンジ #F5965A
 * ========================================================= */

/* ---------- 1. CSS Variables ---------- */
:root {
  /* Primary - Soft Sky Blue（信頼感+柔らかさ） */
  --c-primary: #4A7BA8;
  --c-primary-dark: #335D85;
  --c-primary-light: #7DA4C9;
  --c-primary-soft: #D9E8F2;
  --c-primary-pale: #F0F6FB;

  /* Secondary - Warm Cream */
  --c-cream: #FBF6EE;
  --c-cream-warm: #F8EFD9;
  --c-ivory: #F5EFE6;

  /* Watercolor Accents */
  --c-yellow: #F8DC85;
  --c-yellow-soft: #FBE9B0;
  --c-green-soft: #B5D6BA;
  --c-pink-soft: #F5C9C0;

  /* Accent - Warm Orange (CTA) */
  --c-accent: #F5965A;
  --c-accent-dark: #E07B3A;
  --c-accent-light: #FCB58A;

  /* Text */
  --c-text: #3D3D3D;
  --c-text-sub: #6A6A6A;
  --c-text-light: #9A9A9A;
  --c-text-on-primary: #FFFFFF;

  /* Status */
  --c-star: #F4B942;
  --c-success: #6BAF7B;

  /* Layout */
  --max-w: 1200px;
  --gutter: 24px;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 4px 16px rgba(74, 123, 168, 0.08);
  --shadow: 0 8px 24px rgba(74, 123, 168, 0.12);
  --shadow-lg: 0 16px 40px rgba(74, 123, 168, 0.15);

  /* Type */
  --font-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-script: "Caveat", "Klee One", cursive;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text);
  background: var(--c-cream);
  font-feature-settings: "palt";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-accent); }
ul, ol { padding-left: 1.5em; margin: 0 0 1em; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .8em; line-height: 1.5; font-weight: 700;
  color: var(--c-primary-dark);
}

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- 3. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-primary-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 14px var(--gutter);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 48px; height: 48px;
  background: var(--c-primary-soft);
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  font-weight: 700; font-size: 20px;
}
.brand__name { font-size: 18px; font-weight: 700; color: var(--c-primary-dark); line-height: 1.2; }
.brand__tagline { font-size: 11px; color: var(--c-text-sub); margin-top: 4px; }

.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--c-text); font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--c-accent); }

.header-cta__phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 18px; font-weight: 700; color: var(--c-primary-dark);
}
.header-cta__phone .num { font-family: "Helvetica Neue", Arial, sans-serif; }

@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta__phone { font-size: 14px; }
  .brand__name { font-size: 15px; }
}

/* ---------- 4. Hero (Face-first design) ---------- */
.hero {
  position: relative;
  background: var(--c-cream);
  padding: 60px 0 80px;
  overflow: hidden;
}
/* 水彩タッチの背景装飾 */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%;
  width: 50%; height: 70%;
  background: radial-gradient(circle, var(--c-primary-soft) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 40%; height: 60%;
  background: radial-gradient(circle, var(--c-yellow-soft) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero__content { position: relative; }

.hero__customer-quote {
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--c-accent-dark);
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.hero__catch {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800; line-height: 1.5;
  margin-bottom: 24px;
  color: var(--c-primary-dark);
}
.hero__catch .quote-mark {
  display: block; font-size: 0.85em;
  color: var(--c-accent); margin-bottom: 8px;
}
.hero__catch .highlight {
  background: linear-gradient(transparent 60%, var(--c-yellow) 60%);
  padding: 0 4px;
}

.hero__sub {
  font-size: 16px; line-height: 1.95;
  color: var(--c-text); margin-bottom: 28px;
}

.hero__rep-name {
  display: inline-flex; align-items: center; gap: 12px;
  background: white;
  padding: 12px 24px;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--c-primary-soft);
}
.hero__rep-name__role {
  font-size: 11px; color: var(--c-text-sub);
  letter-spacing: 0.1em;
}
.hero__rep-name__name {
  font-size: 18px; font-weight: 700;
  color: var(--c-primary-dark);
}

.hero__small-numbers {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 13px; color: var(--c-text-sub);
}
.hero__small-numbers > div {
  display: flex; flex-direction: column; gap: 2px;
}
.hero__small-numbers .num {
  font-size: 20px; font-weight: 800; color: var(--c-primary);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Face Photo */
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary-soft), var(--c-cream-warm));
  box-shadow: var(--shadow-lg);
}
.hero__photo::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--c-yellow);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.7;
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { aspect-ratio: 1 / 1; max-width: 320px; margin: 0 auto; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-accent);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 150, 90, 0.4);
}
.btn--primary:hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 150, 90, 0.5);
  color: white;
}
.btn--outline {
  background: white;
  color: var(--c-primary-dark);
  border-color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary-soft);
}
.btn--ghost {
  background: transparent;
  color: var(--c-primary-dark);
  border-color: var(--c-primary-soft);
}
.btn--ghost:hover {
  background: var(--c-primary-pale);
}
.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--full { width: 100%; }

/* ---------- 6. Section base ---------- */
section { padding: 80px 0; position: relative; }
.section__title-wrap { text-align: center; margin-bottom: 56px; }
.section__pre {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--c-accent);
  margin-bottom: 4px;
  display: block;
}
.section__title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800; color: var(--c-primary-dark);
  margin-bottom: 16px;
}
.section__title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--c-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section__sub {
  font-size: 15px; color: var(--c-text-sub);
  max-width: 640px; margin: 0 auto;
  line-height: 1.95;
}
.bg-cream { background: var(--c-cream); }
.bg-pale { background: var(--c-primary-pale); }
.bg-white { background: white; }

/* ---------- 7. About Me (代表挨拶・人物紹介) ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: center;
}
.about__photo {
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--c-cream-warm), var(--c-primary-soft));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about__photo::before {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 120px; height: 120px;
  background: var(--c-green-soft);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 2;
}
.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.about__content { position: relative; }
.about__greeting {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--c-accent-dark);
  margin-bottom: 12px;
}
.about__title {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--c-primary-dark);
  margin-bottom: 24px;
}
.about__text {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 16px;
}
.about__signature {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--c-primary-soft);
  display: flex; align-items: center; gap: 16px;
}
.about__signature-name {
  font-size: 18px; font-weight: 700;
  color: var(--c-primary-dark);
}
.about__signature-role {
  font-size: 12px; color: var(--c-text-sub);
}

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

/* ---------- 8. Customer Voice (お客様の声 - 早めに配置) ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
}
.voice-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border-top: 4px solid var(--c-accent);
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: 4px; right: 20px;
  font-size: 80px; line-height: 1;
  color: var(--c-primary-soft);
  font-family: serif;
}
.voice-card__stars {
  color: var(--c-star); font-size: 18px;
  letter-spacing: 3px; margin-bottom: 12px;
}
.voice-card__quote {
  font-size: 15px; line-height: 2;
  color: var(--c-text);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.voice-card__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--c-primary-soft);
}
.voice-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--c-primary);
}
.voice-card__author-info {
  font-size: 13px;
}
.voice-card__author-name { font-weight: 700; color: var(--c-primary-dark); }
.voice-card__author-meta { color: var(--c-text-sub); font-size: 11px; }

.google-rating-mini {
  display: inline-flex; align-items: center; gap: 16px;
  background: white;
  padding: 16px 32px;
  border-radius: 999px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}
.google-rating-mini__score {
  font-size: 28px; font-weight: 800;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
}
.google-rating-mini__stars { color: var(--c-star); font-size: 18px; letter-spacing: 2px; }
.google-rating-mini__label { font-size: 12px; color: var(--c-text-sub); }

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

/* ---------- 9. Values (大切にしていること) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
}
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.value-card__num {
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--c-accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-script);
  font-size: 18px;
}
.value-card__icon {
  width: 80px; height: 80px;
  background: var(--c-primary-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 16px auto 20px;
  font-size: 36px;
}
.value-card__title {
  font-size: 19px; color: var(--c-primary-dark);
  margin-bottom: 12px;
}
.value-card__desc {
  font-size: 14px; color: var(--c-text-sub);
  line-height: 1.95;
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- 10. Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
}
.service-card {
  background: white;
  padding: 32px 16px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--c-primary-soft);
  transition: all .3s;
}
.service-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card__icon {
  font-size: 36px; margin-bottom: 12px;
}
.service-card__name {
  font-size: 15px; font-weight: 700;
  color: var(--c-primary-dark); margin-bottom: 6px;
}
.service-card__desc {
  font-size: 12px; color: var(--c-text-sub);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 11. Cases (Before/After) ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
}
.case-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s;
}
.case-card:hover { transform: translateY(-4px); }
.case-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.case-card__img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--c-cream-warm), var(--c-primary-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  font-weight: 600; font-size: 13px;
  position: relative;
}
.case-card__img-label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(61, 61, 61, 0.85); color: white;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.case-card__arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: white; color: var(--c-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  z-index: 1;
  font-size: 20px;
}
.case-card__body { padding: 24px; }
.case-card__title {
  font-size: 17px; color: var(--c-primary-dark);
  margin-bottom: 12px;
}
.case-card__customer-voice {
  font-size: 13px; color: var(--c-accent-dark);
  font-style: italic; margin-bottom: 12px;
  font-family: var(--font-script);
}
.case-card__meta {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.case-card__meta-item {
  background: var(--c-cream);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; color: var(--c-text-sub);
}
@media (max-width: 800px) { .cases-grid { grid-template-columns: 1fr; } }

/* ---------- 12. Pricing ---------- */
.pricing { max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); }
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.pricing-table th {
  background: var(--c-primary);
  color: white;
  padding: 18px 12px;
  text-align: center;
  font-size: 13px; font-weight: 700;
}
.pricing-table td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--c-primary-pale);
  text-align: center;
  font-size: 14px;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .name {
  text-align: left; font-weight: 700;
  color: var(--c-primary-dark);
}
.pricing-table .price {
  font-size: 17px; font-weight: 700;
  color: var(--c-accent-dark);
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.pricing-table .recommend {
  background: var(--c-cream-warm);
}
.pricing-table .badge-recommend {
  display: inline-block;
  background: var(--c-accent);
  color: white;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.pricing-note {
  text-align: center; margin-top: 24px;
  font-size: 14px; color: var(--c-text-sub);
}

/* ---------- 13. Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
}
.process-step {
  background: white;
  padding: 20px 12px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.process-step__num {
  width: 32px; height: 32px;
  background: var(--c-accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-weight: 700;
  font-family: var(--font-script);
  font-size: 16px;
}
.process-step__title {
  font-size: 13px; font-weight: 700;
  color: var(--c-primary-dark); margin-bottom: 4px;
}
.process-step__desc {
  font-size: 11px; color: var(--c-text-sub);
  line-height: 1.5;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 14. FAQ (よくあるご不安) ---------- */
.faq {
  max-width: 800px; margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item__question {
  padding: 20px 24px;
  display: flex; gap: 16px;
  align-items: center;
  background: var(--c-primary-pale);
  cursor: pointer;
  font-weight: 700;
  color: var(--c-primary-dark);
}
.faq-item__q-mark {
  width: 32px; height: 32px;
  background: var(--c-primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.faq-item__answer {
  padding: 20px 24px;
  display: flex; gap: 16px;
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
  border-top: 1px dashed var(--c-primary-soft);
}
.faq-item__a-mark {
  width: 32px; height: 32px;
  background: var(--c-accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

/* ---------- 15. Paint Comparison ---------- */
.paint-comparison { max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); }
.paint-table {
  width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--shadow-soft);
}
.paint-table th {
  background: var(--c-primary);
  color: white;
  padding: 14px 12px;
  font-size: 13px;
}
.paint-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--c-primary-pale);
  text-align: center;
  font-size: 14px;
}
.paint-table tr:last-child td { border-bottom: none; }
.paint-table .grade-name {
  font-weight: 700; color: var(--c-primary-dark);
  text-align: left;
}
.paint-table .grade-life {
  color: var(--c-accent-dark); font-weight: 700;
}
.paint-table .grade-price {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 16. Warranty ---------- */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
}
.warranty-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  border: 2px solid var(--c-primary-pale);
  transition: border-color .2s;
}
.warranty-card:hover { border-color: var(--c-accent-light); }
.warranty-card__icon {
  font-size: 32px; margin-bottom: 12px;
}
.warranty-card__title {
  font-size: 15px; color: var(--c-primary-dark);
  margin-bottom: 8px;
}
.warranty-card__desc {
  font-size: 12px; color: var(--c-text-sub);
  line-height: 1.7;
}
@media (max-width: 800px) { .warranty-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 17. LINE CTA ---------- */
.line-cta {
  background: linear-gradient(135deg, #06C755, #04A847);
  color: white;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.line-cta::before {
  content: ''; position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.line-cta__title {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
  position: relative;
  color: white;
}
.line-cta__desc {
  font-size: 15px; margin-bottom: 24px;
  opacity: 0.95; position: relative;
  line-height: 1.95;
}
.line-cta .btn {
  background: white; color: #06C755;
  font-weight: 800;
  position: relative;
}
.line-cta .btn:hover { background: #f0f0f0; color: #04A847; }

/* ---------- 18. Coverage Area ---------- */
.area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: center;
}
.area__map {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c-primary-soft), var(--c-cream-warm));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
}
.area__cities {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; padding: 0;
}
.area__cities li {
  background: white;
  border: 1px solid var(--c-primary-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--c-text);
}
@media (max-width: 800px) { .area { grid-template-columns: 1fr; } }

/* ---------- 19. Company Info ---------- */
.company-info { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.company-table {
  width: 100%;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.company-table th, .company-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-primary-pale);
  text-align: left;
  font-size: 14px;
}
.company-table th {
  background: var(--c-cream);
  width: 30%;
  color: var(--c-primary-dark);
  font-weight: 700;
}
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }

/* ---------- 20. Contact ---------- */
.contact { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.contact-channel {
  background: white;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 2px solid var(--c-primary-pale);
  transition: all .3s;
  text-decoration: none;
}
.contact-channel:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-channel__icon { font-size: 28px; margin-bottom: 8px; }
.contact-channel__label { font-size: 12px; color: var(--c-text-sub); margin-bottom: 4px; }
.contact-channel__value {
  font-size: 16px; font-weight: 700;
  color: var(--c-primary-dark);
}
@media (max-width: 600px) { .contact-channels { grid-template-columns: 1fr; } }

form { background: white; padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
form .field { margin-bottom: 20px; }
form label {
  display: block; font-size: 14px; font-weight: 700;
  margin-bottom: 6px; color: var(--c-primary-dark);
}
form label .required {
  color: var(--c-accent); margin-left: 4px; font-size: 11px;
}
form input, form select, form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-primary-soft);
  border-radius: var(--radius);
  font-family: inherit; font-size: 15px;
  background: var(--c-cream);
  transition: border-color .2s;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: white;
}
form textarea { min-height: 140px; resize: vertical; }

/* ---------- 21. Footer ---------- */
.site-footer {
  background: var(--c-primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.site-footer .brand__logo {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.site-footer .brand__name { color: white; }
.site-footer p { font-size: 13px; line-height: 1.95; opacity: 0.85; }
.site-footer h4 { color: white; font-size: 14px; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: 13px; }
.site-footer ul li a { color: rgba(255,255,255,0.75); }
.site-footer ul li a:hover { color: var(--c-accent-light); }
.site-footer__bottom {
  max-width: var(--max-w); margin: 40px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center; font-size: 12px; opacity: 0.7;
}
@media (max-width: 800px) { .site-footer__inner { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- 22. Mobile fixed phone CTA ---------- */
.mobile-phone-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--c-accent);
  color: white;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.mobile-phone-cta a { color: white; }
@media (max-width: 800px) { .mobile-phone-cta { display: block; } }

/* ---------- 23. Animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .voice-card, .value-card, .case-card { transition: transform .3s; }
}
