/* Design System and Variables */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --secondary: #06b6d4;
  --secondary-hover: #0891b2;
  --accent: #10b981;
  --accent-light: #ecfdf5;
  --dark-bg: #0f172a;
  --dark-card: #1e293b;
  --light-bg: #f8fafc;
  --light-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font);
  color: var(--text-main);
  background-color: var(--light-bg);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--dark-bg);
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}

.header.scrolled .container {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.logo span {
  color: var(--dark-bg);
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.header-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-bg);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: 48px;
  font-weight: 850;
  line-height: 1.25;
  color: var(--dark-bg);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--primary);
  position: relative;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.hero-stat-item {
  flex: 1;
}

.hero-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--dark-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
  transform: rotate(1deg);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  z-index: 20;
}

.hero-floating-card.card-1 {
  bottom: 20px;
  left: -20px;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  top: 40px;
  right: -20px;
  animation-delay: 3s;
}

.floating-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-floating-card.card-2 .floating-icon {
  background-color: var(--accent-light);
  color: var(--accent);
}

.floating-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-bg);
}

.floating-text p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Keyframe Animations */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Trust Banner Section */
.trust-banner {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.trust-banner-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.trust-banner-title span {
  color: var(--secondary);
}

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

.trust-card {
  background-color: var(--dark-card);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.trust-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(37, 99, 235, 0.15);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.trust-card:nth-child(2) .trust-icon-box {
  background-color: rgba(6, 182, 212, 0.15);
  color: var(--secondary);
}

.trust-card:nth-child(3) .trust-icon-box {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--accent);
}

.trust-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-light);
}

.trust-card p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Service Finder Section */
.finder {
  padding: 100px 0;
  background-color: #ffffff;
}

.finder-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.finder-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  color: var(--dark-bg);
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(5, 165px);
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.finder-btn {
  background-color: #ffffff;
  border: 1px solid var(--border);
  padding: 18px 12px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.finder-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.finder-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.finder-btn:hover svg {
  stroke: var(--primary);
  transform: scale(1.1);
}

.region-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  padding: 28px 24px 4px;
  border-top: 1px dashed rgba(37, 99, 235, 0.25);
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-radius: 22px;
}

.region-btn {
  padding: 11px 18px;
  background-color: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  color: #1e3a8a;
  transition: var(--transition);
  box-shadow: 0 5px 14px rgba(37, 99, 235, 0.08);
}

.region-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

/* Products and Tab Section */
.products {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.tab-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  min-height: 400px;
  transition: var(--transition);
}

.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.2);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-img-box {
  width: 100%;
  height: 220px;
  background-color: #f1f5f9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img-box img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}

.product-card:nth-child(even) .product-badge {
  background-color: var(--secondary);
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark-bg);
}

.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-features {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-feature-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
}

.product-price-info {
  background-color: var(--light-bg);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.price-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

/* Feature Details Grid */
.features-detail {
  padding: 100px 0;
  background-color: #ffffff;
}

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

.feature-detail-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius-md);
  background-color: var(--light-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-detail-card:hover {
  transform: translateY(-3px);
  background-color: #ffffff;
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.15);
}

.feature-detail-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-detail-text h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark-bg);
}

.feature-detail-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Strengths (매장페이의 강점) Section */
.strengths {
  padding: 100px 0;
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.strengths .section-title {
  color: var(--text-light);
}

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

.strength-card {
  background-color: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}

.strength-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.strength-num {
  font-size: 40px;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.strength-card:hover .strength-num {
  color: var(--primary);
}

.strength-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-light);
}

.strength-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Quote Calculator Section */
.calculator {
  padding: 100px 0;
  background-color: #ffffff;
}

.calc-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.calc-form-group {
  margin-bottom: 24px;
}

.calc-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  color: var(--dark-bg);
}

.calc-select {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.calc-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.calc-checkbox-label:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.calc-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.calc-checkbox-label.checked {
  border-color: var(--primary);
  background-color: var(--primary-light);
  color: var(--primary);
}

.calc-result {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-result-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-muted);
  border-bottom: 2px solid var(--light-bg);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.calc-result-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.calc-result-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.calc-result-item.highlight {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}

.calc-result-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* Reviews (고객 후기) Section */
.reviews {
  padding: 100px 0;
  background-color: var(--light-bg);
}

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

.review-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

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

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-bg);
}

