/* ============================================
   imagedo - Clean, minimalist marketing site
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-text: #2d2d30;
  --color-text-secondary: #6b6b70;
  --color-accent: #6366f1;
  --color-accent-hover: #4f46e5;
  --color-border: #e8e8e5;
  --color-surface: #f5f5f3;
  --color-hero-bg: #f5f5f3;
  --color-dark: #1a1a1e;
  --color-green: #34d399;
  --font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1100px;
  --section-padding: 50px;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ---- Header ---- */

.site-header {
  background: var(--color-bg);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--color-text);
}

.main-nav .btn-primary {
  color: #ffffff;
}

.main-nav .btn-primary:hover {
  color: #ffffff;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 11;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.logo-img {
  height: 50px;
  width: auto;
}

/* ---- Shared Section Layout ---- */

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding) 32px;
  margin-top: 1rem;
}

.section-container.greybox {
  background-color: #f2f2fd;
  border-radius: 20px;
}

.section-lead {
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 720px;
}

.section-body {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin-top: 16px;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    #2ED3C6 0%,
    #49C0F5 40%,
    #7C6CFF 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ---- Hero ---- */

.hero {
  padding: 20px;
  padding-top: 0px;
}

.hero-box {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: url("/assets/imagedo-top-8d745507.webp") center / cover no-repeat;
  background-color: #f3f3fd;
  min-height: 480px;
  display: flex;
  align-items: stretch;
  box-shadow:
    0 10px 30px rgba(123, 97, 255, 0.25),
    0 4px 12px rgba(37, 208, 211, 0.18);
}

.hero-text {
  width: 60%;
  padding: var(--section-padding) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 0 40px;
  line-height: 1.5;
}

.hero-subsub {
  font-weight: bold;
  font-style: italic;
  color: #8f52d4;
}

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

/* ---- Screenshots ---- */

.screenshots-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px;
}

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

.screenshot-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.screenshot-item:hover {
  transform: translateY(-4px);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    #25D0D3 0%,
    #3FB8F4 45%,
    #7B61FF 100%
  );

  color: white;
  border: none;
  border-radius: 16px;
  padding: 14px 28px;

  box-shadow:
    0 10px 30px rgba(123, 97, 255, 0.25),
    0 4px 12px rgba(37, 208, 211, 0.18);

  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, #4338ca 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-bg);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  border-color: var(--color-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* ---- Pain Points ---- */

.pain-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 56px;
  text-align: center;
}

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

.pain-point {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pain-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.25);
}

/* ---- Colored Icon Circles (shared) ---- */

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.icon-circle-sm {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.icon-circle-teal {
  background: rgba(37, 208, 211, 0.12);
  color: #0d9da0;
}

.icon-circle-blue {
  background: rgba(63, 184, 244, 0.12);
  color: #1a8fd4;
}

.icon-circle-pink {
  background: rgba(236, 72, 153, 0.12);
  color: #d63384;
}

.icon-circle-purple {
  background: rgba(123, 97, 255, 0.12);
  color: #6d4de6;
}

.icon-circle-amber {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.pain-point h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pain-point p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.bridge-divider {
  text-align: center;
  margin: 48px 0 8px;
  padding: 32px 0;
}

/* ---- Bridge ---- */

.bridge-section {
  background: linear-gradient(180deg, var(--color-hero-bg) 0%, var(--color-bg) 100%);
}

.bridge-section .section-container {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.bridge-text {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  font-style: italic;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(63, 184, 244, 0.08) 100%);
  padding: 16px 32px;
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

/* ---- Pricing Intro ---- */

.pricing-intro {
  font-size: 18px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 48px;
}

/* ---- Features ---- */

.features-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-hero-bg) 50%, var(--color-bg) 100%);
}

.features-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 48px;
  text-align: center;
}

.features-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.feature-highlight {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-highlight:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.feature-highlight h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.feature-highlight p {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.features-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-compact {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-compact:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}

.feature-compact h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

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

/* ---- Privacy Section ---- */

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

.privacy-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.privacy-section .section-lead {
  color: var(--color-text-secondary);
  margin-bottom: 48px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.privacy-card {
  padding: 28px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.privacy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.25);
}

.privacy-card .icon-circle {
  margin-bottom: 16px;
}

.privacy-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.privacy-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ---- Proof Points (shared) ---- */

.proof-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.proof-points li {
  font-size: 16px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.proof-points li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--color-text-secondary);
}

/* ---- How It Works ---- */

.how-it-works-section {
  border-bottom: 1px solid var(--color-border);
}

.how-it-works-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 48px;
  text-align: center;
}

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

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: var(--color-bg);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ---- Speed Section ---- */

.speed-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-hero-bg) 100%);
}

