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

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

:root {
  --bg: #F5F6FA;
  --bg-alt: #FFFFFF;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-solid: #FFFFFF;
  --text: #0A0E27;
  --text-soft: #4A5072;
  --text-muted: #7A809C;
  --border: rgba(10, 14, 39, 0.08);
  --border-strong: rgba(10, 14, 39, 0.14);
  --accent: #2563EB;
  --accent-2: #7C3AED;
  --accent-3: #06B6D4;
  --gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #06B6D4 100%);
  --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
  --shadow-sm: 0 1px 2px rgba(10, 14, 39, 0.04), 0 2px 8px rgba(10, 14, 39, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 14, 39, 0.06), 0 12px 32px rgba(10, 14, 39, 0.08);
  --shadow-lg: 0 12px 24px rgba(10, 14, 39, 0.08), 0 32px 64px rgba(10, 14, 39, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient);
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

.logo-gps {
  color: var(--text);
}

.logo-vend {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero {
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid > *,
.compare-grid > *,
.features-showcase > *,
.why-grid > *,
.cta-wrapper > *,
.testimonials-grid > * {
  min-width: 0;
  max-width: 100%;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}

.badge-new {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-color: rgba(245, 158, 11, 0.2);
  color: #92400E;
}

.badge-premium {
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  border-color: rgba(124, 58, 237, 0.2);
  color: #5B21B6;
}

.badge-fr {
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
  border-color: rgba(37, 99, 235, 0.2);
  color: #1E40AF;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 22px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-new {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-save {
  display: inline-flex;
  padding: 6px 12px;
  background: #10B981;
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.hero-cta {
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3), 0 2px 6px rgba(124, 58, 237, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4), 0 4px 12px rgba(124, 58, 237, 0.3);
}

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

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

.btn-lg {
  padding: 20px 40px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
  max-width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}

.trust-icon {
  font-size: 18px;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #EEF2FF, #F5F3FF);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
  z-index: 1;
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

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

.floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.floating-card small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.fc-icon {
  font-size: 22px;
}

.card-1 {
  top: 10%;
  left: -30px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 12%;
  right: -30px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.section {
  padding: 48px 0;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
}

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

.adv-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.adv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

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

.adv-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: inline-block;
  padding: 12px;
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
}

.adv-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.adv-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

.compare {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

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

.compare-visual {
  position: relative;
}

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

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

.compare-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.cb-icon {
  font-size: 20px;
}

.compare-content .section-title {
  text-align: left;
}

.compare-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.compare-list {
  display: grid;
  gap: 18px;
}

.compare-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.compare-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.ci-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
}

.compare-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.compare-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

.features-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.features-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #EEF2FF, #F5F3FF);
  box-shadow: var(--shadow-lg);
}

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

.features-list {
  display: grid;
  gap: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.feature-row:hover {
  transform: translateX(4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-top: 4px;
}

.feature-body h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

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

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

.why-content .section-title {
  text-align: left;
}

.why-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.stat {
  padding: 20px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

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

.why-points {
  display: grid;
  gap: 12px;
}

.wp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
}

.wp-icon {
  font-size: 18px;
}

.why-visual {
  position: relative;
}

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

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

.why-floating {
  position: absolute;
  top: 20px;
  right: 20px;
}

.wf-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

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

.testimonial {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.testi-head {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
}

.testi-head img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testi-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}

.testi-head small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.testi-stars {
  font-size: 12px;
  letter-spacing: -2px;
}

.testi-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

.testi-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gradient-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  align-self: flex-start;
}

.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.faq-head {
  text-align: center;
  margin-bottom: 36px;
}

.faq-head .section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item[open] {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(124, 58, 237, 0.04));
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  transition: transform 0.3s;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.final-cta {
  padding: 48px 0 64px;
}

.cta-wrapper {
  background: linear-gradient(135deg, #0A0E27 0%, #1E1B4B 50%, #312E81 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-wrapper::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-content .section-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

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

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

.cta-price .price-new {
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.cta-benefits span {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.cta-form-wrap {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--text);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.cta-form-head {
  margin-bottom: 24px;
}

.cta-form-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cta-form-head p {
  font-size: 14px;
  color: var(--text-soft);
}

.cta-form {
  display: grid;
  gap: 14px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-soft);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s;
}

.form-field input:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-field input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.checkbox-field label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}

.site-footer {
  background: #0A0E27;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-brand .logo a {
  color: white;
}

.footer-brand .logo-gps {
  color: white;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-legal h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-legal ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

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

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 2px;
}

.footer-disclaimer {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-disclaimer p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.thanks-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 50%, #ECFEFF 100%);
}

.thanks-card {
  max-width: 560px;
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.thanks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.thanks-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3);
}

.thanks-logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.thanks-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.thanks-card h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.thanks-card .thanks-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.thanks-details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.thanks-details div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.thanks-details div:not(:last-child) {
  border-bottom: 1px dashed var(--border);
}

.thanks-details strong {
  font-family: var(--font-display);
  color: var(--text);
}

.thanks-details span {
  color: var(--text-soft);
  word-break: break-all;
}

.thanks-next {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.legal-page {
  padding: 48px 0;
  flex: 1;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  word-break: break-word;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-content .last-updated,
.legal-content .legal-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin: 14px 0;
  color: var(--text-soft);
}

.legal-content li {
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--gradient);
  color: white;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s;
}

.back-home:hover {
  transform: translateY(-2px);
}

[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;
}

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

  .hero-grid > *,
  .compare-grid > *,
  .features-showcase > *,
  .why-grid > *,
  .cta-wrapper > *,
  .testimonials-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .compare-grid,
  .features-showcase,
  .why-grid,
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .advantages-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .hero {
    padding: 40px 0 32px;
  }
  
  .section {
    padding: 32px 0;
  }
  
  .faq-wrapper {
    padding: 32px 24px;
  }
  
  .cta-wrapper {
    padding: 40px 28px;
  }
  
  .floating-card {
    display: none;
  }
  
  .card-1,
  .card-2 {
    display: none;
  }
}

@media (max-width: 640px) {
  .advantages-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .logo-text {
    font-size: 20px;
    white-space: nowrap;
  }

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

  .compare-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    overflow: visible;
    aspect-ratio: auto;
  }

  .compare-image-wrapper img {
    border-radius: var(--radius-md);
    aspect-ratio: 4/5;
  }

  .compare-badge {
    position: static;
    max-width: 100%;
  }

  .why-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    overflow: visible;
    aspect-ratio: auto;
  }

  .why-image-wrapper img {
    border-radius: var(--radius-md);
    aspect-ratio: 4/5;
  }

  .why-floating {
    position: static;
    max-width: 100%;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .price-new {
    font-size: 38px;
  }
  
  .why-stats {
    grid-template-columns: 1fr;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .feature-num {
    font-size: 18px;
  }
  
  .compare-item {
    grid-template-columns: 1fr;
  }
  
  .ci-icon {
    width: 40px;
    height: 40px;
  }
  
  .cta-wrapper {
    padding: 32px 20px;
  }
  
  .cta-form-wrap {
    padding: 24px 20px;
  }
  
  .thanks-card {
    padding: 36px 24px;
  }
  
  .legal-content {
    padding: 28px 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner,
  .hero-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 32px);
  }

  .hero-subtitle,
  .section-lead {
    font-size: 15px;
  }

  .cta-form-wrap {
    padding: 20px 16px;
  }

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

  .btn {
    padding: 14px 24px;
    font-size: 15px;
    white-space: normal;
  }
}