.review-biz {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.review-stars {
  color: #fbbf24;
  font-size: 14px;
}

.review-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
}

.review-quote-icon {
  font-size: 36px;
  color: rgba(37, 99, 235, 0.1);
  position: absolute;
  top: -24px;
  left: -8px;
}

.review-tag {
  align-self: flex-start;
  padding: 4px 10px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}

/* Banner CTA (전국 설치) */
.banner-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
  border-radius: 50%;
}

.banner-cta-content {
  position: relative;
  z-index: 10;
}

.banner-cta-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
}

.banner-cta-desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.banner-cta .btn {
  background-color: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.banner-cta .btn:hover {
  background-color: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact (상담 신청 폼) Section */
.contact {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-bg);
}

.contact-info-desc {
  font-size: 16px;
  color: var(--text-muted);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}

.contact-detail-text h4 {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-detail-text p {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-bg);
}

.contact-detail-text a:hover {
  color: var(--primary);
}

.contact-form-box {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  color: var(--dark-bg);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--light-bg);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.form-checkbox-item:hover {
  border-color: var(--primary);
}

.form-checkbox-item input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.form-checkbox-item.checked {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.form-agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.form-agree input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.form-agree a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-btn-call {
  background-color: #10b981;
  color: var(--text-light);
}

.float-btn-call:hover {
  background-color: #059669;
  transform: translateY(-4px) scale(1.05);
}

.float-btn-sms {
  background-color: #f59e0b;
  color: var(--text-light);
}

.float-btn-sms:hover {
  background-color: #d97706;
  transform: translateY(-4px) scale(1.05);
}

.float-btn-top {
  background-color: #ffffff;
  color: var(--dark-bg);
  border: 1px solid var(--border);
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-btn-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn-top:hover {
  background-color: var(--light-bg);
  transform: translateY(-4px);
}

/* Footer Section */
.footer {
  background-color: var(--dark-bg);
  color: #94a3b8;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-light);
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

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

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  background-color: var(--dark-card);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 16px;
}

.footer-social-btn:hover {
  background-color: var(--primary);
  transform: scale(1.1);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--text-light);
}

/* Mobile Quick Bar for Mobile Devices */
.mobile-quick-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
  grid-template-columns: repeat(3, 1fr);
}

.quick-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  gap: 4px;
}

.quick-bar-item svg {
  width: 20px;
  height: 20px;
}

.quick-bar-item:nth-child(1) {
  color: #10b981;
}

.quick-bar-item:nth-child(2) {
  color: #f59e0b;
}

.quick-bar-item:nth-child(3) {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Responsive Design Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-container {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 400px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .features-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .header .container {
    height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: var(--transition);
    border-top: 1px solid var(--border);
  }

  .nav-menu.open {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

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

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

  .calc-checkboxes {
    grid-template-columns: 1fr;
  }

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

  .floating-actions {
    bottom: 80px;
    right: 20px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .mobile-quick-bar {
    display: grid;
  }

  body {
    padding-bottom: 64px;
    /* Space for mobile quick bar */
  }
}

/* ================================
   Local SEO Region Page Design
================================ */

.local-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.14) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}

.local-hero .container {
  max-width: 1100px;
}

.local-hero .section-tag {
  margin-bottom: 20px;
}

.local-hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -1.5px;
  color: var(--dark-bg);
  margin-bottom: 22px;
}

.local-hero h1::after {
  content: '';
  display: block;
  width: 72px;
  height: 5px;
  background: var(--primary);
  border-radius: 999px;
  margin-top: 22px;
}

.local-hero p {
  max-width: 820px;
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 34px;
}

.local-content {
  padding: 90px 0;
  background: #ffffff;
}

.local-content .container {
  max-width: 1100px;
}

.local-content h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--dark-bg);
  line-height: 1.35;
  margin: 56px 0 18px;
  letter-spacing: -0.6px;
}

.local-content h2:first-child {
  margin-top: 0;
}

.local-content p {
  font-size: 17px;
  line-height: 1.95;
  color: #334155;
  margin-bottom: 18px;
}

.local-content h2+p {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 28px;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.local-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  transition: var(--transition);
}

