@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:           #f5f0ed;
  --bg-card:      #ffffff;
  --bg-section:   #ede8e4;
  --bg-dark:      #110d0b;
  --text:         #1a1410;
  --text-muted:   #5a4f49;
  --text-faint:   #8a7a72;
  --accent:       #920024;
  --accent-dark:  #6e0018;
  --accent-light: rgba(146, 0, 36, 0.07);
  --border:       #d4cdc9;
  --radius:       12px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.05);
  --shadow:       0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.13);
  --max-w:        1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

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

/* ══════════════════════════════ NAV ══════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 240, 237, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-img { width: 28px; height: 28px; object-fit: contain; display: block; }
.nav-logo-text { font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: -0.4px; }
.nav-logo-year { font-size: 11px; font-weight: 700; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 6px 13px; font-size: 13px; font-weight: 600;
  color: var(--text-muted); border-radius: 7px;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active { background: var(--bg-section); color: var(--text); }
.nav-cta {
  margin-left: 10px; padding: 8px 18px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; font-size: 13px; font-weight: 700; border-radius: 8px;
  box-shadow: 0 2px 10px rgba(146,0,36,0.28);
  transition: transform 0.15s, box-shadow 0.15s;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(146,0,36,0.38); }

/* ══════════════════════════════ HERO ══════════════════════════════ */
.hero {
  padding: 52px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 640px;
  background: radial-gradient(ellipse, rgba(146,0,36,0.06) 0%, transparent 68%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; margin-bottom: 26px;
  background: var(--accent-light); border: 1px solid rgba(146,0,36,0.18);
  border-radius: 100px; font-size: 12px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.6px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero-product-name {
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-product-name span { color: var(--accent); }
.hero h1 {
  font-size: clamp(38px, 6vw, 70px); font-weight: 800; line-height: 1.08;
  letter-spacing: -2px; color: var(--text); max-width: 860px; margin: 0 auto 22px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--text-muted); max-width: 560px;
  margin: 0 auto 40px; line-height: 1.7; font-weight: 400;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 64px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; font-size: 15px; font-weight: 700; border-radius: 10px;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(146,0,36,0.30);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(146,0,36,0.40); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: var(--bg-card); color: var(--text);
  font-size: 15px; font-weight: 600; border-radius: 10px;
  border: 1px solid var(--border); cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.btn-secondary:hover { background: var(--bg-section); transform: translateY(-1px); }

/* ── Screenshot placeholder ── */
.screenshot-placeholder {
  background: var(--bg-section); border: 2px dashed var(--border);
  border-radius: 14px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-faint); font-size: 13px; gap: 10px;
  font-weight: 500;
}
.hero-screenshot {
  width: 100%; max-width: 960px; height: 500px;
  margin: 0 auto; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}

/* ══════════════════════════════ SECTIONS ══════════════════════════════ */
section { padding: 96px 0; }
.section-alt { background: var(--bg-section); }
.section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--accent); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 800;
  letter-spacing: -0.8px; line-height: 1.15;
  color: var(--text); margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 540px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── What is PluMesh ── */
.what-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.what-text p {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 18px;
}
.what-text p:last-child { margin-bottom: 0; }
.what-screenshot {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}

/* ── Features ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow); transform: translateY(-3px);
  border-color: rgba(146,0,36,0.2);
}
.feature-icon {
  width: 42px; height: 42px; background: var(--accent-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px; color: var(--accent);
}
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 27px;
  left: calc(16.666% + 27px); right: calc(16.666% + 27px);
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, rgba(146,0,36,0.4) 50%, var(--border) 100%);
}
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 54px; height: 54px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  margin: 0 auto 22px; position: relative; z-index: 1;
  box-shadow: 0 4px 14px rgba(146,0,36,0.30);
}
.step h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════ PAGE HEADER ══════════════════════════════ */
.page-header {
  padding: 80px 0 60px; text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(146,0,36,0.04) 0%, transparent 100%);
}
.page-header h1 {
  font-size: clamp(30px, 5vw, 52px); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 12px;
}
.page-header p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin: 0 auto; line-height: 1.65; }

