@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fbfbfd;
  --surface: #ffffff;
  --surface-2: #f5f5f7;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --accent-1: #0071e3;
  --accent-2: #00c7ff;
  --accent-3: #5e5ce6;
  --green: #30d158;
  --orange: #ff9f0a;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 10px 40px rgba(0, 113, 227, 0.25);
  --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --gradient-primary: linear-gradient(135deg, #0071e3 0%, #00c7ff 100%);
  --gradient-soft: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  --gradient-mesh: radial-gradient(at 20% 30%, rgba(0, 113, 227, 0.08) 0%, transparent 50%), radial-gradient(at 80% 70%, rgba(0, 199, 255, 0.08) 0%, transparent 50%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv01';
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding-bottom: 12px;
}

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

.logo img {
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-notice {
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--border);
  letter-spacing: 0.02em;
}

main {
  flex: 1 0 auto;
}

section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 12px 0 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-1);
  padding: 6px 14px;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(0, 113, 227, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.badge-best {
  background: linear-gradient(135deg, #ffd700 0%, #ff9f0a 100%);
  color: #1d1d1f;
  box-shadow: 0 4px 12px rgba(255, 159, 10, 0.3);
}

.badge-eco {
  background: linear-gradient(135deg, #30d158 0%, #34c759 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(48, 209, 88, 0.3);
}

.badge-it {
  background: white;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(0, 113, 227, 0.4);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-xl {
  padding: 20px 40px;
  font-size: 1.08rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #000;
}

.hero {
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-mesh), var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
  max-width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-1);
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.65;
}

.hero-price-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 22px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.price-old {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-save {
  background: #ff3b30;
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}

.trust-item i {
  color: var(--accent-1);
  font-size: 0.95rem;
}

.hero-micro {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gradient-soft);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-flag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
}

.flag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(48, 209, 88, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(48, 209, 88, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(48, 209, 88, 0.1); }
}

.intro-strip {
  padding: 32px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.strip-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.strip-item strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.strip-item small {
  color: var(--muted);
  font-size: 0.78rem;
}

.story {
  padding: 80px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.story-badge-icon {
  font-size: 1.8rem;
}

.story-badge strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
}

.story-badge small {
  color: var(--muted);
  font-size: 0.78rem;
}

.story-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 14px 0 20px;
}

.story-content p {
  color: #3a3a3c;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 20px;
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.features {
  padding: 80px 0;
  background: var(--surface-2);
  position: relative;
}

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

.feature-card {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-emoji {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1;
}

.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-1);
  background: rgba(0, 113, 227, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.use-cases {
  padding: 80px 0;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.use-card {
  grid-column: span 1;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.use-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.use-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.use-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.use-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.use-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.use-body p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  flex: 1;
}

.kit {
  padding: 80px 0;
  background: var(--surface-2);
}

.kit-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.kit-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 12px 0 0;
  max-width: 600px;
}

.kit-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 400px;
  line-height: 1.6;
}

.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.kit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kit-item {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.kit-item:hover {
  border-color: var(--accent-1);
  transform: translateX(4px);
}

.kit-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 36px;
}

.kit-item h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.kit-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.kit-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: white;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.kit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kit-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
}

.specs {
  padding: 80px 0;
}

.specs-head {
  text-align: center;
  margin-bottom: 40px;
}

.specs-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 12px 0 0;
}

.specs-table {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.specs-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row:hover {
  background: var(--surface-2);
}

.specs-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
}

.specs-value {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.why {
  padding: 80px 0;
  background: var(--surface-2);
}

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

.why-card {
  background: white;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

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

.why-emoji {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.reviews {
  padding: 80px 0;
}

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

.review-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
}

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

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-loc {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}

.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.review-author strong {
  display: block;
  font-size: 0.92rem;
}

.review-author small {
  color: var(--muted);
  font-size: 0.78rem;
}

.faq-section {
  padding: 80px 0;
  background: var(--surface-2);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  background: white;
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.faq-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 14px 0 16px;
}

.faq-left p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  background: white;
  border-color: var(--accent-1);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 12px;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--accent-1);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

.final-cta {
  padding: 80px 0 100px;
  background: var(--bg);
}

.cta-card {
  background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 100%);
  color: white;
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 113, 227, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(0, 199, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-top {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cta-price .price-old {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

.cta-price .price-current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-card .btn-primary {
  background: white;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-card .btn-primary:hover {
  background: #f5f5f7;
}

.cta-micro {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  background: #1d1d1f;
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 0;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col .logo-text {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.footer-desc {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links, .footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 820px;
  margin: 0 auto 14px;
  line-height: 1.6;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 14px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #3a3a3c;
  font-size: 1rem;
}

.legal-content ul {
  margin: 0 0 16px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #3a3a3c;
}

@media (max-width: 1024px) {
  .hero-grid, .story-grid, .faq-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .use-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .kit-grid {
    grid-template-columns: 1fr;
  }
  .kit-image {
    aspect-ratio: 16/9;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 56px 0;
  }
  .features-grid, .reviews-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .hero-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cta-card {
    padding: 40px 24px;
  }
  .cta-trust {
    flex-direction: column;
    gap: 8px;
  }
  .faq-wrap {
    padding: 28px 20px;
  }
  .kit-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.last-updated {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.thanks-main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background: var(--gradient-mesh), var(--bg);
}

.thanks-content {
  max-width: 640px;
  width: 100%;
  text-align: center;
  background: white;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.thanks-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.thanks-logo img {
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.thanks-content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 20px;
}

.thanks-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.thanks-content span {
  font-weight: 600;
  color: var(--text);
}

.thanks-content .btn-primary {
  margin-top: 24px;
  display: inline-flex;
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="zoom-in"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) scale(0.98) !important;
}

[data-aos="zoom-in"].aos-animate {
  transform: translate3d(0, 0, 0) scale(1) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-grid > *,
  .story-grid > *,
  .kit-grid > *,
  .faq-wrap > *,
  .features-grid > *,
  .use-grid > *,
  .reviews-grid > *,
  .why-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: 68px;
    padding: 12px 0;
    gap: 10px;
  }

  .header-notice {
    word-break: break-all;
  }

  .logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-text {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col {
    word-break: break-all;
  }

  .hero-image-frame {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    aspect-ratio: auto;
  }

  .hero-image-frame img {
    border-radius: var(--radius-md);
  }

  .hero-flag {
    position: static;
    max-width: 100%;
  }

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

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

  .thanks-content {
    padding: 32px 20px;
  }
}

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

  section {
    padding: 40px 0;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .faq-wrap {
    padding: 24px 16px;
  }

  .cta-card {
    padding: 32px 16px;
  }

  .legal-content {
    padding: 40px 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}