/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --primary-dark: #0f2440;
  --accent: #c8a45a;
  --accent-light: #e8d49a;
  --green: #2e7d5b;
  --green-light: #e8f5e9;
  --warm-bg: #faf8f5;
  --warm-bg2: #f5f0e8;
  --text: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --white: #ffffff;
  --border: #e0d8cc;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* ============================================
   UTILITY
============================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.section-title .sub {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.section-title .line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.top-bar span {
  margin: 0 12px;
  opacity: 0.9;
}

.top-bar .highlight {
  color: var(--accent-light);
  font-weight: 500;
}

/* ============================================
   HEADER
============================================ */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-text {
  line-height: 1.3;
}

.logo-text .main {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-text .sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-tel {
  text-align: right;
}

.header-tel .number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
}

.header-tel .time {
  font-size: 0.7rem;
  color: var(--text-light);
}

.header-contact-btn {
  background: linear-gradient(135deg, var(--accent), #d4b46a);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(200,164,90,0.3);
  transition: all var(--transition);
}

.header-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(200,164,90,0.4);
  opacity: 1;
}

/* Nav */
.nav {
  background: var(--primary-dark);
}

.nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
}

.nav ul li a {
  display: block;
  padding: 14px 28px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: background var(--transition);
  position: relative;
}

.nav ul li a:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav ul li a:hover::after {
  width: 60%;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition);
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0ebe3 0%, #e8e0d4 50%, #d8cfc0 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,164,90,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,58,92,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.6rem;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 32px;
  max-width: 500px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d4b46a);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(200,164,90,0.3);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(200,164,90,0.4);
  opacity: 1;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid var(--primary);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  opacity: 1;
}

.hero-image {
  flex: 0 0 400px;
  position: relative;
}

.hero-image-placeholder {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(200,164,90,0.3);
  border-radius: 50%;
}

.hero-image-text {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.4;
}

.hero-image-text .big {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 4rem;
  font-weight: 700;
}

.hero-image-text .small {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   TRUST BADGES (pet-sousai.jp style)
============================================ */
.trust-badges {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.badge-item {
  text-align: center;
  padding: 20px 10px;
}

.badge-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: var(--warm-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  border: 2px solid var(--border);
}

.badge-item .badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.badge-item .badge-number span {
  font-size: 0.8rem;
  font-weight: 400;
}

.badge-item .badge-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================
   REASONS
============================================ */
.reasons {
  background: var(--warm-bg);
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.reason-item:nth-child(even) {
  flex-direction: row-reverse;
}

.reason-number {
  flex: 0 0 80px;
  text-align: center;
}

.reason-number span {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
}

.reason-content {
  flex: 1;
}

.reason-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.reason-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 2;
}

.reason-icon {
  flex: 0 0 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--warm-bg2), var(--warm-bg));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ============================================
   SERVICES
============================================ */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-card ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.service-card .card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ============================================
   VOICE (お客様の声) - pet-sousai style
============================================ */
.voice {
  background: var(--warm-bg);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.voice-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  font-family: 'Noto Serif JP', serif;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.voice-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1rem;
}

.voice-card p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.voice-avatar {
  width: 40px;
  height: 40px;
  background: var(--warm-bg2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.voice-author-info .name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.voice-author-info .detail {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

/* ============================================
   EMERGENCY (事故・故障連絡先)
============================================ */
.emergency {
  background: var(--primary);
  color: var(--white);
}

.emergency .section-title h2 {
  color: var(--white);
}

.emergency .section-title .sub {
  color: var(--accent-light);
}

.emergency .section-title .line {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.emergency-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.emergency-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
}

.emergency-card .company-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--accent-light);
}

.emergency-card .phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.emergency-card .phone-row + .phone-row {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.emergency-card .phone-label {
  font-size: 0.82rem;
  opacity: 0.8;
}

.emergency-card .phone-number {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
}

.emergency-card .phone-number a {
  color: var(--white);
}

/* ============================================
   COMPANY INFO
============================================ */
.company-info {
  background: var(--white);
}

.company-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.company-table table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.company-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
  width: 160px;
  font-size: 0.85rem;
}

.company-table td {
  background: var(--white);
  color: var(--text);
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   CTA
============================================ */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,164,90,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.cta p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn-phone {
  background: var(--white);
  color: var(--primary);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all var(--transition);
}

.cta-btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  opacity: 1;
}

.cta-btn-phone .tel-icon {
  font-size: 1.3rem;
}

.cta-btn-phone .tel-time {
  font-size: 0.7rem;
  font-weight: 400;
  display: block;
  opacity: 0.7;
}

.cta-btn-mail {
  background: linear-gradient(135deg, var(--accent), #d4b46a);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(200,164,90,0.3);
  transition: all var(--transition);
}

.cta-btn-mail:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,164,90,0.4);
  opacity: 1;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.footer-brand .footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.9;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.82rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ============================================
   FIXED MOBILE CTA (pet-sousai.jp style)
============================================ */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 10px 16px;
}

.fixed-cta-inner {
  display: flex;
  gap: 10px;
}

.fixed-cta-btn {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fixed-cta-phone {
  background: var(--primary);
  color: var(--white);
}

.fixed-cta-mail {
  background: linear-gradient(135deg, var(--accent), #d4b46a);
  color: var(--white);
}

/* ============================================
   POLICY PAGES
============================================ */
.policy-section {
  background: var(--warm-bg);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.policy-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  color: var(--primary);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.policy-content h3:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 16px;
}

.policy-content ol {
  counter-reset: policy-counter;
  list-style: none;
  margin-bottom: 16px;
}

.policy-content ol li {
  counter-increment: policy-counter;
  padding: 8px 0 8px 32px;
  font-size: 0.9rem;
  line-height: 1.9;
  position: relative;
}

.policy-content ol li::before {
  content: counter(policy-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    flex: none;
  }

  .hero-image-placeholder {
    width: 250px;
    height: 250px;
  }

  .hero-image-text .big {
    font-size: 2.5rem;
  }

  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reason-item,
  .reason-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .emergency-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .top-bar {
    font-size: 0.7rem;
  }

  .top-bar span {
    display: block;
    margin: 2px 0;
  }

  .header-right .header-tel,
  .header-right .header-contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 1050;
    padding-top: 80px;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
  }

  .nav ul li a {
    padding: 16px 40px;
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .badge-item:last-child {
    grid-column: span 2;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .reason-item {
    padding: 28px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fixed-cta {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .policy-content {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-image-placeholder {
    width: 200px;
    height: 200px;
  }

  .hero-image-text .big {
    font-size: 2rem;
  }

  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .badge-item:last-child {
    grid-column: span 2;
  }
}