/* ══════════════════════════════ PRICING ══════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 26px; position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}
.pricing-card.featured:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.pricing-tier {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-faint); margin-bottom: 10px;
}
.pricing-price {
  font-size: 46px; font-weight: 800; letter-spacing: -1px;
  color: var(--text); line-height: 1; margin-bottom: 4px;
}
.pricing-price sup { font-size: 22px; font-weight: 600; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-period { font-size: 13px; color: var(--text-faint); margin-bottom: 18px; }
.pricing-desc {
  font-size: 14px; color: var(--text-muted); margin-bottom: 22px;
  padding-bottom: 22px; border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.pricing-features { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.45; }
.check { color: var(--accent); flex-shrink: 0; margin-top: 1px; font-size: 15px; }
.dash { color: var(--border); flex-shrink: 0; margin-top: 1px; font-size: 15px; }
.pricing-features li.dim { color: var(--text-faint); }
.pricing-btn {
  width: 100%; padding: 12px; border-radius: 9px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.2s; text-align: center;
  display: block; font-family: inherit; letter-spacing: 0.2px;
}
.pricing-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.pricing-btn-outline:hover { background: var(--bg-section); }
.pricing-btn-filled {
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(146,0,36,0.28);
}
.pricing-btn-filled:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(146,0,36,0.38); }

.requirements {
  background: var(--bg-section); border-radius: var(--radius);
  padding: 32px; margin-top: 56px; border: 1px solid var(--border);
}
.requirements h3 { font-size: 16px; font-weight: 700; margin-bottom: 22px; }
.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px; }
.req-item { display: flex; gap: 10px; font-size: 14px; color: var(--text-muted); }
.req-label { font-weight: 600; color: var(--text); min-width: 130px; flex-shrink: 0; }

/* ══════════════════════════════ CONTACT ══════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-item-icon {
  width: 40px; height: 40px; background: var(--accent-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--accent); flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-item-text span { font-size: 13px; color: var(--text-muted); }
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--text-muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 14px; font-family: 'Outfit', sans-serif;
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(146,0,36,0.07);
}
.form-submit {
  width: 100%; padding: 13px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; font-size: 14px; font-weight: 700; border: none;
  border-radius: 10px; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 14px rgba(146,0,36,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(146,0,36,0.38); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--text); gap: 16px; transition: color 0.15s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--bg-section); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-muted); line-height: 1;
  transition: background 0.15s, color 0.15s, transform 0.2s;
  font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--accent-light); color: var(--accent); transform: rotate(45deg); }
.faq-answer { font-size: 14px; color: var(--text-muted); line-height: 1.75; padding-bottom: 20px; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════ FOOTER ══════════════════════════════ */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.65); padding: 60px 0 36px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px;
}
.footer-brand-name { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px; margin-bottom: 10px; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.55);
  margin-bottom: 9px; transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-legal {
  font-size: 11px; color: rgba(255,255,255,0.22);
  line-height: 1.7; letter-spacing: 0.1px;
  direction: ltr; unicode-bidi: embed;
}
.footer-accent { color: var(--accent); font-weight: 600; }

/* ══════════════════════════════ LICENSE CARDS ══════════════════════════════ */
.license-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.license-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.license-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 26px; position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.license-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.license-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}
.license-card.featured:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg); }
.license-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.license-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-faint); margin-bottom: 10px;
}
.license-price {
  font-size: 46px; font-weight: 800; letter-spacing: -1px;
  color: var(--text); line-height: 1; margin-bottom: 4px;
}
.license-price sup { font-size: 22px; font-weight: 600; vertical-align: top; margin-top: 8px; display: inline-block; }
.license-period { font-size: 13px; color: var(--text-faint); margin-bottom: 14px; }
.license-desc {
  font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6;
}
.license-device {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text);
  background: var(--bg-section); border-radius: 8px;
  padding: 9px 12px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px; background: none; border-radius: 0;
}
.license-features {
  list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px;
}
.license-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); }
.license-btn {
  width: 100%; padding: 12px; border-radius: 9px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.2s; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; letter-spacing: 0.2px;
}
.license-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.license-btn-outline:hover { background: var(--bg-section); }
.license-btn-filled {
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(146,0,36,0.28);
}
.license-btn-filled:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(146,0,36,0.38); }

