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

:root {
  --pink: #e8637a;
  --pink-light: #fdf0f2;
  --pink-dark: #c44d63;
  --navy: #1a2340;
  --dark: #333333;
  --gray: #666666;
  --light-gray: #f0f0f0;
  --light: #f8f8f8;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.14);
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.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-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--pink);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,99,122,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
}

.btn-white:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

/* ===== ANIMATE ===== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-top {
  background: var(--pink-light);
  padding: 8px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--pink-dark);
  font-weight: 600;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}

.header-logo a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.header-logo span {
  color: var(--pink);
}

.header-phone {
  text-align: center;
}

.header-phone .label {
  font-size: 0.72rem;
  color: var(--gray);
  display: block;
}

.header-phone .number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.05em;
}

.header-phone .number::before {
  content: '📞 ';
  font-size: 1.2rem;
}

.header-cta .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.header-nav {
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 0 24px;
}

.header-nav ul {
  display: flex;
  gap: 0;
  justify-content: center;
}

.header-nav ul li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--dark);
  position: relative;
  font-weight: 500;
}

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

.header-nav ul li a:hover::after,
.header-nav ul li a.active::after {
  width: 60%;
}

.header-nav ul li a:hover {
  color: var(--pink);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
#hero {
  margin-top: 120px; /* header height */
  background: linear-gradient(135deg, #fdf0f2 0%, #fff0f3 40%, #f8e8eb 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,99,122,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 14px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--pink);
}

.hero-text .sub {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-text .sub span {
  display: inline-block;
  margin-right: 16px;
  color: var(--pink);
  font-weight: 600;
}

.hero-text .sub span::before {
  content: '✓ ';
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 120px;
}

.hero-stat .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
}

.hero-stat .lbl {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 2px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(232,99,122,0.2);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  background: var(--pink);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
}

/* ===== STATS BAR ===== */
#stats-bar {
  background: var(--navy);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
  color: var(--white);
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-item .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
  display: block;
}

.stat-item .lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-card .service-link::after {
  content: ' →';
}

/* ===== FEATURES ===== */
#features {
  background: var(--pink-light);
}

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

.feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== PRICE ===== */
#price {
  background: var(--white);
}

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

.price-card {
  border-radius: var(--radius);
  border: 2px solid var(--light-gray);
  overflow: hidden;
  transition: all var(--transition);
}

.price-card:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  border-color: var(--pink);
  transform: scale(1.03);
}

.price-header {
  padding: 24px;
  text-align: center;
  background: var(--light);
}

.price-card.featured .price-header {
  background: var(--pink);
  color: var(--white);
}

.price-header .badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.price-card.featured .price-header .badge {
  background: var(--white);
  color: var(--pink);
}

.price-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.price-header .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  margin-top: 8px;
}

.price-card.featured .price-header .amount {
  color: var(--white);
}

.price-header .amount span {
  font-size: 0.9rem;
  font-weight: 400;
}

.price-body {
  padding: 24px;
}

.price-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem;
  color: var(--gray);
}

.price-body ul li::before {
  content: '✓ ';
  color: var(--pink);
  font-weight: 700;
}

.price-body ul li:last-child {
  border-bottom: none;
}

.price-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--gray);
}

/* ===== CASES ===== */
#cases {
  background: var(--light);
}

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

.case-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
}

.case-type {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.case-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.case-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
}

.case-result {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--pink-light);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--pink-dark);
  font-weight: 600;
}

/* ===== FAQ ===== */
#faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: var(--pink-light);
}

.faq-q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.faq-question .arrow {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--pink);
  transition: transform var(--transition);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 0 66px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px 66px;
}

/* ===== CTA BANNER ===== */
#cta-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 60px 0;
  text-align: center;
}

#cta-banner h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

#cta-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.cta-phone-big {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.cta-phone-big::before {
  content: '📞 ';
  font-size: 2rem;
}

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

/* ===== FLOATING CTA ===== */
#floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.floating-phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.floating-phone span {
  color: var(--pink);
  font-size: 1.8rem;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0 80px; /* 80px for floating CTA */
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--pink);
}

.footer-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.footer-nav h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

.footer-nav ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--pink);
}

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

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow);
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  margin-top: 120px;
  background: linear-gradient(135deg, #fdf0f2 0%, #fff0f3 100%);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.page-hero p {
  margin-top: 12px;
  color: var(--gray);
  font-size: 0.95rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--gray);
}

.breadcrumb a { color: var(--pink); }
.breadcrumb span { color: var(--gray); }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}

.form-group label .required {
  color: var(--pink);
  font-size: 0.78rem;
  margin-left: 6px;
  background: var(--pink-light);
  padding: 1px 6px;
  border-radius: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-check input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--pink);
}

.form-check label {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 0;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit .btn {
  padding: 16px 60px;
  font-size: 1rem;
}

.alert-error {
  background: #fff0f3;
  border: 1px solid var(--pink);
  color: var(--pink-dark);
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* ===== PRICE TABLE ===== */
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.price-table th,
.price-table td {
  padding: 14px 18px;
  border: 1px solid var(--light-gray);
  text-align: left;
}

.price-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.price-table tr:nth-child(even) td {
  background: var(--pink-light);
}

.price-table .price-col {
  color: var(--pink);
  font-weight: 700;
}

/* ===== SERVICES PAGE ===== */
.service-detail {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.service-detail-img {
  flex: 0 0 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-detail-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-detail-text h2 span {
  color: var(--pink);
}

.service-detail-text p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-steps {
  margin-top: 18px;
}

.service-steps h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-steps ol {
  list-style: none;
  counter-reset: step;
}

.service-steps ol li {
  counter-increment: step;
  padding-left: 36px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--gray);
}

.service-steps ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .footer-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-main {
    flex-wrap: wrap;
    padding: 10px 16px;
  }

  .header-nav {
    display: none;
    padding: 0;
  }

  .header-nav.open {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    padding: 10px 0;
  }

  .header-nav ul li a {
    padding: 12px 20px;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    margin-top: 90px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 16px;
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .hero-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

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

  .hero-cta-group {
    justify-content: center;
  }

  .services-grid,
  .features-grid,
  .price-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 50px 0;
  }

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

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

  #floating-cta {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
  }

  .service-detail-inner {
    flex-direction: column;
  }

  .service-detail-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .price-card.featured {
    transform: none;
  }

  .cta-phone-big {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-stat {
    min-width: 100px;
    padding: 10px 14px;
  }

  .hero-stat .num {
    font-size: 1.2rem;
  }

  .header-phone .number {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .stat-item .num {
    font-size: 1.3rem;
    word-break: keep-all;
  }
  .stat-item .lbl {
    font-size: 0.7rem;
  }
}
