/* =========================================================
   ヘルシーライフ 生活サポートサービス — 共通スタイルシート
   ブランド: ひだまり家事サポート(オレンジ) / やさしいスマホ教室(ティール)
   ========================================================= */

:root {
  /* ひだまり家事サポート（オレンジ系） */
  --hida-bg: #FFFAF2;
  --hida-card-bg: #FFF8EF;
  --hida-accent: #E8873A;
  --hida-accent-dark: #C4602A;
  --hida-accent-darker: #A64C1E;
  --hida-border-light: #F3D9A6;
  --hida-border-lighter: #F3E4C8;
  --hida-badge-text: #8A5A1E;
  --hida-heading: #3B2E23;
  --hida-body: #5C4B3A;
  --hida-text-mid: #6B5D4F;
  --hida-caption: #8A7860;
  --hida-faint: #93816B;
  --hida-muted: #B7A891;
  --hida-footer-bg: #3B2E23;
  --hida-footer-text: #E8D9C4;
  --hida-footer-border: #55483A;
  --hida-icon: #B4642A;
  --hida-gradient: linear-gradient(135deg, #E8873A, #F3A85D);
  --hida-badge-bg: #FCE1A8;

  /* やさしいスマホ教室・修理サポート（ティール系） */
  --sumaho-bg: #F4FAF9;
  --sumaho-accent: #2E8E88;
  --sumaho-accent-dark: #1F6A64;
  --sumaho-accent-darker: #1F5C58;
  --sumaho-link: #2E7D78;
  --sumaho-border: #CFE7E4;
  --sumaho-badge-bg: #DCF0EE;
  --sumaho-heading: #1F3A37;
  --sumaho-body2: #2B3A38;
  --sumaho-body: #3E524F;
  --sumaho-caption: #5E7B78;
  --sumaho-footer-bg: #1F3A37;
  --sumaho-footer-text: #CFE7E4;
  --sumaho-footer-muted: #8FB2AE;
  --sumaho-footer-border: #33534E;
  --sumaho-footer-faint: #6E938E;
  --sumaho-gradient: linear-gradient(135deg, #2E8E88, #6FC2BC);

  --caution-bg: #FFF3E0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  line-height: 1.9;
  min-height: 100vh;
}

a { text-decoration: none; }

img, svg { display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

h1, h2, h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  margin: 0;
}

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 32px;
}

.theme-hida .site-header { background: #FFFAF2ee; border-bottom: 3px solid var(--hida-border-light); }
.theme-sumaho .site-header { background: #F4FAF9ee; border-bottom: 3px solid var(--sumaho-border); }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theme-hida .brand-logo {
  background: radial-gradient(circle at 35% 30%, #FDC97C, #E8873A);
  box-shadow: 0 3px 10px rgba(232,135,58,0.35);
}
.theme-sumaho .brand-logo {
  background: radial-gradient(circle at 35% 30%, #6FC2BC, #2E8E88);
  box-shadow: 0 3px 10px rgba(46,142,136,0.35);
}

.brand-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 23px;
  letter-spacing: 0.02em;
}
.theme-hida .brand-name { color: var(--hida-heading); }
.theme-sumaho .brand-name { color: var(--sumaho-heading); font-size: 22px; }

.brand-sub {
  font-size: 13px;
  margin-top: 2px;
}
.theme-hida .brand-sub { color: var(--hida-faint); }
.theme-sumaho .brand-sub { color: var(--sumaho-caption); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.theme-sumaho .site-nav { gap: 10px; }

.nav-link {
  color: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color .15s ease, color .15s ease;
}
.theme-sumaho .nav-link { font-size: 15px; }

.theme-hida .nav-link { color: var(--hida-heading); }
.theme-hida .nav-link:hover { background: #FBEAD1; }
.theme-hida .nav-link.is-current { color: var(--hida-accent-dark); background: var(--hida-badge-bg); }

.theme-sumaho .nav-link { color: var(--sumaho-body2); }
.theme-sumaho .nav-link:hover { background: #EAF6F5; }
.theme-sumaho .nav-link.is-current { color: var(--sumaho-accent-dark); background: var(--sumaho-badge-bg); }
.theme-sumaho .nav-link.nav-outline { border: 2px solid var(--sumaho-border); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  margin-left: 6px;
}
.theme-hida .nav-phone { background: var(--hida-accent); box-shadow: 0 4px 12px rgba(232,135,58,0.35); }
.theme-sumaho .nav-phone { background: var(--sumaho-accent); box-shadow: 0 4px 12px rgba(46,142,136,0.35); margin-left: 0; }
.nav-phone:hover { filter: brightness(0.95); }

/* -------------------- Hero -------------------- */
.hero {
  padding: 88px 32px 96px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}
.theme-sumaho .hero { padding: 80px 32px 88px; }

.hero-text { flex: 1 1 460px; min-width: 280px; }
.hero-visual { flex: 1 1 320px; min-width: 260px; display: flex; justify-content: center; }

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.theme-hida .eyebrow-badge { background: var(--hida-badge-bg); color: var(--hida-badge-text); }
.theme-sumaho .eyebrow-badge { background: var(--sumaho-badge-bg); color: var(--sumaho-accent-dark); }

.hero h1 {
  font-size: 46px;
  line-height: 1.45;
  margin: 0 0 24px;
}
.theme-hida .hero h1 { color: var(--hida-heading); }
.theme-sumaho .hero h1 { color: var(--sumaho-heading); font-size: 44px; }

.hero p {
  font-size: 19px;
  margin: 0 0 36px;
  max-width: 520px;
}
.theme-hida .hero p { color: var(--hida-body); }
.theme-sumaho .hero p { color: var(--sumaho-body); }

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

.hero-art {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-hida .hero-art {
  background: radial-gradient(circle at 30% 25%, #FFE7BE, #FBCB84 70%);
  box-shadow: 0 20px 50px rgba(232,135,58,0.25);
}
.theme-sumaho .hero-art {
  background: radial-gradient(circle at 30% 25%, #CDEFEA, #8FD4CC 70%);
  box-shadow: 0 20px 50px rgba(46,142,136,0.2);
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 32px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: filter .15s ease, transform .1s ease;
}
.btn:hover { filter: brightness(0.96); }
.btn:active { transform: translateY(1px); }

.btn-primary-hida { background: var(--hida-accent); color: #fff; box-shadow: 0 6px 18px rgba(232,135,58,0.35); }
.btn-secondary-hida { background: #fff; color: var(--hida-heading); border: 2px solid var(--hida-border-light); }
.btn-dark-hida { background: var(--hida-heading); color: #fff; border-radius: 14px; font-size: 18px; padding: 16px 32px; }

.btn-primary-sumaho { background: var(--sumaho-accent); color: #fff; box-shadow: 0 6px 18px rgba(46,142,136,0.35); }
.btn-secondary-sumaho { background: #fff; color: var(--sumaho-heading); border: 2px solid var(--sumaho-border); }

.btn-small { font-size: 17px; padding: 16px 32px; border-radius: 14px; }

.btn-on-gradient-hida { background: #fff; color: var(--hida-accent-dark); }
.btn-outline-gradient { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-on-gradient-sumaho { background: #fff; color: var(--sumaho-accent-dark); }

/* -------------------- Sections / Cards -------------------- */
.section { padding: 80px 32px; }
.section-tight { padding: 64px 32px 24px; }
.section-white { background: #fff; }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 32px; margin: 0 0 16px; }
.section-head p { font-size: 18px; max-width: 640px; margin: 0 auto; }
.theme-hida .section-head p { color: var(--hida-text-mid); }
.theme-sumaho .section-head p { color: var(--sumaho-caption); }

.grid {
  display: grid;
  gap: 24px;
}
.grid-auto-220 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-auto-240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-auto-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-auto-280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-320 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  border-radius: 20px;
  padding: 32px 28px;
}
.theme-hida .card { background: var(--hida-card-bg); border: 1px solid var(--hida-border-lighter); }
.theme-sumaho .card { background: #fff; border: 1px solid var(--sumaho-border); }
.card-flush { padding: 32px; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon-sm { width: 52px; height: 52px; margin-bottom: 18px; }
.theme-hida .card-icon { background: var(--hida-badge-bg); }
.theme-sumaho .card-icon { background: var(--sumaho-badge-bg); }

.card-title { font-weight: 700; font-size: 19px; margin-bottom: 6px; }
.card-meta { font-size: 15px; margin-bottom: 12px; }
.theme-hida .card-meta { color: var(--hida-caption); }
.theme-sumaho .card-meta { color: var(--sumaho-caption); }
.card-body { font-size: 16px; }
.theme-hida .card-body { color: var(--hida-body); }
.theme-sumaho .card-body { color: var(--sumaho-body); }

.card ul { margin: 0; padding-left: 20px; font-size: 16px; }
.theme-sumaho .card ul { color: var(--sumaho-body); }
.card ul li { margin-bottom: 2px; }

.card-centered { text-align: center; }
.card-centered svg { margin: 0 auto 16px; }

/* Service intro card (link style) */
.intro-card { display: block; border-radius: 20px; padding: 32px; color: inherit; }
.intro-card-solid { background: #fff; border: 2px solid var(--hida-border-light); box-shadow: 0 8px 20px rgba(232,135,58,0.12); }
.intro-card-link { background: var(--hida-card-bg); border: 1px solid var(--hida-border-lighter); }
.intro-card-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.intro-card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.intro-card-title { font-weight: 700; font-size: 19px; }
.intro-card-sub { font-size: 14px; color: var(--hida-caption); }
.intro-card-badge { margin-left: auto; font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; flex-shrink: 0; }
.intro-card-badge-solid { background: var(--hida-accent); color: #fff; }
.intro-card-badge-outline { background: var(--hida-border-lighter); color: var(--hida-badge-text); }
.intro-card-desc { color: var(--hida-body); font-size: 16px; }

/* Area cards with icon row */
.area-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
}
.theme-hida .area-card { border: 1px solid var(--hida-border-lighter); }
.theme-sumaho .area-card { border: 1px solid var(--sumaho-border); }
.area-card svg { flex-shrink: 0; }
.area-card-title { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.area-card-body { font-size: 16px; }
.theme-hida .area-card-body { color: var(--hida-body); }

/* Pricing teaser cards */
.price-teaser-card {
  background: var(--hida-card-bg);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  border: 2px solid var(--hida-border-lighter);
}
.price-teaser-card.is-featured { border-color: var(--hida-border-light); box-shadow: 0 8px 20px rgba(232,135,58,0.15); }
.price-teaser-label { color: var(--hida-caption); font-size: 16px; margin-bottom: 8px; }
.price-teaser-amount { font-family: 'Zen Maru Gothic', sans-serif; font-weight: 900; font-size: 34px; color: var(--hida-accent); }
.price-teaser-amount span { font-size: 16px; }

/* Step cards */
.step-card {
  border-radius: 20px;
  padding: 32px 24px;
}
.theme-hida .step-card { background: var(--hida-card-bg); border: 1px solid var(--hida-border-lighter); }
.theme-sumaho .step-card { background: var(--sumaho-bg); border: 1px solid var(--sumaho-border); }
.step-num { font-family: 'Zen Maru Gothic', sans-serif; font-weight: 900; font-size: 22px; margin-bottom: 12px; }
.theme-hida .step-num { color: var(--hida-accent); }
.theme-sumaho .step-num { color: var(--sumaho-accent); }
.step-title { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.step-body { font-size: 15px; }
.theme-hida .step-body { color: var(--hida-body); }
.theme-sumaho .step-body { color: var(--sumaho-body); }

/* CTA band */
.cta-band { padding: 72px 32px; }
.theme-hida .cta-band { background: var(--hida-gradient); }
.theme-sumaho .cta-band { background: var(--sumaho-gradient); }
.cta-band-inner { max-width: 900px; margin: 0 auto; text-align: center; color: #fff; }
.cta-band h2 { font-size: 28px; margin: 0 0 16px; }
.cta-band p { font-size: 18px; margin: 0 0 32px; opacity: 0.95; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  background: #fff;
}
.theme-hida .table-wrap { border: 1px solid var(--hida-border-lighter); }
.theme-sumaho .table-wrap { border: 1px solid var(--sumaho-border); }

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  min-width: 560px;
}
table.data-table th { text-align: left; padding: 20px 24px; font-weight: 700; }
table.data-table td { padding: 20px 24px; }
table.data-table thead tr.head-strong { }
.theme-hida table.data-table thead tr { background: var(--hida-badge-bg); }
.theme-hida table.data-table th { color: var(--hida-body); }
.theme-hida table.data-table tbody tr { border-top: 1px solid var(--hida-border-lighter); }
.theme-hida table.data-table tbody tr.alt { background: var(--hida-bg); }
.theme-hida .price-cell { color: var(--hida-accent); font-weight: 700; }
.theme-hida .price-dash { color: var(--hida-muted); }

.theme-sumaho table.data-table thead tr { background: var(--sumaho-badge-bg); }
.theme-sumaho table.data-table th { color: var(--sumaho-heading); }
.theme-sumaho table.data-table tbody tr { border-top: 1px solid var(--sumaho-border); }
.theme-sumaho table.data-table tbody tr.alt { background: var(--sumaho-bg); }
.theme-sumaho .price-cell { color: var(--sumaho-accent); font-weight: 700; }

table.data-table.detail thead tr { background: var(--hida-card-bg) !important; }
table.data-table .col-name { font-weight: 700; }
table.data-table .col-meta { color: var(--hida-caption); }
.theme-sumaho table.data-table .col-meta { color: var(--sumaho-caption); }

.table-note { font-size: 15px; margin-top: 20px; }
.theme-hida .table-note { color: var(--hida-caption); }
.theme-sumaho .table-note { color: var(--sumaho-caption); }
.table-note.center { text-align: center; }

/* Caution card */
.caution-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--caution-bg);
  border: 1px solid var(--hida-border-light);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.caution-card svg { flex-shrink: 0; margin-top: 2px; }
.caution-title { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.caution-body { color: var(--hida-body); font-size: 16px; }

.guarantee-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--sumaho-badge-bg);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.guarantee-card svg { flex-shrink: 0; margin-top: 2px; }
.guarantee-title { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.guarantee-body { color: var(--sumaho-heading); font-size: 16px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { border-radius: 16px; padding: 24px 28px; }
.theme-hida .faq-item { background: var(--hida-card-bg); border: 1px solid var(--hida-border-lighter); }
.theme-sumaho .faq-item { border: 1px solid var(--sumaho-border); }
.theme-sumaho .faq-item.bg-white { background: #fff; }
.theme-sumaho .faq-item.bg-tint { background: var(--sumaho-bg); }
.faq-q { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.theme-hida .faq-q { color: var(--hida-accent-dark); }
.theme-sumaho .faq-q { color: var(--sumaho-accent-dark); }
.faq-a { font-size: 16px; }
.theme-hida .faq-a { color: var(--hida-body); }
.theme-sumaho .faq-a { color: var(--sumaho-body); }

/* Company table */
.info-table-wrap { border-radius: 20px; overflow: hidden; background: #fff; }
.theme-hida .info-table-wrap { border: 1px solid var(--hida-border-lighter); }
table.info-table { width: 100%; border-collapse: collapse; font-size: 17px; }
table.info-table tr { border-bottom: 1px solid var(--hida-border-lighter); }
table.info-table tr:last-child { border-bottom: none; }
table.info-table td { padding: 20px 28px; }
table.info-table td.key { font-weight: 700; color: var(--hida-caption); width: 180px; background: var(--hida-card-bg); }
table.info-table td.placeholder { color: var(--hida-muted); }

/* Contact page */
.contact-grid { display: flex; gap: 32px; flex-wrap: wrap; padding: 24px 32px 64px; max-width: 1120px; margin: 0 auto; }
.contact-phone-card, .contact-form-card { background: #fff; border-radius: 20px; border: 1px solid var(--hida-border-lighter); padding: 36px; }
.contact-phone-card { flex: 1 1 300px; }
.contact-form-card { flex: 2 1 420px; }
.contact-phone-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--hida-badge-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.contact-phone-title { font-weight: 700; font-size: 20px; margin-bottom: 12px; }
.contact-phone-number { display: block; font-family: 'Zen Maru Gothic', sans-serif; font-weight: 900; font-size: 32px; color: var(--hida-accent); margin-bottom: 8px; }
.contact-phone-hours { color: var(--hida-text-mid); font-size: 16px; }

.contact-form-title { font-weight: 700; font-size: 20px; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-field label { display: block; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-size: 17px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--hida-border-lighter);
  background: var(--hida-bg);
  color: var(--hida-heading);
  font-family: inherit;
}
.form-field textarea { resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--hida-muted); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--hida-accent);
  outline-offset: 1px;
}
.form-submit {
  margin-top: 8px;
  background: var(--hida-accent);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(232,135,58,0.35);
}
.form-submit:hover { filter: brightness(0.96); }

.form-success { text-align: center; padding: 40px 0; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--hida-badge-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success-title { font-weight: 700; font-size: 22px; margin-bottom: 12px; }
.form-success-body { color: var(--hida-text-mid); font-size: 16px; }
.is-hidden { display: none; }

/* -------------------- Footer -------------------- */
.site-footer { padding: 56px 32px 32px; }
.theme-hida .site-footer { background: var(--hida-footer-bg); color: var(--hida-footer-text); }
.theme-sumaho .site-footer { background: var(--sumaho-footer-bg); color: var(--sumaho-footer-text); }

.footer-top {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand { max-width: 320px; }
.footer-brand-name { font-family: 'Zen Maru Gothic', sans-serif; font-weight: 900; font-size: 20px; color: #fff; margin-bottom: 8px; }
.footer-brand-sub { font-size: 14px; }
.theme-hida .footer-brand-sub { color: var(--hida-muted); }
.theme-sumaho .footer-brand-sub { color: var(--sumaho-footer-muted); }

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; font-size: 15px; }
.footer-nav a { color: inherit; }
.footer-nav a:hover { opacity: 0.8; }

.footer-bottom {
  max-width: 1120px;
  margin: 40px auto 0;
  padding-top: 24px;
  font-size: 13px;
}
.theme-hida .footer-bottom { border-top: 1px solid var(--hida-footer-border); color: var(--hida-faint); }
.theme-sumaho .footer-bottom { border-top: 1px solid var(--sumaho-footer-border); color: var(--sumaho-footer-faint); }

/* -------------------- Theme-specific link colors -------------------- */
.theme-hida a { color: var(--hida-accent-dark); }
.theme-hida a:hover { color: var(--hida-accent-darker); }
.theme-sumaho a { color: var(--sumaho-link); }
.theme-sumaho a:hover { color: var(--sumaho-accent-darker); }

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-36 { margin-top: 36px; }
.max-w-1000 { max-width: 1000px; margin: 0 auto; }
.pad-cta-solo { padding: 16px 32px 88px; text-align: center; }
