@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');




.page-root,
.site-body,
.legal-page {
  scroll-behavior: smooth;
  font-size: 16px;
  box-sizing: border-box;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --primary: rgb(225, 29, 72);
  --primary-hover: rgb(190, 18, 60);
  --primary-light: rgb(255, 241, 242);
  --primary-border: rgb(254, 205, 211);
  --primary-gradient: linear-gradient(135deg, rgb(225, 29, 72) 0%, rgb(190, 18, 60) 100%);
  --primary-glow: rgba(225, 29, 72, 0.28);

  --secondary: rgb(29, 78, 216);
  --secondary-hover: rgb(30, 64, 175);
  --secondary-light: rgb(239, 246, 255);
  --secondary-border: rgb(191, 219, 254);

  --deep: rgb(10, 15, 29);
  --navy-900: rgb(15, 23, 42);
  --navy-800: rgb(30, 41, 59);
  --navy-700: rgb(51, 65, 85);

  --white: rgb(255, 255, 255);
  --off-white: rgb(248, 250, 252);
  --surface-muted: rgb(241, 245, 249);
  --border-light: rgb(226, 232, 240);
  --border-subtle: rgba(226, 232, 240, 0.9);
  
  --charcoal: rgb(15, 23, 42);
  --dark-gray: rgb(51, 65, 85);
  --mid-gray: rgb(100, 116, 139);
  --light-gray: rgb(148, 163, 184);

  --success: rgb(5, 150, 105);
  --success-light: rgb(236, 253, 245);
  --warning: rgb(217, 119, 6);
  --warning-light: rgb(255, 251, 235);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 30px -8px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 24px 50px -12px rgba(15, 23, 42, 0.14);
  --shadow-primary: 0 12px 28px -6px rgba(225, 29, 72, 0.35);

  --container-width: 1180px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}


.site-body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}


.container,
.header-container,
.hero-container,
.stats-container,
.overview-container,
.split-container,
.features-container,
.process-container,
.target-container,
.specs-container,
.pros-cons-container,
.faq-container,
.cta-container,
.transparency-container,
.footer-container,
.legal-container {
  box-sizing: border-box;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 50px);
}


.bold-text {
  font-weight: 700;
  color: var(--deep);
}
.emphasis-text {
  font-style: italic;
  color: var(--primary);
}


