/* ============================================
   CSS Variables - Navy & Gold
   ============================================ */
:root {
  --primary: #1E3A5F;
  --primary-dark: #152C48;
  --primary-light: #2C5282;
  --accent: #B8960C;
  --accent-light: #D4AF37;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-warm: #FFFBEB;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --text-hero: clamp(32px, 5vw, 48px);
  --text-h2: clamp(28px, 3.5vw, 40px);
  --text-h3: clamp(20px, 2.5vw, 24px);
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12px;
  --space-section: clamp(80px, 10vw, 120px);
  --space-group: clamp(40px, 5vw, 64px);
  --space-element: clamp(16px, 2vw, 24px);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ============================================
   Scroll Animation
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.visible .stagger-item { opacity: 0; transform: translateY(20px); animation: staggerIn 0.5s ease-out forwards; }
.animate-on-scroll.visible .stagger-item:nth-child(1) { animation-delay: 0s; }
.animate-on-scroll.visible .stagger-item:nth-child(2) { animation-delay: 0.1s; }
.animate-on-scroll.visible .stagger-item:nth-child(3) { animation-delay: 0.15s; }
.animate-on-scroll.visible .stagger-item:nth-child(4) { animation-delay: 0.2s; }
.animate-on-scroll.visible .stagger-item:nth-child(5) { animation-delay: 0.25s; }
.animate-on-scroll.visible .stagger-item:nth-child(6) { animation-delay: 0.3s; }
@keyframes staggerIn { to { opacity: 1; transform: translateY(0); } }

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(30,58,95,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(30,58,95,0.4); }

/* ============================================
   Header
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-crest {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-crest-sm {
  width: 32px;
  height: 32px;
  font-size: 18px;
}
.logo-text-group { display: flex; flex-direction: column; }
.logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-family: 'Playfair Display', serif;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.2s;
}
.header-tel:hover { color: var(--primary-light); }
.header-hours {
  font-size: var(--text-caption);
  color: var(--text-muted);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-close { background: none; border: none; color: var(--text); padding: 4px; }
.mobile-link {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--primary); }
.mobile-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 18px;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
}
.overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================
   Section Header
   ============================================ */
.section-header { text-align: center; margin-bottom: var(--space-group); }
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}
.section-title {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: var(--text-body);
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(30,58,95,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,58,95,0.4);
  background: var(--primary-dark);
}
.btn-form { width: 100%; padding: 16px; font-size: 16px; }
.btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: all 0.2s;
}
.btn-tel:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 12vw, 140px) 0 var(--space-section);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(30,58,95,0.75) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-free-badge {
  margin-bottom: 20px;
}
.hero-free-badge span {
  display: inline-block;
  padding: 8px 20px;
  background: #DC2626;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: var(--text-body);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.trust-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
  font-family: 'Playfair Display', 'Noto Sans JP', serif;
}
.trust-label {
  display: block;
  font-size: var(--text-caption);
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ============================================
   Form Card
   ============================================ */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.form-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.form-card-header-white { color: #fff; }
.form-card-header-white .form-card-title { color: #fff; }
.form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: #DC2626;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}
.form-card-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.form-card-desc {
  display: block;
  font-size: var(--text-caption);
  color: var(--text-muted);
}
.form-group { margin-bottom: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.required { color: #DC2626; font-size: 11px; margin-left: 4px; }
.form-input {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  border: 1.5px solid #D1D5DB;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-input::placeholder { color: #9CA3AF; }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-or {
  text-align: center;
  padding: 16px 0;
  position: relative;
}
.form-or::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border);
}
.form-or span {
  position: relative;
  background: #fff;
  padding: 0 16px;
  font-size: var(--text-small);
  color: var(--text-muted);
}

/* ============================================
   Worries
   ============================================ */
.worries {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
}
.worries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.worry-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.worry-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.worry-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.worry-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* ============================================
   Reasons
   ============================================ */
.reasons {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reason-card {
  padding: 36px 28px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.reason-number {
  position: absolute;
  top: -16px;
  left: 28px;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  opacity: 0.15;
}
.reason-icon {
  margin-bottom: 20px;
}
.reason-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.reason-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.8;
  text-align: left;
}

/* ============================================
   Team
   ============================================ */
.team {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-photo-wrapper {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
}
.team-info { padding: 24px; }
.team-position {
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.team-info h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-credentials {
  font-size: var(--text-caption);
  color: var(--text-muted);
  margin-bottom: 12px;
}
.team-bio {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   Voice
   ============================================ */
.voice {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.voice-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.voice-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(30,58,95,0.08);
  color: var(--primary);
  margin-bottom: 14px;
}
.voice-text {
  font-size: var(--text-small);
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}
.voice-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.voice-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.voice-detail {
  font-size: var(--text-caption);
  color: var(--text-muted);
}

/* ============================================
   Area
   ============================================ */
.area {
  padding: var(--space-section) 0;
  background: var(--bg-alt);
}
.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-map-svg {
  width: 100%;
  height: auto;
}
.area-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.area-detail-item {
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.area-detail-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.area-detail-item p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  font-family: inherit;
  line-height: 1.6;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  padding: var(--space-section) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,150,12,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.final-cta-content h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.final-cta-content p {
  font-size: var(--text-body);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 32px;
}
.final-tel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--accent-light);
  font-family: 'Playfair Display', 'Noto Sans JP', serif;
  transition: opacity 0.2s;
}
.final-tel:hover { opacity: 0.8; }
.final-tel-hours {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.final-cta-form .form-card {
  background: #fff;
}

/* ============================================
   Footer
   ============================================ */
footer {
  padding: 48px 0 24px;
  background: #F9FAFB;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.footer-logo-sub {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
}
.footer-info p {
  font-size: var(--text-caption);
  color: var(--text-muted);
  line-height: 1.6;
  text-align: right;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: var(--text-caption); color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: var(--text-caption);
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

/* ============================================
   Responsive: Tablet
   ============================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-right { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-form-wrapper { order: -1; }
  .hero-trust { gap: 16px; flex-wrap: wrap; }

  .worries-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .voice-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .area-content { grid-template-columns: 1fr; }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-info p { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ============================================
   Responsive: Mobile
   ============================================ */
@media (max-width: 480px) {
  .hero { padding-top: 80px; }
  .form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .trust-divider { width: 100%; height: 1px; }
  .final-tel { font-size: 24px; }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}
