:root {
  --bg: #FBF6EE;
  --bg-alt: #F1E7D6;
  --surface: #FFFFFF;
  --border: #E3D5BB;
  --text: #221B10;
  --text-dim: #6E6350;
  --accent: #B94E26;
  --accent-strong: #96401E;
  --radius: 10px;
  --container: 1080px;
  --font-serif: "Noto Serif Armenian", "Noto Serif", Georgia, serif;
  --font-sans: "Noto Sans Armenian", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(26px, 3.6vw, 36px); }
h3 { font-size: 19px; font-weight: 600; }
p { margin: 0 0 12px; color: var(--text-dim); }
a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #FFF9F0; }
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost { border-color: var(--text); color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-outline { border-color: var(--border); color: var(--text); width: 100%; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-small { padding: 10px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.logo.small { font-size: 15px; }

.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--text-dim); transition: color .15s ease; }
.main-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.lang-switch { display: flex; border: 1.5px solid var(--border); border-radius: 8px; padding: 3px; gap: 2px; }
.lang-switch button {
  border: none; background: transparent; color: var(--text-dim);
  font-weight: 700; font-size: 12.5px; padding: 6px 10px; border-radius: 5px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-switch button.active { background: var(--accent); color: #FFF9F0; }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; }
.burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 76px; border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 700px; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; margin-bottom: 18px; }
.hero h1 { font-size: clamp(32px, 5vw, 50px); margin-bottom: 20px; }
.hero-sub { font-size: 18px; max-width: 580px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { font-size: 13.5px; color: var(--text-dim); }

/* ---------- Section shared ---------- */
section { padding: 76px 0; }
.section-tag { color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.section-sub { max-width: 560px; font-size: 16px; margin-top: -6px; margin-bottom: 36px; }

/* ---------- Audience ---------- */
.audience { background: var(--bg-alt); }
.audience-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.audience-lead h2 { max-width: 380px; }
.audience-lead p { max-width: 380px; }
.audience-list { border-top: 1px solid var(--border); }
.audience-row { padding: 22px 0; border-bottom: 1px solid var(--border); }
.audience-row h3 { margin-bottom: 6px; }
.audience-row p { margin-bottom: 0; font-size: 15px; }

/* ---------- Pricing ---------- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.package-card {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.package-card.featured { border-color: var(--accent); }
.badge {
  position: absolute; top: -13px; left: 26px;
  background: var(--accent); color: #FFF9F0;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.package-card .price { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--text); margin: 6px 0 2px; }
.package-card .price span:first-child { font-family: var(--font-sans); font-size: 15px; color: var(--text-dim); font-weight: 600; }
.amd { color: var(--accent); }
.price-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 18px; }
.package-card ul { list-style: none; padding: 0; margin: 10px 0 24px; flex: 1; }
.package-card li { font-size: 14.5px; color: var(--text-dim); padding: 9px 0 9px 22px; border-top: 1px solid var(--border); position: relative; }
.package-card li:first-child { border-top: none; }
.package-card li::before { content: "—"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.pricing-note { max-width: 640px; font-size: 14px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ---------- Process ---------- */
.process-list { max-width: 700px; }
.process-step { display: flex; gap: 22px; padding: 24px 0; border-top: 1px solid var(--border); }
.process-step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: var(--font-serif); font-weight: 700; font-size: 22px; color: var(--accent);
  flex-shrink: 0; width: 36px;
}
.process-step h3 { margin-bottom: 6px; }
.process-step p { margin-bottom: 0; font-size: 15px; }

/* ---------- About ---------- */
.about { background: var(--bg-alt); }
.about h2 { max-width: 560px; }
.about-text { max-width: 640px; font-size: 16px; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--border); max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  font-family: var(--font-sans); color: var(--text); font-size: 16px; font-weight: 600;
  padding: 22px 34px 22px 0; cursor: pointer; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 18px; font-size: 22px; color: var(--accent);
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding-bottom: 22px; margin-bottom: 0; max-width: 620px; }

/* ---------- Contact ---------- */
.contact { text-align: center; border-top: 1px solid var(--border); }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact h2, .contact .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.contact-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.contact-link {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 16px 24px; min-width: 190px; transition: border-color .15s ease;
}
.contact-link:hover { border-color: var(--accent); }
.contact-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-value { font-size: 15.5px; font-weight: 700; color: var(--text); }
.contact-note { font-size: 13px; color: var(--text-dim); opacity: 0.8; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 26px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-dim); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .package-grid { grid-template-columns: 1fr; }
  .audience-inner { grid-template-columns: 1fr; gap: 24px; }
  .audience-lead h2, .audience-lead p { max-width: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0; background: var(--bg);
    border-bottom: 1px solid var(--border); flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 24px 18px; transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 12px 0; width: 100%; border-top: 1px solid var(--border); }
  .main-nav a:first-child { border-top: none; }
  .burger { display: flex; }
  .header-actions .btn-small { display: none; }
  section { padding: 56px 0; }
  .hero { padding: 56px 0 44px; }
  .process-step { flex-direction: column; gap: 8px; }
}
