/* ============================================
   しんめい堂鍼灸マッサージ治療院 - スタイルシート
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary:       #4f9ea0;
  --primary-dark:  #2d6b6d;
  --primary-light: #e8f5f5;
  --navy:          #1a2f35;
  --navy-mid:      #243d44;
  --accent:        #e07b30;
  --accent-light:  #fff4ec;
  --gold:          #b89550;
  --text:          #1e2d2d;
  --text-mid:      #4a5a5a;
  --text-light:    #8a9a9a;
  --white:         #ffffff;
  --bg-light:      #f7fbfb;
  --border:        #dceaea;
  --shadow-sm:     0 2px 8px rgba(31,60,60,.07);
  --shadow-md:     0 4px 16px rgba(31,60,60,.10), 0 1px 4px rgba(31,60,60,.06);
  --shadow-lg:     0 8px 40px rgba(31,60,60,.13), 0 2px 8px rgba(31,60,60,.07);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
.serif { font-family: 'Noto Serif JP', serif; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: .5rem;
  display: block;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 600px;
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--bg-light);
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(0px);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(31,60,60,.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 24px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.header-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  transition: color var(--transition);
}
.site-header.scrolled .header-name { color: var(--navy); }
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 7px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.site-header.scrolled .header-nav a {
  color: var(--text-mid);
  border-color: var(--border);
  background: transparent;
}
.header-nav a:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.site-header.scrolled .header-nav a:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.header-tel:hover {
  background: #c86a20;
  transform: translateY(-1px);
}
.header-tel i { font-size: 13px; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  font-size: 22px;
  transition: color var(--transition);
}
.site-header.scrolled .mobile-menu-btn { color: var(--navy); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--primary-light); color: var(--primary-dark); }
.mobile-nav .mobile-tel {
  margin-top: 12px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
  font-weight: 700;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/team.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 38, 42, 0.82) 0%,
    rgba(26, 55, 62, 0.70) 50%,
    rgba(20, 48, 52, 0.60) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-left: 8vw;
  padding: 0 24px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 158, 160, .25);
  border: 1px solid rgba(79, 158, 160, .5);
  backdrop-filter: blur(8px);
  color: #a8e0e2;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag i { font-size: 10px; }
.hero-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.hero-heading span {
  color: #7dd4d6;
}
.hero-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255,255,255,.78);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(224, 123, 48, .45);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: #c86a20;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(224, 123, 48, .55);
  color: var(--white);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.45);
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.22);
  color: var(--white);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 11px;
  letter-spacing: .2em;
  text-align: center;
  z-index: 2;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  margin: 8px auto 0;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,.12);
  flex: 1;
  min-width: 130px;
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 700;
  color: #7dd4d6;
  line-height: 1;
}
.trust-num span { font-size: 14px; font-weight: 400; }
.trust-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-top: 5px;
  letter-spacing: .05em;
  text-align: center;
}

/* ============================================
   ABOUT SECTION (訪問鍼灸マッサージとは)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  background: var(--primary-light);
  border-radius: 20px;
  z-index: -1;
}
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.about-feature i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-feature-text { font-size: 14px; line-height: 1.75; color: var(--text-mid); }
.about-feature-text strong { color: var(--text); }

/* ============================================
   WHY US (選ばれる理由)
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon i { font-size: 22px; color: var(--primary-dark); }
.why-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.why-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.85; }

/* ============================================
   SYMPTOMS (対応症状)
   ============================================ */