/* Active after installation note (Free Trial card) */
.license-active-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #1a7a3a;
  margin-top: 4px;
}
.license-active-note svg { flex-shrink: 0; stroke: #1a7a3a; }

/* Download hero */
.download-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.download-hero-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.download-hero-sub {
  font-size: 14px;
  color: var(--text-muted);
}
.download-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(146,0,36,0.30);
  transition: transform 0.2s, box-shadow 0.2s;
}
.download-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(146,0,36,0.42);
}
@media (max-width: 600px) {
  .download-hero { flex-direction: column; align-items: flex-start; padding: 24px; }
  .download-hero-btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════ GUIDE COMPACT ══════════════════════════════ */
.guide-compact { max-width: 780px; margin: 0 auto; }
.guide-compact-step {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.guide-compact-step:last-child { border-bottom: none; }
.guide-compact-body {
  padding-left: 72px;
  margin-top: 14px;
}
.guide-compact-body p {
  font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 0;
}
@media (max-width: 600px) {
  .guide-compact-body { padding-left: 0; margin-top: 12px; }
}

/* ══════════════════════════════ GUIDE / HOW TO USE ══════════════════════════════ */
.guide-step {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.guide-step:last-child { border-bottom: none; }
.guide-step-alt { background: transparent; }

.guide-step-header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 36px;
}
.guide-step-num {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  box-shadow: 0 4px 14px rgba(146,0,36,0.28);
}
.guide-step-title {
  font-size: 22px; font-weight: 800; letter-spacing: -0.3px;
  color: var(--text); margin-bottom: 4px;
}
.guide-step-sub {
  font-size: 14px; color: var(--text-muted);
}
.guide-step-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.guide-step-body-rev { direction: rtl; }
.guide-step-body-rev > * { direction: ltr; }

.guide-step-text p {
  font-size: 15px; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 16px;
}
.guide-step-text p:last-child { margin-bottom: 0; }

.guide-list {
  list-style: none; margin: 12px 0 16px; display: flex; flex-direction: column; gap: 8px;
}
.guide-list li {
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.guide-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%;
}

.guide-note {
  background: var(--bg-section); border-left: 3px solid var(--border);
  border-radius: 0 8px 8px 0; padding: 12px 16px;
  font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-top: 16px;
}
.guide-note strong { color: var(--text); }
.guide-note-pro { border-left-color: var(--accent); background: var(--accent-light); }
.guide-note-pro strong { color: var(--accent); }

.guide-step-screenshot {
  height: 300px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}

/* ── Comparison table ── */
.compare-table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); font-size: 14px;
}
.compare-table thead tr {
  background: var(--bg-section);
  border-bottom: 2px solid var(--border);
}
.compare-table th {
  padding: 16px 24px; text-align: left;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--text-muted);
}
.compare-table th.col-pro { color: var(--accent); }
.compare-table td {
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  color: var(--text-muted); vertical-align: middle;
}
.compare-table td.col-pro { background: rgba(146,0,36,0.025); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg-section); }
.compare-table tbody tr:hover td.col-pro { background: rgba(146,0,36,0.05); }
.ct-yes { color: var(--accent); font-weight: 700; font-size: 15px; }
.ct-no  { color: var(--border); font-size: 15px; }
.ct-limit { font-size: 13px; color: var(--text-faint); font-style: italic; }

