@font-face {
  font-family: "Sora";
  src: url(../fonts/Sora-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-Italic-VariableFont_opsz\,wght.ttf);
  font-style: italic;
  font-display: swap;
}

:root {
  --bg-main: #f8f9fc;
  --bg-white: #ffffff;
  --bg-soft: #f0f2f8;
  --accent-primary: #6d28d9;
  --accent-secondary: #8b5cf6;
  --accent-cyan: #0891b2;
  --accent-gradient: linear-gradient(135deg, #6d28d9 0%, #0891b2 100%);
  --accent-gradient-soft: linear-gradient(135deg, rgba(109, 40, 217, 0.07) 0%, rgba(8, 145, 178, 0.07) 100%);
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: rgba(100, 116, 139, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(30, 41, 59, 0.08);
  --shadow-lg: 0 12px 40px rgba(30, 41, 59, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(109, 40, 217, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-accent {
  background: var(--accent-gradient);
  color: #fff;
}

.badge-outline {
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--accent-primary);
}

.header-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 200px;
  text-align: right;
  line-height: 1.3;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  padding: 64px 0;
  background: radial-gradient(ellipse at top right, rgba(109, 40, 217, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(8, 145, 178, 0.05) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}

.hero-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 500px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-features i {
  color: var(--accent-cyan);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-float-card i {
  color: #f59e0b;
  font-size: 1.4rem;
}

.hero-float-card strong {
  display: block;
  font-size: 1.1rem;
}

.hero-float-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.services {
  padding: 64px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.service-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon i {
  font-size: 1.2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.devices {
  padding: 64px 0;
  background: var(--accent-gradient-soft);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.device-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.device-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.device-card i {
  font-size: 1.6rem;
  color: var(--accent-secondary);
  min-width: 32px;
  text-align: center;
}

.device-card span {
  font-weight: 600;
  font-size: 0.92rem;
}

.process {
  padding: 64px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.process-visual {
  position: relative;
}

.process-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.process-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.process-badge i {
  color: var(--accent-cyan);
}

.process-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 28px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 40px;
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-faq {
  padding: 64px 0;
  background: var(--accent-gradient-soft);
}

.pricing-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pricing-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 24px;
}

.price-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
}

.price-card-header {
  margin-bottom: 24px;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.price-features i {
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

.price-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.faq-block h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--accent-secondary);
  font-size: 0.8rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.contact {
  padding: 64px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1rem;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.perk i {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  min-width: 24px;
  text-align: center;
}

.perk span {
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-primary);
}

.form-check label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.blog-preview {
  padding: 64px 0;
  background: var(--accent-gradient-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 20px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a:hover {
  color: var(--accent-primary);
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover {
  gap: 10px;
}

.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--accent-primary);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.footer-disclaimer {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-bottom: 16px;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 64px 0;
  background: radial-gradient(ellipse at center, rgba(109, 40, 217, 0.05) 0%, transparent 60%);
}

.thanks-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
}

.thanks-logo {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.thanks-icon {
  margin-bottom: 20px;
}

.thanks-icon i {
  font-size: 3.5rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-card h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.thanks-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.blog-article {
  padding: 48px 0 64px;
}

.article-header {
  max-width: 780px;
  margin: 0 auto 32px;
}

.article-header .blog-link {
  margin-bottom: 20px;
  display: inline-flex;
}

.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 12px 0;
  line-height: 1.3;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-meta i {
  color: var(--accent-cyan);
  margin-right: 4px;
}

.article-img {
  max-width: 780px;
  margin: 0 auto 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--text-primary);
}

.article-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--text-primary);
}

.article-content p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.article-content ul.article-list {
  margin: 16px 0 20px 20px;
  list-style: disc;
}

.article-content ul.article-list li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.chart-container {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 28px 0;
  box-shadow: var(--shadow);
}

.chart-container h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-align: center;
}

.chart-container canvas {
  max-height: 320px;
}

.tip-box {
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(109, 40, 217, 0.15);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.tip-box .tip-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tip-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.warning-box {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.warning-box .tip-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.warning-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.comparison-table thead {
  background: var(--accent-gradient);
}

.comparison-table th {
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.comparison-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--bg-soft);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.article-checklist {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-checklist li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.article-checklist i {
  color: var(--accent-cyan);
  margin-top: 4px;
  font-size: 0.9rem;
}

.article-cta {
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(109, 40, 217, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 40px 0 0;
}

.article-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.article-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: translateY(0);
  }

  .burger {
    display: flex;
  }

  .header-notice {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .devices-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero {
    padding: 40px 0;
  }

  .services,
  .devices,
  .process,
  .pricing-faq,
  .contact,
  .blog-preview {
    padding: 40px 0;
  }

  .hero-float-card {
    left: 8px;
    bottom: -12px;
  }

  .thanks-card {
    padding: 32px 24px;
  }

  .article-header h1 {
    font-size: 1.5rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.82rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 10px;
  }
}

.legal-page {
  padding: 0 0 64px;
}

.legal-hero {
  background: var(--accent-gradient-soft);
  border-bottom: 1px solid var(--border-color);
  padding: 48px 0 36px;
  margin-bottom: 40px;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}

.legal-update {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow);
}

.legal-update i {
  color: var(--accent-cyan);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  padding-left: 16px;
  border-left: 4px solid var(--accent-primary);
  color: var(--text-primary);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: var(--text-primary);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 1rem 0;
}

.legal-strong {
  font-weight: 700;
  color: var(--text-primary);
}

.legal-list {
  list-style: disc;
  margin: 1rem 0 1rem 1.5rem;
}

.legal-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-list strong {
  color: var(--text-primary);
}

.legal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}

.legal-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--accent-primary);
}

.legal-card p {
  margin: 0;
}

.legal-card-line {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-content .comparison-table {
  margin: 24px 0;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 36px 0 28px;
    margin-bottom: 28px;
  }

  .legal-content {
    padding: 0 16px 32px;
  }

  .legal-content h2 {
    font-size: 1.25rem;
  }

  .legal-card {
    padding: 18px 20px;
  }
  table {
    display: none !important;
  }
  body {
    word-break: break-word;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 24px rgba(30, 41, 59, 0.12);
  padding: 24px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-text {
    min-width: 100%;
  }

  .cookie-actions {
    justify-content: center;
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}