/* ========================================
   Sanyo Moving - Common Styles
   Base: SS Support design system
   Colors: Akabou brand (#E71B1E / #04345A)
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

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

:root {
  --red: #E71B1E;
  --red-dark: #C41518;
  --red-light: #FFF5F5;
  --red-pale: #FDE8E8;
  --navy: #04345A;
  --navy-light: #0A4A7A;
  --navy-dark: #022840;
  --text: #1A1A2E;
  --text-sub: #5A6070;
  --white: #FFFFFF;
  --bg-light: #F8F9FB;
  --border: #E0E3E8;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08);
  --radius: 8px;
  --radius-lg: 12px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--text);
  line-height: 2.0;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.03);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,.05); }
.header-top {
  background: var(--navy); color: var(--white);
  font-size: 12px; padding: 6px 0;
}
.header-top-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: flex-end; align-items: center; gap: 20px;
}
.header-top a { color: var(--white); opacity: .85; transition: opacity .2s; }
.header-top a:hover { opacity: 1; }
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 72px;
}
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-link img { height: 44px; width: auto; }
.logo-text { line-height: 1.3; }
.logo-text .logo-main { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: .05em; }
.logo-text .logo-sub { font-size: 10px; color: var(--text-sub); letter-spacing: .02em; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: 20px; font-weight: 900; color: var(--navy); letter-spacing: .03em;
}
.header-tel-icon { color: var(--red); font-size: 18px; }
.header-tel-sub { font-size: 10px; color: var(--text-sub); font-weight: 400; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list a {
  font-size: 13px; font-weight: 500; color: var(--text-sub);
  padding: 8px 12px; border-radius: 4px; transition: color .2s;
  letter-spacing: .03em;
}
.nav-list a:hover { color: var(--red); }
.nav-list a.current { color: var(--red); font-weight: 700; }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 6px !important;
  font-weight: 700 !important; margin-left: 8px;
  transition: background .2s !important; font-size: 13px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger {
  display: none; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; cursor: pointer; border-radius: 6px; transition: background .2s;
}
.hamburger:hover { background: var(--bg-light); }
.hamburger span { width: 22px; height: 2px; background: var(--text); transition: .3s; border-radius: 1px; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; width: 100%;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.06); padding: 16px 24px 24px; z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 15px; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--bg-light);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-cta-mobile {
  display: block; text-align: center; margin-top: 16px;
  background: var(--red); color: var(--white); padding: 14px;
  border-radius: 8px; font-weight: 700;
}

/* Fixed CTA (SP) */
.fixed-cta {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 998;
  background: var(--white); padding: 8px 12px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.1);
}
.fixed-cta-inner { display: flex; gap: 8px; }
.fixed-cta a {
  flex: 1; text-align: center; padding: 12px; border-radius: 6px;
  font-weight: 700; font-size: 14px;
}
.fixed-cta-tel { background: var(--navy); color: var(--white); }
.fixed-cta-form { background: var(--red); color: var(--white); }

/* Page KV */
.page-kv {
  margin-top: 104px; position: relative;
  height: 280px; overflow: hidden;
  background: var(--navy);
}
.page-kv-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .2;
}
.page-kv-content {
  position: relative; z-index: 2; height: 100%;
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}
.page-kv-content h1 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
  letter-spacing: .06em;
}
.page-kv-content .en {
  font-size: 13px; letter-spacing: .2em; opacity: .6;
  text-transform: uppercase; font-weight: 300; margin-bottom: 8px;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 14px 0; font-size: 12px; color: var(--text-sub);
}
.breadcrumb a { color: var(--text-sub); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; }