.preloader {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(circle at center, rgb(30, 41, 59) 0%, var(--deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-text {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.preloader-ring {
  box-sizing: border-box;
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}


.disclosure-bar {
  box-sizing: border-box;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.disclosure-text {
  box-sizing: border-box;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}


.site-header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}
.header-main-bar {
  box-sizing: border-box;
  padding: 12px 0;
}
.header-inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo_img,
.logo-img {
  box-sizing: border-box;
  height: 34px;
  width: auto;
  display: block;
}

.main-nav {
  box-sizing: border-box;
}
.nav-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}
.nav-item {
  box-sizing: border-box;
  list-style: none;
}
.nav-link {
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.hamburger,
.hamburger-btn {
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  padding: 6px;
}
.hamburger-bar {
  box-sizing: border-box;
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--deep);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active .hamburger-bar-1,
.hamburger-btn.active .hamburger-bar-1 {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active .hamburger-bar-2,
.hamburger-btn.active .hamburger-bar-2 {
  opacity: 0;
}
.hamburger.active .hamburger-bar-3,
.hamburger-btn.active .hamburger-bar-3 {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  box-sizing: border-box;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 29, 0.98);
  z-index: 990;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-link {
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.mobile-nav-link:hover {
  color: var(--primary);
}


.main-content {
  box-sizing: border-box;
  display: block;
}

.hero-section {
  box-sizing: border-box;
  padding-top: clamp(120px, 14vw, 155px);
  padding-bottom: clamp(65px, 8vw, 110px);
  background: 
    radial-gradient(ellipse at 85% 20%, rgba(225, 29, 72, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(29, 78, 216, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.hero-inner {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(35px, 5vw, 75px);
  align-items: center;
}
.hero-content {
  box-sizing: border-box;
  z-index: 2;
}

.hero-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary-hover);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge-dot {
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite ease-in-out;
}
.hero-badge-text {
  box-sizing: border-box;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.hero-heading {
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--deep);
  letter-spacing: -0.03em;
}
.hero-heading-em {
  font-style: normal;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-sub {
  box-sizing: border-box;
  margin: 0 0 26px 0;
  padding: 0;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  color: var(--dark-gray);
  max-width: 520px;
  line-height: 1.72;
}

.trust-badges {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.trust-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.trust-badge:hover {
  border-color: var(--primary-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.trust-badge-icon {
  color: var(--primary);
  font-weight: 800;
}
.trust-badge-label {
  box-sizing: border-box;
}

.hero-actions {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.btn-primary {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -6px rgba(225, 29, 72, 0.45);
  color: var(--white);
}

.btn-secondary {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--deep);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-text {
  box-sizing: border-box;
}

.hero-legal {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 0.76rem;
  color: var(--mid-gray);
}

.hero-image-wrap {
  box-sizing: border-box;
  position: relative;
}
.hero-img-frame {
  box-sizing: border-box;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
}
.hero_img,
.hero-img {
  box-sizing: border-box;
  width: 100%;
  height: clamp(340px, 46vw, 490px);
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-img-frame:hover .hero_img,
.hero-img-frame:hover .hero-img {
  transform: scale(1.03);
}

.hero-price-tag {
  box-sizing: border-box;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 15, 29, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.hero-price-highlight {
  color: var(--primary);
  font-weight: 800;
}


.stats-strip {
  box-sizing: border-box;
  padding: 40px 0;
  background: var(--white);
  position: relative;
  margin-top: -24px;
  z-index: 10;
}
.stats-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.stat-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid var(--border-light);
}
.stat-item-4 {
  border-right: none;
}
.stat-number {
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 900;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-label {
  box-sizing: border-box;
  font-size: 0.84rem;
  color: var(--mid-gray);
  font-weight: 500;
  line-height: 1.4;
}


.section-space {
  box-sizing: border-box;
  padding: clamp(65px, 8vw, 105px) 0;
}
.section-space-sm {
  box-sizing: border-box;
  padding: clamp(45px, 6vw, 75px) 0;
}

.section-label {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-hover);
  border: 1px solid var(--primary-border);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label-centered {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.section-heading {
  box-sizing: border-box;
  margin: 0 0 12px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--deep);
}
.section-heading-line {
  box-sizing: border-box;
  display: block;
  width: 56px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  margin-bottom: 26px;
}
.section-heading-line-centered {
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1.02rem;
  color: var(--dark-gray);
  line-height: 1.76;
}

.disclaimer-box {
  box-sizing: border-box;
  background: var(--surface-muted);
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-top: 32px;
}


.overview-section {
  box-sizing: border-box;
  background: var(--white);
}
.overview-wrapper {
  box-sizing: border-box;
  max-width: 760px;
  margin: 0 auto;
}


.split-section {
  box-sizing: border-box;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.split-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}
.split-image {
  box-sizing: border-box;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background: var(--white);
}
.detail_img,
.detail-img {
  box-sizing: border-box;
  width: 100%;
  height: clamp(340px, 44vw, 460px);
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.split-image:hover .detail_img,
.split-image:hover .detail-img {
  transform: scale(1.02);
}
.split-content {
  box-sizing: border-box;
}

.spec-list {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.spec-item {
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.spec-item:hover {
  border-color: var(--primary-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.spec-label {
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
}
.spec-value {
  box-sizing: border-box;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--deep);
}


.features-section {
  box-sizing: border-box;
  background: var(--off-white);
}
.features-header {
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 8px;
}
.features-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.feature-card {
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-border);
  border-top-color: var(--primary);
}
.feature-icon {
  box-sizing: border-box;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  color: var(--primary);
  border: 1px solid var(--primary-border);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.feature-title {
  box-sizing: border-box;
  margin: 0 0 12px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--deep);
}
.feature-text {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
  color: var(--dark-gray);
  line-height: 1.68;
}


.process-section {
  box-sizing: border-box;
  background: var(--white);
}
.process-intro {
  box-sizing: border-box;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.process-steps {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.process-step {
  box-sizing: border-box;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  position: relative;
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.process-step-num {
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.process-step-title {
  box-sizing: border-box;
  margin: 0 0 12px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--deep);
}
.process-step-text {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.65;
}

.process-image-wrap {
  box-sizing: border-box;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  max-width: 900px;
  margin: 0 auto;
}
.process_img,
.process-img {
  box-sizing: border-box;
  width: 100%;
  height: clamp(280px, 36vw, 420px);
  object-fit: cover;
  display: block;
}


.target-section {
  box-sizing: border-box;
  background: var(--surface-muted);
}
.target-intro {
  box-sizing: border-box;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.target-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.target-card {
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.target-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}
.target-card-icon {
  box-sizing: border-box;
  font-size: 2.2rem;
  display: block;
  margin-bottom: 18px;
}
.target-card-title {
  box-sizing: border-box;
  margin: 0 0 12px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--deep);
}
.target-card-text {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.65;
}


.specs-section {
  box-sizing: border-box;
  background: var(--white);
}
.specs-intro {
  box-sizing: border-box;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}
.specs-table-wrap {
  box-sizing: border-box;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.specs-table {
  box-sizing: border-box;
  width: 100%;
  border-collapse: collapse;
}
.table-head {
  box-sizing: border-box;
  background: var(--deep);
  color: var(--white);
}
.table-head-row {
  box-sizing: border-box;
}
.table-head-cell {
  box-sizing: border-box;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}
.table-head-cell-left {
  text-align: left;
}
.table-head-cell-right {
  text-align: right;
}
.table-body {
  box-sizing: border-box;
}
.table-row {
  box-sizing: border-box;
}
.table-cell {
  box-sizing: border-box;
  padding: 15px 24px;
  font-size: 0.94rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-light);
}
.table-cell-alt {
  background: var(--off-white);
}
.table-cell-last {
  border-bottom: none;
}
.table-cell-label {
  font-weight: 600;
  color: var(--mid-gray);
  width: 38%;
  text-align: left;
}
.table-cell-value {
  font-weight: 700;
  color: var(--deep);
  text-align: right;
}

.repr-example {
  box-sizing: border-box;
  max-width: 820px;
  margin: 22px auto 0;
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.6;
}


.pros-cons-section {
  box-sizing: border-box;
  background: var(--off-white);
}
.pros-cons-intro {
  box-sizing: border-box;
  max-width: 760px;
  margin: 0 auto 32px;
}
.pros-cons-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.pros-box, .cons-box {
  box-sizing: border-box;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.pros-box {
  border-top: 4px solid var(--success);
}
.cons-box {
  border-top: 4px solid var(--warning);
}
.pros-cons-title {
  box-sizing: border-box;
  margin: 0 0 22px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pros-title-icon {
  color: var(--success);
}
.cons-title-icon {
  color: var(--warning);
}
.pros-title-text, .cons-title-text {
  box-sizing: border-box;
}

.pros-cons-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pros-cons-item {
  box-sizing: border-box;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--dark-gray);
  line-height: 1.58;
}
.pros-icon {
  box-sizing: border-box;
  color: var(--success);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.cons-icon {
  box-sizing: border-box;
  color: var(--warning);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.pros-text, .cons-text {
  box-sizing: border-box;
}


.faq-section {
  box-sizing: border-box;
  background: var(--white);
}
.faq-intro {
  box-sizing: border-box;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.faq-list {
  box-sizing: border-box;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  box-sizing: border-box;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--primary-border);
}
.faq-question {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.25s ease;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question-text {
  box-sizing: border-box;
}
.faq-icon {
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-light);
}
.faq-answer {
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  box-sizing: border-box;
  padding: 0 24px 22px 24px;
}
.faq-answer-text {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
  color: var(--dark-gray);
  line-height: 1.72;
}


.cta-section {
  box-sizing: border-box;
  padding: clamp(70px, 9vw, 110px) 0;
  background: 
    radial-gradient(circle at 75% 30%, rgba(225, 29, 72, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 20% 70%, rgba(29, 78, 216, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--deep) 0%, rgb(17, 24, 39) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  box-sizing: border-box;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-heading {
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.03em;
}
.cta-heading-em {
  font-style: normal;
  background: linear-gradient(135deg, rgb(251, 113, 133) 0%, rgb(225, 29, 72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.cta-text {
  box-sizing: border-box;
  margin: 0 0 34px 0;
  padding: 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.btn-primary-lg {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 17px 38px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  box-shadow: 0 16px 36px -6px rgba(225, 29, 72, 0.5);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px -6px rgba(225, 29, 72, 0.65);
  color: var(--white);
}
.cta-legal {
  box-sizing: border-box;
  margin: 22px 0 0 0;
  padding: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}


.transparency-section {
  box-sizing: border-box;
  background: var(--surface-muted);
  border-top: 1px solid var(--border-light);
}
.transparency-inner {
  box-sizing: border-box;
  max-width: 820px;
  margin: 0 auto;
}
.transparency-heading {
  box-sizing: border-box;
  margin: 0 0 12px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
}
.transparency-text {
  box-sizing: border-box;
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--dark-gray);
  line-height: 1.68;
}
.transparency-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.transparency-link:hover {
  text-decoration: underline;
}


.site-footer {
  box-sizing: border-box;
  background: var(--deep);
  color: var(--white);
  padding: 55px 0 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-nav {
  box-sizing: border-box;
}
.footer-links {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 28px);
}
.footer-item {
  box-sizing: border-box;
  list-style: none;
}
.footer-link {
  box-sizing: border-box;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-link:hover {
  color: var(--white);
}
.footer-copy {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}


.cookie-banner {
  box-sizing: border-box;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  margin: 0 auto;
  z-index: 9999;
  background: rgba(10, 15, 29, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-text-wrap {
  box-sizing: border-box;
}
.cookie-header-row {
  box-sizing: border-box;
}
.cookie-badge {
  box-sizing: border-box;
  display: inline-block;
  background: rgba(225, 29, 72, 0.2);
  color: rgb(251, 113, 133);
  border: 1px solid rgba(225, 29, 72, 0.3);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.cookie-title {
  box-sizing: border-box;
  margin: 6px 0 0 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 800;
}
.cookie-desc {
  box-sizing: border-box;
  margin: 8px 0 0 0;
  padding: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.cookie-link {
  color: rgb(251, 113, 133);
  text-decoration: underline;
}
.cookie-actions {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.btn-cookie-reject {
  box-sizing: border-box;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 18px;
  border-radius: var(--radius-xs);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.btn-cookie-accept {
  box-sizing: border-box;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-xs);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
}
.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -3px rgba(225, 29, 72, 0.5);
}


.legal-page {
  box-sizing: border-box;
  background: var(--off-white);
}
.legal-header {
  box-sizing: border-box;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  box-shadow: var(--shadow-xs);
}
.legal-header-inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-back-link {
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.25s ease;
}
.legal-back-link:hover {
  color: var(--primary);
}
.legal-main {
  box-sizing: border-box;
  display: block;
}
.legal-content {
  box-sizing: border-box;
  max-width: 820px;
  margin: 40px auto 60px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: clamp(30px, 5vw, 55px);
  box-shadow: var(--shadow-sm);
}
.legal-title {
  box-sizing: border-box;
  margin: 0 0 8px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--deep);
}
.legal-date {
  box-sizing: border-box;
  margin: 0 0 30px 0;
  padding: 0 0 16px 0;
  font-size: 0.82rem;
  color: var(--mid-gray);
  border-bottom: 1px solid var(--border-light);
}
.legal-subtitle {
  box-sizing: border-box;
  margin: 28px 0 12px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--deep);
}
.legal-text {
  box-sizing: border-box;
  margin: 0 0 16px 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.74;
}
.legal-list {
  box-sizing: border-box;
  margin: 0 0 18px 0;
  padding: 0 0 0 22px;
  list-style: disc;
}
.legal-item {
  box-sizing: border-box;
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 8px;
  list-style: disc;
}
.legal-link {
  color: var(--primary);
  text-decoration: none;
}
.legal-link:hover {
  text-decoration: underline;
}
.legal-footer {
  box-sizing: border-box;
  text-align: center;
  padding: 24px 0;
}
.legal-footer-text {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--mid-gray);
  font-size: 0.8rem;
}


.contact-container {
  box-sizing: border-box;
  max-width: var(--container-width);
  margin: 30px auto;
  padding: 0 clamp(20px, 4vw, 50px);
}
.contact-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  margin-top: 32px;
}
.contact-info-card,
.contact-form-card {
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.contact-card-title {
  box-sizing: border-box;
  margin: 0 0 18px 0;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--deep);
}
.contact-link {
  color: var(--primary);
  text-decoration: none;
}
.contact-link:hover {
  text-decoration: underline;
}
.contact-form {
  box-sizing: border-box;
}
.form-group {
  box-sizing: border-box;
  margin-bottom: 18px;
}
.form-label {
  box-sizing: border-box;
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 6px;
}
.form-input,
.form-textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: var(--transition);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}
.form-checkbox-group {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.form-checkbox {
  box-sizing: border-box;
  margin-top: 4px;
  accent-color: var(--primary);
}
.form-checkbox-label {
  box-sizing: border-box;
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.5;
}
.contact-submit-btn {
  width: 100%;
  justify-content: center;
}
.contact-feedback {
  box-sizing: border-box;
  display: none;
  background: var(--success-light);
  color: var(--success);
  border: 1px solid rgb(167, 243, 208);
  padding: 14px 18px;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
}
.contact-feedback.visible {
  display: block;
}

.thankyou-modal {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.thankyou-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.thankyou-backdrop {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 29, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.thankyou-card {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 32px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.thankyou-modal.active .thankyou-card {
  transform: scale(1);
}
.thankyou-close-btn {
  box-sizing: border-box;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: var(--surface-muted);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark-gray);
  cursor: pointer;
  transition: var(--transition);
}
.thankyou-close-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.thankyou-icon-wrap {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-full);
  background: var(--success-light);
  border: 2px solid rgb(167, 243, 208);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-icon {
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--success);
  line-height: 1;
}
.thankyou-title {
  box-sizing: border-box;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--deep);
}
.thankyou-message {
  box-sizing: border-box;
  margin: 0 0 24px;
  font-size: 0.94rem;
  color: var(--dark-gray);
  line-height: 1.6;
}
.thankyou-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 24px;
}


.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.line-break {
  display: block;
}
.nav-item {
  display: inline-block;
  list-style: none;
}
.footer-item {
  display: inline-block;
  list-style: none;
}
.hero-heading-em,
.cta-heading-em {
  font-style: italic;
  color: var(--primary);
}
.table-head-row,
.table-row {
  border-bottom: 1px solid var(--border-light);
}
.table-head-cell {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--navy-800);
}
.table-cell {
  padding: 16px 20px;
  color: var(--dark-gray);
}
.faq-question-text {
  flex: 1;
}
.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item-2 {
    border-right: none;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-heading {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .trust-badges,
  .hero-actions {
    justify-content: center;
  }
  .split-grid {
    grid-template-columns: 1fr;
  }
  .target-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: clamp(140px, 20vw, 175px);
    padding-bottom: 50px;
  }
  .nav-list {
    display: none;
  }
  .hamburger,
  .hamburger-btn {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    margin-top: -10px;
  }
  .stat-item {
    border-right: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .spec-list {
    grid-template-columns: 1fr;
  }
  .hero_img,
  .hero-img {
    height: 300px;
  }
  .detail_img,
  .detail-img {
    height: 280px;
  }
  .process_img,
  .process-img {
    height: 250px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container,
  .header-container,
  .hero-container,
  .stats-container,
  .overview-container,
  .split-container,
  .features-container,
  .process-container,
  .target-container,
  .specs-container,
  .pros-cons-container,
  .faq-container,
  .cta-container,
  .transparency-container,
  .footer-container,
  .legal-container {
    padding: 0 16px;
  }
  .disclosure-bar {
    padding: 6px 12px;
    font-size: 0.72rem;
    line-height: 1.45;
  }
  .hero-badge {
    white-space: normal;
    font-size: 0.72rem;
    padding: 6px 12px;
    text-align: center;
    line-height: 1.35;
  }
  .hero-heading {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
    line-height: 1.18;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-btn-primary,
  .hero-btn-secondary,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .trust-badges {
    flex-wrap: wrap;
    gap: 8px;
  }
  .trust-badge {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
  .hero-price-tag {
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 0.76rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat-item {
    padding: 14px 10px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    text-align: center;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .specs-table-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .specs-table,
  .table-head,
  .table-body,
  .specs-thead,
  .specs-tbody,
  .table-row,
  .specs-tr,
  .table-cell,
  .specs-td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .table-head,
  .specs-thead {
    display: none;
  }
  .table-row,
  .specs-tr {
    padding: 13px 14px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .table-row:last-child,
  .specs-tr:last-child {
    border-bottom: none;
  }
  .table-cell,
  .specs-td {
    padding: 0;
    border: none;
    text-align: left;
    width: 100%;
  }
  .table-cell-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mid-gray);
  }
  .table-cell-value {
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--deep);
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: left;
  }
  .feature-card {
    padding: 22px 18px;
  }
  .process-step {
    padding: 22px 18px;
  }
  .target-card {
    padding: 22px 18px;
  }
  .pros-box,
  .cons-box {
    padding: 22px 18px;
  }
  .pros-cons-item {
    font-size: 0.88rem;
    gap: 8px;
  }
  .faq-question {
    padding: 15px 16px;
    font-size: 0.92rem;
  }
  .faq-answer-inner {
    padding: 0 16px 16px;
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .cta-section {
    padding: 45px 0;
  }
  .cta-heading {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1.25;
  }
  .btn-primary-lg {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.98rem;
  }
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .btn-cookie-accept,
  .btn-cookie-reject {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    font-size: 0.68rem;
  }
  .hero-heading {
    font-size: 1.85rem;
  }
  .hero_img,
  .hero-img {
    height: 240px;
  }
  .detail_img,
  .detail-img {
    height: 220px;
  }
  .process_img,
  .process-img {
    height: 200px;
  }
}
