:root {
  --bg: #f4f8fc;
  --bg-dark: #0a1628;
  --surface: #ffffff;
  --text: #1a2b3c;
  --text-muted: #5c6f82;
  --accent: #007bff;
  --accent-2: #0099ff;
  --accent-soft: #e8f4fc;
  --border: #d8e4ef;
  --shadow: 0 18px 50px rgba(10, 40, 80, 0.08);
  --radius: 18px;
  --max: 1160px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 228, 239, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: 56px;
  width: 56px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 119, 204, 0.25);
}

.nav-cta:hover {
  opacity: 0.95;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(0, 180, 216, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(0, 119, 204, 0.12), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px 56px;
  align-items: start;
  position: relative;
}

.hero-content {
  padding-top: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), #00c9a7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 119, 204, 0.3);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.stat {
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(10, 40, 80, 0.04);
}

.stat strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.hero-card h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

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

.module-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.module-item strong {
  display: block;
  font-size: 0.95rem;
}

.module-item small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Sections */
section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 123, 255, 0.2);
}

.service-card.featured-service {
  border-color: rgba(0, 123, 255, 0.25);
  background: linear-gradient(160deg, var(--surface) 0%, var(--accent-soft) 100%);
}

.service-card.featured-service a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.service-card.featured-service a:hover {
  text-decoration: underline;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.3;
}

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

#platform {
  background: var(--bg);
}

#platform .section-header {
  padding-top: 8px;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(10, 40, 80, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.product-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: linear-gradient(135deg, #0a2540 0%, #0d3d5c 100%);
  color: #fff;
  border: none;
}

.product-card.featured p,
.product-card.featured .product-tag {
  color: rgba(255, 255, 255, 0.75);
}

.product-card.featured h3 {
  color: #fff;
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.product-card p {
  color: var(--text-muted);
  margin: 0 0 20px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.92rem;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c9a7;
  font-weight: 700;
}

/* Benefits */
.benefits {
  background: var(--bg-dark);
  color: #e8f0f8;
}

.benefits .section-header h2 {
  color: #fff;
}

.benefits .section-header p {
  color: rgba(232, 240, 248, 0.7);
}

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

.benefit-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4cc9f0, #00c9a7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.benefit-card p {
  margin: 0;
  color: rgba(232, 240, 248, 0.65);
  font-size: 0.92rem;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.audience-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.audience-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.audience-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Pricing CTA */
.pricing-cta {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg) 100%);
  padding: 64px 0;
}

.pricing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.pricing-cta-inner h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.pricing-cta-inner p {
  margin: 0;
  color: var(--text-muted);
  max-width: 58ch;
}

.pricing-cta-inner .btn {
  flex-shrink: 0;
}

/* Case study */
.case-study {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
}

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

.case-content h2 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.case-content p {
  color: var(--text-muted);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.case-metric {
  background: var(--surface);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.case-metric strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
}

.case-preview {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.case-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.case-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00c9a7;
}

/* Compliance */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.compliance-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compliance-item .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.compliance-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.compliance-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Contact */
.contact-section {
  background: var(--bg-dark);
  color: #e8f0f8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  color: #fff;
  margin: 0 0 16px;
}

.contact-info p {
  color: rgba(232, 240, 248, 0.7);
}

.contact-details {
  margin-top: 28px;
}

.contact-details a {
  color: #4cc9f0;
  font-weight: 600;
}

.contact-form {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(232, 240, 248, 0.8);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  color: #e8f0f8;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b8d4f0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  color: #0a2540;
  background: #fff;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(232, 240, 248, 0.5);
  margin-top: 12px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #007bff, #00c9a7);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 123, 255, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-cta:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.45);
}

.floating-cta[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.form-status {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-status--success {
  background: rgba(0, 201, 167, 0.15);
  border: 1px solid rgba(0, 201, 167, 0.35);
  color: #b8f5e8;
}

.form-status--error {
  background: rgba(255, 100, 100, 0.12);
  border: 1px solid rgba(255, 120, 120, 0.35);
  color: #ffd4d4;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-inner > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-legal {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-legal p {
  margin: 0 0 6px;
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.footer-legal a {
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 20px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item p a {
  font-weight: 600;
}

/* Blog */
.blog-hero,
.article-hero {
  background: linear-gradient(135deg, #0a2540 0%, #0d4a7a 55%, #007bff 100%);
  color: #fff;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.blog-hero::after,
.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(0, 201, 167, 0.15), transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.blog-hero .container,
.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.blog-hero h1,
.article-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.blog-hero p,
.article-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.article-back {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.article-back:hover {
  color: #fff;
  text-decoration: none;
}

.article-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blog-page {
  padding: 48px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  min-height: 220px;
}

.blog-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 123, 255, 0.25);
}

.blog-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-radius: 14px;
}

.blog-card h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--text);
}

.blog-card p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

.blog-card-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Article page */
.article-page {
  padding: 40px 0 80px;
  background: var(--bg);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 20px;
}

.article-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(10, 40, 80, 0.04);
}

.article-block-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft), #e8faf4);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.article-block-content h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.article-block-content p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.article-block-content p:last-child {
  margin-bottom: 0;
}

.article-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-soft) 0%, #e8faf4 100%);
  border: 1px solid rgba(0, 123, 255, 0.15);
}

.article-bottom-cta h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.article-bottom-cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-aside {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.aside-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(10, 40, 80, 0.04);
}

.aside-card h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.aside-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-links li {
  border-bottom: 1px solid var(--border);
}

.aside-links li:last-child {
  border-bottom: none;
}

.aside-links a {
  display: block;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.4;
}

.aside-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.aside-cta p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Legal page */
.legal-page {
  padding: 48px 0 80px;
}

.legal-container {
  max-width: 800px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.legal-back:hover {
  color: var(--accent);
}

.legal-page h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-updated {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: 0 8px 30px rgba(10, 40, 80, 0.04);
}

.legal-content section {
  margin-bottom: 28px;
  padding: 0;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--text);
}

.legal-content p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content li strong {
  color: var(--text);
}

@media (max-width: 720px) {
  .legal-content {
    padding: 24px 20px;
  }
}

/* Mobile */
@media (max-width: 960px) {
  .hero-grid,
  .case-inner,
  .contact-grid,
  .product-card.featured {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .products-grid,
  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

  section {
    padding: 56px 0;
  }

  .article-block {
    grid-template-columns: 1fr;
  }

  .article-block-icon {
    width: 48px;
    height: 48px;
  }

  .article-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