/* Section */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .en {
  font-size: 11px; font-weight: 500; color: var(--red);
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: var(--text);
  line-height: 1.5; letter-spacing: .08em;
}
.section--navy .section-head h2 { color: var(--white); }
.section-head .lead {
  font-size: 14px; color: var(--text-sub); margin-top: 16px;
  max-width: 560px; margin-left: auto; margin-right: auto;
  font-weight: 300;
}
.section--navy .section-head .lead { color: rgba(255,255,255,.7); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 6px;
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  transition: background .2s, transform .15s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 6px;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  transition: background .2s, transform .15s; border: none; cursor: pointer;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 6px;
  background: var(--white); color: var(--navy);
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  transition: transform .15s, box-shadow .2s; border: none; cursor: pointer;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  background: transparent; color: var(--red);
  font-weight: 600; font-size: 14px; letter-spacing: .03em;
  border: 1.5px solid var(--red);
  transition: background .2s, color .2s; cursor: pointer;
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 14px; letter-spacing: .03em;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: background .2s, border-color .2s; cursor: pointer;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-text {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--red);
  letter-spacing: .03em; transition: gap .2s; cursor: pointer;
  background: none; border: none; padding: 0;
}
.btn-text:hover { gap: 10px; }
.btn-text::after { content: "→"; font-size: 16px; transition: transform .2s; }
.btn-text:hover::after { transform: translateX(2px); }

.btn-center { text-align: center; margin-top: 48px; }

/* Cards */
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.02); }
.card-body { padding: 24px; }
.card-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--red); background: var(--red-pale);
  padding: 4px 12px; border-radius: 3px; margin-bottom: 12px;
  letter-spacing: .04em;
}
.card-label--navy {
  color: var(--navy); background: #E8EEF4;
}
.card-body h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.6; letter-spacing: .03em; }
.card-body p { font-size: 13px; color: var(--text-sub); line-height: 1.9; }
.card-price {
  font-size: 24px; font-weight: 900; color: var(--red);
  letter-spacing: .02em;
}
.card-price small { font-size: 14px; font-weight: 500; }

/* Trust badges */
.trust-bar { background: var(--bg-light); padding: 32px 0; border-bottom: 1px solid var(--border); }
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item-num { font-size: 28px; font-weight: 900; color: var(--navy); line-height: 1.2; }
.trust-item-label { font-size: 12px; color: var(--text-sub); margin-top: 4px; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; background: var(--white);
}
.faq-q {
  padding: 20px 24px; font-weight: 700; font-size: 15px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-q::before {
  content: "Q"; color: var(--red); font-weight: 900; font-size: 18px;
  margin-right: 12px; flex-shrink: 0;
}
.faq-q::after { content: "+"; font-size: 20px; color: var(--text-sub); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
}
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; color: var(--text-sub); line-height: 1.9; padding-left: 32px; }

/* Voice / Testimonial */
.voice-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.voice-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 3px; margin-bottom: 12px;
}
.voice-tag--female { background: #FCE4EC; color: #C62828; }
.voice-tag--elderly { background: #E3F2FD; color: #1565C0; }
.voice-tag--special { background: #FFF3E0; color: #E65100; }
.voice-card blockquote {
  font-size: 14px; color: var(--text); line-height: 1.9;
  font-style: normal; margin: 0;
}
.voice-card .voice-meta { font-size: 12px; color: var(--text-sub); margin-top: 12px; }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 16px 20px; text-align: left; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.price-table th { background: var(--bg-light); font-weight: 600; color: var(--text); width: 40%; }
.price-table td { color: var(--text-sub); }
.price-table .price-highlight { color: var(--red); font-weight: 700; font-size: 16px; }

/* CTA Banner */
.cta-banner { background: var(--red); padding: 72px 0; }
.cta-banner--navy { background: var(--navy); }
.cta-banner-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  color: var(--white);
}
.cta-banner-text h3 { font-size: 24px; font-weight: 700; letter-spacing: .06em; margin-bottom: 8px; }
.cta-banner-text p { font-size: 14px; opacity: .8; font-weight: 300; }
.cta-banner-tel {
  font-size: 32px; font-weight: 900; letter-spacing: .03em;
  display: flex; align-items: center; gap: 8px;
}
.cta-banner-tel-sub { font-size: 12px; font-weight: 400; opacity: .7; }
.cta-banner-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* Footer */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.65); padding: 64px 0 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; align-items: start;
}
.footer-company h4 { color: var(--white); font-size: 16px; margin-bottom: 16px; font-weight: 700; letter-spacing: .05em; }
.footer-company p { font-size: 13px; line-height: 2.2; }
.footer-company a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-company a:hover { color: var(--white); }
.footer-nav h5 { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 16px; letter-spacing: .05em; }
.footer-nav a { display: block; font-size: 13px; padding: 4px 0; transition: color .2s; letter-spacing: .03em; }
.footer-nav a:hover { color: var(--white); }
.footer-cert { font-size: 12px; opacity: .5; margin-top: 16px; line-height: 1.8; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 28px 32px;
  margin-top: 48px; border-top: 1px solid rgba(255,255,255,.06);
  text-align: center; font-size: 11px; opacity: .4; letter-spacing: .05em;
}

