/* ═══════════════════════════════════════════
   LanguageDecrypt — Standard Notes style
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg: #ffffff;
  --bg-gray: #F8F9FC;
  --text: #000000;
  --text-body: #4A4A4A;
  --primary: #086DD6;
  --primary-hover: #065bb3;
  --corn: #EBAD00;
  --pink: #EA6595;
  --green: #1AA772;
  --purple: #7049CF;
  --orange: #F28B52;
  --border: #E8E8E8;
  --radius: 8px;
  --radius-sm: 4px;
  --header-height: 72px;
  --container-max: 1140px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Avenir Next', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', 'Inter', sans-serif;
  color: var(--text);
}

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

img, svg {
  max-width: 100%;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

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

/* ── Utility ── */
.center { text-align: center; }

/* ══════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--text);
  white-space: nowrap;
}

.logo-svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-bottom-color: var(--corn);
}

.nav-links a.active {
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 28px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  line-height: 1.3;
}

.btn-sm {
  font-size: 14px;
  padding: 8px 16px;
}

.btn-lg {
  font-size: 16px;
  padding: 14px 28px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-link {
  background: none;
  color: var(--primary);
  padding: 12px 8px;
  font-weight: 600;
  border: none;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.arrow {
  transition: transform 0.15s;
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(3px);
}

/* ── Mobile menu ── */
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: auto;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.25s;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.menu-btn.active .menu-icon {
  background: transparent;
}

.menu-btn.active .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn.active .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
}

.mobile-menu a:hover {
  color: var(--text);
}

.mobile-menu .btn {
  margin-top: 8px;
}

.mobile-link-cta {
  text-align: center;
  color: var(--primary) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 8px 0 !important;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

/* Decorative elements */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco-diamond-1 {
  top: 15%;
  right: 12%;
}

.deco-diamond-2 {
  bottom: 30%;
  left: 8%;
}

.deco-circle-dashed-1 {
  top: 10%;
  left: 4%;
}

.deco-circle-dashed-2 {
  bottom: 15%;
  right: 6%;
}

.deco-dot-blue {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #BED7FE;
  top: 40%;
  right: 18%;
}

.deco-dot-pink {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.4;
  bottom: 35%;
  left: 18%;
}

.deco-dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  top: 25%;
  left: 22%;
}

h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--bg-gray);
}

h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

h3 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}

p {
  color: var(--text-body);
  line-height: 1.75;
}

/* ── Text link with arrow ── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.15s;
}

.text-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* ── Highlight underline (corn yellow) ── */
.highlight-underline {
  border-bottom: 2px solid var(--corn);
  padding-bottom: 1px;
}

/* ── BigTech tag ── */
.tag-bigtech {
  display: inline-block;
  font-family: monospace;
  font-size: 14px;
  font-weight: 600;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1px 6px;
  color: var(--text);
}

/* ══════════════════════════════════════
   FEATURE ROWS (alternating 2-col)
   ══════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-row-reverse {
  direction: rtl;
}

.feature-row-reverse > * {
  direction: ltr;
}

.feature-text p {
  max-width: 48ch;
  font-size: 16px;
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Illustrations ── */
.illus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 11 / 9;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 16px 18px 58px -16px rgba(0, 0, 0, 0.06);
}

/* ══════════════════════════════════════
   FEATURE TAGS GRID
   ══════════════════════════════════════ */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.ftag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  transition: border-color 0.15s, color 0.15s;
}

.ftag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ══════════════════════════════════════
   STATS ROW
   ══════════════════════════════════════ */
.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.feature-text .stats-row {
  justify-content: flex-start;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

/* ══════════════════════════════════════
   DOWNLOAD SECTION
   ══════════════════════════════════════ */
.download-section {
  max-width: 560px;
  margin: 0 auto;
}

.download-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  height: 120px;
}

.download-bg-dots {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  opacity: 0.35;
}

.download-bg-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.download-logo {
  position: relative;
  z-index: 1;
}

.download-sub {
  font-size: 17px;
  color: var(--text-body);
  margin-bottom: 32px;
}

.download-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.platform-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 40px 12px 16px;
  cursor: pointer;
  min-width: 160px;
  transition: border-color 0.15s;
}

.platform-select:hover,
.platform-select:focus {
  border-color: var(--primary);
  outline: none;
}

.select-chevron {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: var(--text-body);
}