.speed-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.speed-section .section-lead {
  margin-bottom: 0;
}

/* ---- Comparison Table ---- */

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

.comparison-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 56px;
  text-align: center;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: var(--color-text);
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table thead th {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 16px;
  padding-bottom: 14px;
  background: var(--color-surface);
}

.comparison-table thead th:first-child {
  border-radius: 16px 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 16px 0 0;
}

.comparison-table thead th.highlight {
  color: var(--color-accent);
}

.comparison-table tbody tr {
  transition: background-color 0.15s ease;
}

.comparison-table tbody tr:hover {
  background-color: var(--color-surface);
}

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

.comparison-table td.highlight {
  font-weight: 600;
  color: var(--color-accent);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}

.comparison-table tbody tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}

/* ---- Face Recognition Deep Dive ---- */

.face-deep-dive-section {
  background: linear-gradient(180deg, var(--color-hero-bg) 0%, var(--color-bg) 100%);
}

.face-deep-dive-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ---- Pricing Section ---- */

.pricing-section {
  border-bottom: 1px solid var(--color-border);
}

.pricing-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 48px;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.pricing-card-featured {
  border-color: var(--color-accent);
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.pricing-card-featured .btn {
  margin-top: 24px;
}

/* ---- Technical Highlights ---- */

.tech-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-hero-bg) 100%);
}

.tech-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.tech-section .section-lead {
  margin-bottom: 0;
}

/* ---- CTA Section ---- */

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a3d 50%, var(--color-dark) 100%);
  color: var(--color-bg);
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #818cf8 100%);
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.cta-section .btn-primary:hover {
  background: linear-gradient(135deg, #818cf8 0%, var(--color-accent) 100%);
  box-shadow: 0 6px 28px rgba(99, 102, 241, 0.5);
  transform: translateY(-1px);
}

/* ---- Download Section ---- */

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

.download-section .section-container {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.download-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.download-lead {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 48px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 220px;
}

.download-btn:hover {
  transform: translateY(-2px);
}

.download-btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.download-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}

.download-btn-label {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
}

.download-btn-platform {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.download-btn-windows {
  background: var(--color-text);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.download-btn-windows:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.download-btn-mac {
  background: var(--color-text);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.download-btn-mac:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* ---- Footer ---- */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  :root {
    --section-padding: 72px;
  }

  .header-container {
    padding: 20px 20px;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 10;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    font-size: 20px;
  }

  .hero-box {
    flex-direction: column;
    min-height: auto;
    background-size: 150%;
    background-position: bottom;
  }

  .hero-text {
    width: 100%;
  }

  .hero-box::after {
    content: "";
    display: block;
    width: 100%;
    min-height: 135px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .pain-section h2,
  .features-section h2,
  .how-it-works-section h2,
  .speed-section h2,
  .comparison-section h2,
  .face-deep-dive-section h2,
  .pricing-section h2,
  .tech-section h2,
  .privacy-section h2 {
    font-size: 28px;
  }

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

  .pain-points {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bridge-text {
    font-size: 20px;
  }

  .features-highlights {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .download-section h2 {
    font-size: 28px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 56px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .header-container {
    padding: 20px;
  }

  .hero {
    padding: 16px;
  }

  .hero-text {
    padding: 40px 20px;
  }

  .section-container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }

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

/* ---- License Pages ---- */

.form-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.form-container {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.form-container h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.price-display {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.price-amount {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
}

.price-note {
  display: block;
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-top: 4px;
}

.license-form {
  text-align: left;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-family);
  transition: border-color 0.2s;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-hint {
  color: var(--color-text-secondary);
  font-size: 13px;
  margin-top: 6px;
}

.form-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #dc2626;
  font-size: 14px;
  text-align: left;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.form-footer {
  margin-top: 24px;
  color: var(--color-text-secondary);
  font-size: 14px;
}

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

.form-footer a:hover {
  text-decoration: underline;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--color-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.pending-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.license-key-box {
  background: var(--color-dark);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.license-key {
  color: var(--color-green);
  font-size: 13px;
  font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
  word-break: break-all;
  white-space: pre-wrap;
  margin-bottom: 12px;
  text-align: left;
  line-height: 1.5;
}

.license-details {
  text-align: left;
  background: var(--color-surface);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  font-size: 14px;
}

.license-details p {
  margin-bottom: 4px;
}

.license-details p:last-child {
  margin-bottom: 0;
}

.license-instructions {
  text-align: left;
  margin-bottom: 24px;
}

.license-instructions h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.license-instructions ol {
  padding-left: 20px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.license-instructions li {
  margin-bottom: 4px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-family);
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  margin: 24px auto;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
}

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

.footer-sep {
  margin: 0 8px;
  color: var(--color-text-secondary);
}