/* Utility */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay { transition-delay: .15s; }

/* Responsive */
@media (max-width: 900px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 60px; padding: 0 20px; }
  .header-top { display: none; }
  .header-tel { display: none; }
  .mobile-nav { top: 60px; }
  .page-kv { margin-top: 60px; height: 200px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 48px 0; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .cta-banner-btns a { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .fixed-cta { display: block; }
  .trust-bar-inner { gap: 24px; }

  .cta-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .cta-section { padding: 56px 0; }
  .cta-card .cta-tel { font-size: 24px !important; white-space: nowrap !important; }
  .cta-card { padding: 20px 12px; }
  .cta-card .btn-white { padding: 14px 24px; font-size: 14px; }
  .cta-inner h3 { font-size: 22px; }
  .cta-trust { font-size: 12px; gap: 12px; }
  .footer-trust-inner { gap: 16px; }

  .reason-text-card h3 { font-size: 20px !important; }
  .reason-text-card-inner { padding: 32px 20px !important; }
  .reason-text-card-body p { font-size: 14px; }
  .reason-text-card-body ul li { font-size: 14px; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
  .trust-item-num { font-size: 22px; }
}

/* Section head override */
.section-head .en { font-size: 13px; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 38px); font-weight: 900; }
.section-head .lead { font-size: 16px; }

/* Header override */
.header-top { padding: 6px 0; }
.header-top-inner { justify-content: space-between; }
.header-inner { height: 88px; }
.logo-icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%; object-fit: cover; transition: width .4s ease, height .4s ease; }
.header.scrolled .logo-icon { width: 40px; height: 40px; }
.logo-text .logo-main { font-size: 24px; font-weight: 900; letter-spacing: .06em; }
.logo-text .logo-sub { font-size: 11px; }
.header-tel { font-size: 26px; white-space: nowrap; line-height: 1; }
.header-tel > div { text-align: left; }
.header-tel-sub { font-size: 11px; text-align: left; margin-top: 2px; }
.nav-list { gap: 2px !important; }
.nav-list a {
  font-size: 15px !important; font-weight: 700 !important;
  padding: 8px 14px !important; color: var(--navy) !important;
  letter-spacing: .04em !important;
  position: relative;
  display: flex !important; flex-direction: column; align-items: center;
  line-height: 1.3 !important;
}
.nav-en {
  display: block; font-size: 10px; font-weight: 500;
  color: var(--red); letter-spacing: .08em;
  text-transform: capitalize; opacity: .7;
  font-style: italic;
}
.nav-list a::after {
  content: ""; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--red); transform: scaleX(0);
  transition: transform .3s;
}
.nav-list a:hover::after,
.nav-list a.current::after { transform: scaleX(1); }
.nav-list a.current { color: var(--red) !important; }
.nav-list a.current .nav-en { opacity: 1; }
.nav-list a.nav-cta {
  padding: 14px 32px !important; font-size: 15px !important;
  background: var(--red) !important; color: var(--white) !important;
  box-shadow: 0 2px 12px rgba(231,27,30,.35);
  letter-spacing: .06em !important;
  border-radius: 8px !important;
  display: flex !important; flex-direction: row !important;
  align-items: center !important; justify-content: center !important;
}
.nav-list a.nav-cta::after { display: none; }
.nav-cta .nav-en { display: none; }