/* ══════════════════════════════ LEGAL PAGES ══════════════════════════════ */
.legal-doc { max-width: 720px; margin: 0 auto; }
.legal-back-arrow {
  position: fixed; top: 80px; left: 20px; z-index: 99;
  width: 36px; height: 36px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.legal-back-arrow:hover { background: var(--bg-section); color: var(--text); transform: translateX(-2px); }
.legal-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  letter-spacing: -0.8px; color: var(--text); margin-bottom: 6px;
}
.legal-date { font-size: 13px; color: var(--text-faint); margin-bottom: 48px; }
.legal-section { margin-bottom: 36px; }
.legal-section h2 {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-section p {
  font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 10px;
}
.legal-section ul {
  list-style: none; margin: 8px 0 10px; display: flex; flex-direction: column; gap: 7px;
}
.legal-section ul li {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  padding-left: 16px; position: relative;
}
.legal-section ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
}
.legal-section a { color: var(--accent); text-decoration: underline; }

/* ══════════════════════════════ DOWNLOAD PAGE — TRIAL CARD ══════════════════════════════ */

/* 3-col grid alias (same as base .license-grid but named for clarity) */
.license-grid-3 { /* inherits license-grid — no extra rules needed */ }

/* Trial card — subtle accent tint to distinguish from paid cards */
.trial-card {
  background: linear-gradient(160deg, rgba(146,0,36,0.04) 0%, var(--bg-card) 60%);
  border-color: rgba(146,0,36,0.22);
}

/* "15 days" hero price inside the trial card */
.trial-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.trial-days-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--accent);
  align-self: flex-end;
  margin-bottom: 5px;
}

/* Trial button — accent outline style */
.license-btn-trial {
  background: var(--accent-light);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
}
.license-btn-trial:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(146,0,36,0.28);
}

/* ══════════════════════════════ DOWNLOAD PAGE — POPUP MODALS ══════════════════════════════ */

/* Full-screen overlay */
.dl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(17, 13, 11, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

/* Modal card */
.dl-modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  margin: auto;
}

/* Close button */
.dl-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-section);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.dl-modal-close:hover { background: var(--border); color: var(--text); }

/* Logo inside modal */
.dl-modal-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* Modal headings */
.dl-modal-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 6px;
}
.dl-modal-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

/* Form layout */
.dl-form { display: flex; flex-direction: column; gap: 0; }
.dl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dl-form-group { margin-bottom: 14px; }

/* Labels */
.dl-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.dl-req { color: var(--accent); font-weight: 700; }

/* Inputs & selects */
.dl-input,
.dl-select {
  width: 100%;
  padding: 10px 13px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.dl-input:focus,
.dl-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(146,0,36,0.07);
}
.dl-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a4f49' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}

/* Submit button */
.dl-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 14px rgba(146,0,36,0.28);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.15s;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.dl-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(146,0,36,0.38); }
.dl-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Success variant — green-tinted download button */
.dl-submit-success {
  background: linear-gradient(145deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 4px 14px rgba(22,163,74,0.28);
}
.dl-submit-success:hover { box-shadow: 0 6px 20px rgba(22,163,74,0.38); }

/* Error message */
.dl-error {
  font-size: 13px;
  color: #c0392b;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 7px;
  padding: 10px 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Success state (replaces form after trial submit) */
.dl-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 12px 0 4px;
}
.dl-success h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.dl-success p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ══════════════════════════════ RESPONSIVE ══════════════════════════════ */
@media (max-width: 960px) {
  .what-grid { grid-template-columns: 1fr; gap: 40px; }
  .what-screenshot { height: 280px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .guide-step-body { grid-template-columns: 1fr; gap: 32px; }
  .guide-step-body-rev { direction: ltr; }
  .license-grid, .license-grid-2, .license-grid-3 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .req-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .nav-links .nav-link { display: none; }
  .hero-screenshot { height: 240px; }
  .guide-step-screenshot { height: 220px; }
  .guide-step-header { gap: 14px; }
  .guide-step-title { font-size: 18px; }
  /* Modal responsive */
  .dl-modal { padding: 32px 20px 24px; border-radius: 14px; }
  .dl-form-row { grid-template-columns: 1fr; gap: 0; }
}