.local-grid a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.local-related {
  margin-top: 80px;
  padding: 44px;
  background:
    linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border: 1px solid #dbeafe;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.local-related h2 {
  margin-top: 0;
}

.local-related p {
  background: transparent;
  border: none;
  padding: 0;
}

.local-related .hero-buttons {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .local-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .local-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .local-hero {
    padding: 120px 0 64px;
  }

  .local-hero h1 {
    font-size: 32px;
  }

  .local-hero p {
    font-size: 16px;
  }

  .local-content {
    padding: 64px 0;
  }

  .local-content h2 {
    font-size: 24px;
    margin-top: 42px;
  }

  .local-content p {
    font-size: 16px;
  }

  .local-content h2+p {
    padding: 22px 20px;
  }

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

  .local-grid a {
    min-height: 52px;
    font-size: 14px;
    border-radius: 14px;
  }

  .local-related {
    padding: 28px 20px;
    border-radius: 20px;
  }
}

/* ================================
   SEO Local Region Page - Clean Version
================================ */

.seo-local-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.16) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}

.seo-local-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.seo-local-hero-text h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -1.4px;
  color: var(--dark-bg);
  margin: 18px 0 24px;
}

.seo-local-hero-text h1 span {
  display: block;
  color: var(--primary);
}

.seo-local-hero-text p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 780px;
  margin-bottom: 34px;
}

.seo-local-hero-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-xl);
}

.seo-local-hero-card strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--dark-bg);
  margin-bottom: 14px;
}

.seo-local-hero-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.seo-local-hero-card ul {
  display: grid;
  gap: 12px;
}

.seo-local-hero-card li {
  padding: 13px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.seo-local-section {
  padding: 90px 0;
  background: #ffffff;
}

.seo-local-soft {
  background: var(--light-bg);
}

.seo-local-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.seo-local-head h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--dark-bg);
  margin: 16px 0;
  letter-spacing: -0.8px;
}

.seo-local-head p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.seo-equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.seo-equipment-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.seo-equipment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.28);
}

.seo-card-icon {
  width: fit-content;
  min-width: 54px;
  height: 54px;
  padding: 0 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
  margin-bottom: 20px;
}

.seo-equipment-card h3 {
  font-size: 21px;
  font-weight: 900;
  color: var(--dark-bg);
  margin-bottom: 12px;
}

.seo-equipment-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

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

.seo-business-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.seo-business-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark-bg);
  margin-bottom: 14px;
}

.seo-business-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.seo-district-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.seo-district-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  transition: var(--transition);
}

.seo-district-grid a:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.seo-local-cta {
  padding: 90px 0;
  background: var(--dark-bg);
}

.seo-local-cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.35) 0%, rgba(15, 23, 42, 0) 45%),
    var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.seo-local-cta-box h2 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
  color: #ffffff;
  margin: 18px 0 14px;
}

.seo-local-cta-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8;
}

.seo-local-cta-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {

  .seo-local-hero-inner,
  .seo-local-cta-box {
    grid-template-columns: 1fr;
  }

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

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

  .seo-local-cta-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .seo-local-hero {
    padding: 120px 0 64px;
  }

  .seo-local-hero-text h1 {
    font-size: 34px;
  }

  .seo-local-hero-text p {
    font-size: 16px;
  }

  .seo-local-section,
  .seo-local-cta {
    padding: 64px 0;
  }

  .seo-local-head h2,
  .seo-local-cta-box h2 {
    font-size: 27px;
  }

  .seo-equipment-grid,
  .seo-business-grid {
    grid-template-columns: 1fr;
  }

  .seo-district-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .seo-district-grid a {
    min-height: 52px;
    font-size: 14px;
  }

  .seo-local-hero-card,
  .seo-local-cta-box {
    padding: 28px 22px;
    border-radius: 22px;
  }
}


.region-consult-box {
  margin-top: 28px;
  padding: 26px 24px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 22px;
}

.region-consult-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 900;
  color: #1e3a8a;
}

.region-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile readability hardening for deployed static pages */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  overflow-wrap: anywhere;
}

.container,
.seo-local-hero-inner,
.seo-local-hero-text,
.seo-local-hero-card,
.seo-local-head,
.seo-equipment-card,
.seo-business-card,
.seo-district-grid,
.seo-local-cta-box,
.footer {
  min-width: 0;
}