/* CTA Section (shared) */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--red) 0%, #C41518 50%, #A01015 100%);
  padding: 88px 0;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0; opacity: .08;
  background: url('/wp-content/uploads/2026/03/texture-route-white.jpg') center/cover no-repeat;
}
.cta-section::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,.08) 0%, transparent 60%);
}
.cta-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
}
.cta-inner h3 {
  font-size: clamp(24px, 3.5vw, 32px); font-weight: 900;
  letter-spacing: .06em; margin-bottom: 8px;
}
.cta-inner > p { font-size: 16px; opacity: .8; font-weight: 300; margin-bottom: 36px; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 860px; margin: 0 auto 32px;
}
.cta-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px; padding: 36px 32px;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cta-card .cta-label { font-size: 13px; opacity: .65; margin-bottom: 8px; letter-spacing: .06em; }
.cta-card .cta-tel {
  font-size: 40px; font-weight: 900; letter-spacing: .02em;
  text-decoration: none; color: var(--white);
}
.cta-card .cta-tel:hover { opacity: .9; }
.cta-card .cta-tel-sub { font-size: 12px; opacity: .55; margin-top: 4px; }
.cta-card .btn-white {
  display: inline-block; padding: 16px 40px; font-size: 16px; font-weight: 700;
  white-space: nowrap; border-radius: 10px;
}
.cta-form-24h {
  font-size: 12px; opacity: .7; margin-top: 10px;
  padding: 6px 14px; background: rgba(255,255,255,.08); border-radius: 6px;
  display: inline-block;
}
.cta-trust {
  display: flex; justify-content: center; gap: 24px;
  font-size: 14px; opacity: .85; flex-wrap: wrap;
}
.cta-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Footer accent & trust */
.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 30%, var(--navy) 30%, var(--navy) 100%);
}
.footer-trust-line {
  background: var(--navy); padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo-mark { margin-bottom: 16px; }
.footer-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-desc { font-size: 13px; line-height: 1.9; margin-bottom: 16px; color: rgba(255,255,255,.55); }
.footer-tel-block { margin-top: 12px; }
.footer-tel-block a { font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: .02em; }
.footer-tel-block span { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.footer-trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: center; gap: 32px;
  font-size: 13px; color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}
/* WPCode: Astra Override — Insert as "Site Wide Header" (CSS only, wrap in <style>) */
/* Astra entry-content conflicts: 5 patterns */

/* 1. Full width */
.single .entry-content,
.page .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
}

/* 2. Child margin reset */
.entry-content > div,
.entry-content > section,
.entry-content > nav,
.entry-content > header,
.entry-content > footer {
  margin-bottom: 0 !important;
}

/* 3. Link color override */
.entry-content a.btn-primary,
.entry-content a.btn-white,
.entry-content a.btn-outline-white,
.entry-content a.nav-cta,
.entry-content a.nav-cta-mobile,
.entry-content a.fixed-cta-tel,
.entry-content a.fixed-cta-form,
.entry-content .cta-banner a,
.entry-content .footer a {
  color: inherit !important;
}
.entry-content a.btn-primary {
  color: #fff !important;
}
.entry-content a.btn-white {
  color: var(--navy, #04345A) !important;
}
.entry-content a.nav-cta {
  color: #fff !important;
}

/* 4. Heading color in dark sections */
.entry-content .hero h1,
.entry-content .hero h2,
.entry-content .hero p,
.entry-content .cta-banner h3,
.entry-content .cta-banner p,
.entry-content .footer h4,
.entry-content .footer h5,
.entry-content .footer p,
.entry-content .page-kv h1,
.entry-content .section--navy h2,
.entry-content .section--navy h3,
.entry-content .section--navy p {
  color: #fff !important;
}

/* 5. Wrapper padding reset */
.ast-container,
.site-content .ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.ast-separate-container .ast-article-single {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}
.ast-separate-container .ast-article-post {
  padding: 0 !important;
}

/* Astra header/footer hide */
.ast-above-header-wrap,
.ast-below-header-wrap,
.main-header-bar-wrap,
.ast-header-break-point .ast-above-header,
.site-header,
.ast-footer-overlay,
.site-footer,
#ast-scroll-top {
  display: none !important;
}

/* Breadcrumb spacing */
.entry-content .breadcrumb {
  margin-bottom: 0 !important;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .ast-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ast-separate-container .site-content > .ast-container {
    padding: 0 !important;
  }
}