.download-divider {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.download-divider span {
  display: block;
  width: 27%;
  height: 1px;
  background: var(--border);
}

.download-extra p {
  font-size: 15px;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════
   PROTECT BOX
   ══════════════════════════════════════ */
.protect-box {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 54px 48px;
  background: var(--bg);
}

.protect-box p {
  margin-top: 16px;
  font-size: 16px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.faq-wrap h2 {
  margin-bottom: 32px;
  text-align: center;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  background: var(--bg);
  transition: box-shadow 0.15s;
}

details[open] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

details + details {
  margin-top: 10px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  padding-right: 36px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-gray);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(6, 1fr);
  gap: 24px;
}

.footer-brand {
  padding-right: 24px;
}

.footer-brand .logo {
  font-size: 16px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--primary);
}

.social-links a {
  display: block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-body);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-body);
  transition: color 0.15s;
}

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

/* ══════════════════════════════════════
   PAGE HERO (features/pricing sub-pages)
   ══════════════════════════════════════ */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-inner {
  max-width: 640px;
}

.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
}

.page-hero-compact {
  padding: 56px 0 40px;
}

.pricing-intro {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
}

.pricing-intro strong {
  color: var(--text);
}

.section-sub {
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-body);
}

/* ══════════════════════════════════════
   FEATURES PAGE — Scan type grid
   ══════════════════════════════════════ */
.scan-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.scan-type {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ══════════════════════════════════════
   FEATURES PAGE — Theme swatches
   ══════════════════════════════════════ */
.theme-swatches {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
}

/* ══════════════════════════════════════
   FEATURES PAGE — Platform grid
   ══════════════════════════════════════ */
.platform-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 36px;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ══════════════════════════════════════
   FEATURES PAGE — Detailed feature grid
   ══════════════════════════════════════ */
.features-grid-detailed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.fgd-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.fgd-icon {
  margin-bottom: 14px;
}

.fgd-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.fgd-item p {
  font-size: 13px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   PRICING PAGE — Cards
   ══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--bg);
}

.price-card-featured {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(8, 109, 214, 0.1);
}

.price-card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-card-header h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-dollar {
  font-family: 'Lato', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
}

.price-includes {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.btn-outline-card {
  background: var(--bg);
  color: var(--primary);
  border: 1px solid var(--border);
  font-size: 15px;
  padding: 12px 20px;
  border-radius: var(--radius);
}

.btn-outline-card:hover {
  border-color: var(--primary);
  background: var(--bg-gray);
}

/* ══════════════════════════════════════
   PRICING PAGE — Comparison table
   ══════════════════════════════════════ */
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 32px;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  background: var(--bg);
  position: sticky;
  top: 0;
}

.compare-table thead th:first-child {
  width: 40%;
}

.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--text);
}

.compare-table .check {
  color: var(--green);
  font-weight: 700;
  text-align: center;
}

.compare-table .dash {
  color: var(--border);
  text-align: center;
}

.compare-table tbody td:not(:first-child) {
  text-align: center;
}

.compare-table tbody tr:hover {
  background: var(--bg-gray);
}

/* ══════════════════════════════════════
   PRICING PAGE — Plan summary
   ══════════════════════════════════════ */
.plan-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-summary-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-gray);
}

.plan-summary-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.plan-summary-item p {
  font-size: 14px;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   PRICING PAGE — Guarantee box
   ══════════════════════════════════════ */
.guarantee-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-icon {
  margin-bottom: 20px;
}

.guarantee-box h2 {
  margin-bottom: 16px;
}

.guarantee-box p {
  font-size: 16px;
  max-width: 56ch;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 8px;
  }

  .feature-row {
    gap: 40px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .plan-summary-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero {
    padding: 72px 0 56px;
  }

  h1 {
    font-size: clamp(38px, 9vw, 56px);
  }

  .hero-sub {
    font-size: 16px;
  }

  /* Hide large decorations on mobile */
  .deco-circle-dashed-1,
  .deco-circle-dashed-2 {
    display: none;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row-reverse {
    direction: ltr;
  }

  .feature-visual {
    order: -1;
  }

  .illus {
    max-width: 320px;
  }

  .feature-tags {
    gap: 8px;
  }

  .ftag {
    font-size: 13px;
    padding: 6px 14px;
  }

  .stats-row {
    gap: 24px;
  }

  .stat-value {
    font-size: 26px;
  }

  .protect-box {
    padding: 36px 24px;
  }

  .download-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .platform-select {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 56px 0 40px;
  }

  .features-grid-detailed {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    gap: 16px;
  }

  .platform-card {
    padding: 20px 24px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-row {
    gap: 24px;
  }
}