.symptoms-section { background: var(--primary-light); }
.symptoms-header { text-align: center; margin-bottom: 48px; }
.symptoms-header .section-lead { margin: 0 auto; text-align: center; }
.symptom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.symptom-tag {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.symptom-tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.symptom-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FLOW (ご利用の流れ)
   ============================================ */
.flow-list {
  position: relative;
  max-width: 700px;
  margin: 52px auto 0;
  padding-left: 28px;
}
.flow-list::before {
  content: '';
  position: absolute;
  top: 24px; bottom: 24px; left: 18px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}
.flow-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.flow-item:last-child { margin-bottom: 0; }
.flow-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--primary-light);
  position: relative;
  z-index: 1;
  margin-left: -10px;
}
.flow-body {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
  flex: 1;
  border: 1px solid var(--border);
}
.flow-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.flow-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.85; }
.flow-accent {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

/* ============================================
   PRICING (料金)
   ============================================ */
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 52px;
}
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.pricing-card-head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 22px 24px;
  color: var(--white);
}
.pricing-card-head h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
}
.pricing-card-head p { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-label { color: var(--text-mid); }
.pricing-val { font-weight: 700; color: var(--navy); }
.pricing-val.highlight { color: var(--primary-dark); font-size: 18px; }
.pricing-note {
  margin-top: 28px;
  background: var(--accent-light);
  border: 1px solid #f5cba8;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.85;
}
.pricing-note i { color: var(--accent); margin-right: 6px; }

/* ============================================
   SERVICE AREA (対応エリア)
   ============================================ */
.area-section { background: var(--navy); color: var(--white); }
.area-section .section-eyebrow { color: #7dd4d6; }
.area-section .section-title { color: var(--white); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}
.area-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.area-map img { width: 100%; display: block; }
.area-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.area-tag-group { margin-bottom: 20px; }
.area-tag-group-label {
  font-size: 11px;
  letter-spacing: .2em;
  color: #7dd4d6;
  margin-bottom: 10px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tag {
  background: rgba(79, 158, 160, .2);
  border: 1px solid rgba(79, 158, 160, .4);
  color: #a8e0e2;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}
.area-note {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}

/* ============================================
   PROFILE (院長プロフィール)
   ============================================ */
.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}
.profile-visual {
  text-align: center;
  position: relative;
}
.profile-illust {
  width: 220px;
  margin: 0 auto 20px;
}
.profile-name-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.profile-name-role {
  font-size: 12px;
  color: var(--primary);
  letter-spacing: .1em;
  font-weight: 700;
}
.profile-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.profile-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  padding: 22px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.quals-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.qual-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.qual-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.qual-item:hover { background: var(--primary-light); }
.qual-item i { color: var(--primary); font-size: 11px; flex-shrink: 0; }
.team-photo-wrap {
  margin-top: 40px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-photo-wrap img { width: 100%; display: block; }
.team-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,38,42,.85), transparent);
  padding: 24px 20px 16px;
  color: var(--white);
  font-size: 13px;
}

/* ============================================
   CONTACT (お問い合わせ)
   ============================================ */
.contact-section { background: var(--primary-light); }
.contact-header { text-align: center; margin-bottom: 52px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  border: 1px solid var(--border);
}
.contact-card:hover { transform: translateY(-3px); }
.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-icon i { font-size: 24px; color: var(--primary); }
.contact-icon.accent { background: var(--accent-light); }
.contact-icon.accent i { color: var(--accent); }
.contact-icon.line { background: #e8f5e9; }
.contact-icon.line i { color: #06c755; }
.contact-card h3 { font-size: 14px; font-weight: 700; color: var(--text-light); letter-spacing: .08em; margin-bottom: 10px; }
.contact-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
}
.contact-val a { color: var(--navy); transition: color var(--transition); }
.contact-val a:hover { color: var(--primary-dark); }
.contact-card p { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.contact-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 36px;
  line-height: 1.85;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 52px 0 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-logo { width: 40px; filter: brightness(1.5); }
.footer-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.footer-address { font-size: 13px; line-height: 1.8; }
.footer-nav-group { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #7dd4d6;
  margin-bottom: 4px;
}
.footer-nav-group a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-nav-group a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .about-grid,
  .pricing-inner,
  .area-grid,
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-visual { display: flex; flex-direction: column; align-items: center; }
  .area-grid { text-align: center; }
  .footer-top { flex-direction: column; gap: 32px; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .site-header { height: 64px; }
  .mobile-menu-btn { display: block; }
  .header-nav, .header-tel { display: none; }
  .hero-content { margin-left: 0; }
  .hero-tag { font-size: 11px; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 0; }
  .trust-item { padding: 10px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); min-width: 50%; }
  .trust-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