.seo-local-hero-text h1,
.seo-local-head h2,
.seo-local-cta-box h2,
.seo-equipment-card h3,
.seo-business-card h3,
.seo-district-grid a {
  overflow-wrap: anywhere;
  word-break: keep-all;
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .seo-local-hero {
    padding: 104px 0 48px;
  }

  .seo-local-hero-text h1 {
    font-size: 28px;
    line-height: 1.32;
  }

  .seo-local-hero-text h1 span {
    margin-top: 8px;
  }

  .seo-local-hero-text p,
  .seo-local-head p,
  .seo-equipment-card p,
  .seo-business-card p,
  .seo-local-cta-box p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-buttons,
  .seo-local-cta-buttons,
  .region-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .seo-local-cta-buttons .btn,
  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .seo-local-section,
  .seo-local-cta {
    padding: 52px 0;
  }

  .seo-local-head {
    margin-bottom: 30px;
  }

  .seo-local-head h2,
  .seo-local-cta-box h2 {
    font-size: 24px;
    line-height: 1.35;
  }

  .seo-local-hero-card,
  .seo-local-cta-box,
  .seo-equipment-card,
  .seo-business-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .seo-equipment-grid,
  .seo-business-grid,
  .seo-district-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .seo-card-icon {
    min-width: 50px;
    height: 46px;
    padding: 0 10px;
    font-size: 18px;
    border-radius: 15px;
  }

  .footer {
    padding: 44px 0 28px;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .seo-local-hero-text h1 {
    font-size: 25px;
  }

  .seo-local-head h2,
  .seo-local-cta-box h2 {
    font-size: 22px;
  }

  .seo-local-hero-card,
  .seo-local-cta-box,
  .seo-equipment-card,
  .seo-business-card {
    padding: 22px 16px;
  }
}

/* Main page mobile tuning - Galaxy S25 sized screens */
@media (max-width: 768px) {
  .hero {
    padding: 104px 0 56px;
  }

  .hero-title,
  .section-title {
    font-size: 30px;
    line-height: 1.28;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .hero-desc,
  .section-subtitle {
    font-size: 16px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
    text-align: left;
  }

  .hero-stat-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat-item:last-child {
    border-bottom: 0;
  }

  .hero-stat-value {
    font-size: 30px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .hero-stat-label {
    font-size: 15px;
    line-height: 1.45;
  }

  .product-card,
  .feature-detail-card,
  .strength-card,
  .review-card,
  .contact-form-box,
  .calc-result {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .product-title,
  .strength-title,
  .contact-info-title,
  .calc-result-title {
    font-size: 24px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .product-desc,
  .strength-desc,
  .contact-info-desc,
  .review-text {
    font-size: 15px;
    line-height: 1.72;
  }

  .calc-result-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    font-size: 18px;
    line-height: 1.45;
  }

  .calc-result-item span,
  .calc-result-item .text-primary,
  #res-install-price,
  #res-rental-price,
  #res-benefit {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .calc-result-note {
    font-size: 15px;
    line-height: 1.65;
    text-align: center;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-control {
    min-width: 0;
    width: 100%;
    min-height: 52px;
    font-size: 16px;
    padding: 13px 14px;
  }

  .form-checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-checkbox-item,
  .calc-checkbox-label {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.4;
    justify-content: flex-start;
  }

  .form-checkbox-item input,
  .calc-checkbox-label input[type="checkbox"] {
    flex: 0 0 auto;
  }

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

  .contact-detail-item {
    align-items: flex-start;
  }

  .floating-actions {
    display: none;
  }

  .mobile-quick-bar {
    display: grid;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 14px;
  }

  .hero-title,
  .section-title {
    font-size: 27px;
  }

  .hero-stat-value {
    font-size: 26px;
  }

  .product-title,
  .strength-title,
  .contact-info-title,
  .calc-result-title {
    font-size: 22px;
  }

  .product-card,
  .feature-detail-card,
  .strength-card,
  .review-card,
  .contact-form-box,
  .calc-result {
    padding: 22px 16px;
  }

  .calc-result-item {
    font-size: 17px;
  }

  .btn-submit,
  #calc-submit-cta {
    font-size: 17px;
    line-height: 1.45;
    padding: 15px 18px;
    white-space: normal;
  }
}
