@font-face {
  font-family: "Syne";
  src: url("../fonts/Syne.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #0f0f23;
  --bg-surface: #1a1a3e;
  --bg-card: #212150;
  --accent-1: #6366f1;
  --accent-2: #06b6d4;
  --accent-gradient: linear-gradient(135deg, #6366f1, #06b6d4);
  --cta-gradient: linear-gradient(135deg, #f59e0b, #ef4444);
  --text-primary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-heading: #f8fafc;
  --border-color: rgba(99, 102, 241, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --font-heading: "Syne", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-gradient);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--accent-1);
  color: var(--accent-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary {
  background: var(--cta-gradient);
  color: #fff;
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.9rem;
  background: var(--accent-gradient);
  color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.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.4rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav a:hover {
  color: var(--accent-2);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.header-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
  white-space: nowrap;
}

.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: transform 0.3s, opacity 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 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-grid > *,
.devices-layout > *,
.contact-layout > *,
.blog-grid > * {
  min-width: 0;
  max-width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-advantages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-advantages li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-advantages i {
  color: var(--accent-2);
  font-size: 1.1rem;
  width: 20px;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.hero-float-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow);
}

.hero-float-card i {
  font-size: 1.8rem;
  color: var(--accent-2);
}

.hero-float-card strong {
  display: block;
  font-size: 1rem;
  color: var(--text-heading);
}

.hero-float-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services {
  padding: 64px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-1);
}

.service-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(99, 102, 241, 0.1);
}

.service-card i {
  font-size: 1.6rem;
  color: var(--accent-2);
  margin-bottom: 12px;
  display: block;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.services-cta {
  text-align: center;
  margin-top: 36px;
}

.devices {
  padding: 64px 0;
  background: var(--bg-surface);
}

.devices-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.devices-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.devices-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.devices-img-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.device-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
  background: rgba(6, 182, 212, 0.05);
}

.device-card i {
  font-size: 1.8rem;
  color: var(--accent-1);
}

.device-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.blog-section {
  padding: 64px 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
}

.blog-hero {
  padding: 64px 0 32px;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.blog-hero .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

.blog-list {
  padding: 16px 0 64px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-1);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  line-height: 1.3;
}

.blog-card-body h3 a:hover {
  color: var(--accent-2);
}

.blog-card-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.blog-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.3s;
}

.blog-link:hover {
  gap: 10px;
}

.contact-section {
  padding: 64px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.form-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-block h2 {
  font-size: 1.6rem;
}

.form-block > p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.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-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-1);
}

.form-check label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.faq-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-block h2 {
  font-size: 1.6rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-question i {
  color: var(--accent-2);
  transition: transform 0.3s;
  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;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 16px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer {
  background: var(--bg-surface);
  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: 32px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.footer-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-style: italic;
}

.footer-legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-legal ul a:hover {
  color: var(--accent-2);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-disclaimer {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-bottom: 16px;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 16px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-inner p i {
  color: var(--accent-2);
  margin-right: 6px;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.article-page {
  padding: 48px 0 64px;
}

.article-header {
  max-width: 720px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-back {
  font-size: 0.9rem;
  color: var(--accent-2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.article-back:hover {
  color: var(--accent-1);
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-hero-img {
  max-width: 720px;
  margin: 0 auto 32px;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.article-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--text-heading);
}

.article-cta {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
}

.article-cta p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-heading);
  font-weight: 600;
}

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 48px 20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.thanks-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.thanks-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.thanks-icon i {
  font-size: 3.5rem;
  color: #10b981;
}

.thanks-card h1 {
  font-size: 1.8rem;
}

.thanks-card p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.thanks-card .btn {
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .devices-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .logo,
  .burger {
    position: relative;
    z-index: 1001;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    border-bottom: 1px solid transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s, border-color 0.3s;
    z-index: 999;
  }

  .nav.open {
    max-height: 360px;
    padding: 24px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-bottom-color: var(--border-color);
  }

  .burger {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .header-notice {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 0;
  }

  .services,
  .devices,
  .contact-section,
  .blog-section,
  .blog-hero {
    padding: 40px 0 24px;
  }

  .blog-list {
    padding: 8px 0 40px;
  }

  .form-block {
    padding: 24px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-float-card {
    left: 8px;
    bottom: -12px;
  }
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

[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: 640px) {
  .header-inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  .header .logo {
    min-width: 0;
    flex: 1;
  }

  .header-notice {
    word-break: break-all;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer .logo a {
    flex-direction: column;
  }

  .footer-col {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .form-block {
    padding: 16px;
  }

  .devices-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .device-card {
    padding: 14px 10px;
  }

  .thanks-card {
    padding: 32px 20px;
  }
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--text-heading);
  padding-left: 14px;
  border-left: 3px solid var(--accent-1);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 14px 0;
  padding-left: 1.5rem;
}

.legal-content ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
}

.legal-content ul li::marker {
  color: var(--accent-2);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 32px 16px;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

  .legal-content h2 {
    font-size: 1.2rem;
  }

  .legal-content h3 {
    font-size: 1.05rem;
  }
}