/* ═══════════════════════════════════════════
   ADRIX — Shared Stylesheet
   שיווק לסופרים וליוצרים
═══════════════════════════════════════════ */

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

:root {
  --ink:       #07090f;
  --navy:      #0c1020;
  --navy2:     #111828;
  --navy3:     #161e30;
  --white:     #ffffff;
  --paper:     #f5f3ee;
  --paper2:    #ede9e0;
  --dim:       #6e7490;
  --dim2:      #9da3bc;
  --line:      #181f35;
  --line2:     #1f2840;
  --line-lt:   #ddd9d0;
  --gold:      #c48a38;
  --gold2:     #e4a84e;
  --gold-pale: rgba(196,138,56,0.1);
  --gold-pale2:rgba(196,138,56,0.06);
  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ""; display: block;
  width: 20px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.lt { color: var(--gold); }

/* ── LAYOUT ── */
.container {
  width: 100%; max-width: 1080px;
  margin: 0 auto; padding: 0 5%;
}
.container-sm { max-width: 780px; }
.container-md { max-width: 900px; }

section { padding: 100px 5%; }

.section-header { margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900; margin-top: 0.85rem; color: var(--white);
}
.section-header h2 em { font-style: normal; color: var(--gold); }
.section-header h2.dark { color: var(--ink); }
.section-header .lead {
  font-size: 1.05rem; color: var(--dim2); line-height: 1.85;
  max-width: 560px; margin-top: 1rem;
}
.section-header .lead.dark { color: #555; }

/* ── DIVIDER ── */
.hr {
  width: 100%; height: 1px;
  background: var(--line);
}
.hr.lt { background: var(--line-lt); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 800; border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, opacity 0.2s;
  text-decoration: none; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold); color: var(--ink);
  font-size: 0.95rem; padding: 1rem 2.2rem;
  box-shadow: 0 4px 20px rgba(196,138,56,0.3);
}
.btn-primary:hover {
  background: var(--gold2);
  box-shadow: 0 8px 30px rgba(196,138,56,0.4);
}

.btn-outline {
  background: transparent; color: rgba(255,255,255,0.65);
  font-size: 0.9rem; padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  font-size: 0.9rem; padding: 0.85rem 1.8rem;
  border: 1px solid rgba(196,138,56,0.4);
}
.btn-outline-gold:hover { background: var(--gold-pale); border-color: var(--gold); }

.btn-dark {
  background: var(--ink); color: var(--white);
  font-size: 0.9rem; padding: 1rem 2.2rem;
  border: 1px solid var(--line2);
}
.btn-dark:hover { background: var(--navy2); border-color: var(--line); }

.btn-sm { font-size: 0.82rem !important; padding: 0.65rem 1.4rem !important; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold-pale); border: 1px solid rgba(196,138,56,0.22);
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; color: var(--gold2);
  letter-spacing: 0.04em;
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 6px var(--gold);
}

/* ── CARD ── */
.card {
  background: var(--navy2); border: 1px solid var(--line2);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(196,138,56,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.card.lt {
  background: var(--white); border-color: var(--line-lt);
}
.card.lt:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-pale); border: 1px solid rgba(196,138,56,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.25rem; flex-shrink: 0;
}
.card-icon.lt { background: var(--gold-pale); }

.card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.card.lt h3 { color: var(--ink); }
.card p  { font-size: 0.88rem; color: var(--dim); line-height: 1.72; }
.card.lt p { color: #666; }

/* ── ICON LIST ── */
.icon-list { list-style: none; }
.icon-list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.95rem; line-height: 1.6;
}
.icon-list li:first-child { border-top: 1px solid var(--line); }
.icon-list .ic { flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }

/* ── STAT ── */
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--gold); line-height: 1; display: block;
}
.stat-label {
  font-size: 0.8rem; color: var(--dim); margin-top: 0.35rem;
  line-height: 1.5; display: block;
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 66px;
  background: rgba(7,9,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img {
  height: 32px; width: auto; object-fit: contain;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name {
  font-size: 1.15rem; font-weight: 900; color: var(--white);
  letter-spacing: -0.01em;
}
.nav-brand-name span { color: var(--gold); }
.nav-brand-sub {
  font-size: 0.6rem; color: var(--dim); letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  font-size: 0.85rem; font-weight: 600; color: var(--dim);
  padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--white); background: var(--line); }
.nav-link.active { color: var(--white); }

.nav-cta {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.02em;
  color: var(--ink); background: var(--gold);
  padding: 0.6rem 1.5rem; border-radius: var(--radius);
  margin-right: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy); border-top: 1px solid var(--line);
  padding: 60px 5% 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.footer-logo img { height: 28px; width: auto; }
.footer-logo-text .n { font-size: 1.1rem; font-weight: 900; color: var(--white); }
.footer-logo-text .n span { color: var(--gold); }
.footer-logo-text .t { font-size: 0.65rem; color: var(--dim); margin-top: 0.1rem; }
.footer-brand p {
  font-size: 0.85rem; color: var(--dim); line-height: 1.7; max-width: 240px;
}

.footer-col h4 {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a {
  font-size: 0.88rem; color: var(--dim2);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--dim); }

/* ══════════════════════════════
   PAGE HERO — INNER PAGES
══════════════════════════════ */
.page-hero {
  padding: 140px 5% 80px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 50%, rgba(196,138,56,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 30%, rgba(12,16,32,0.6) 0%, transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; margin-top: 1rem; max-width: 700px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero .lead {
  font-size: 1.1rem; color: var(--dim2); line-height: 1.85;
  max-width: 560px; margin-top: 1.25rem;
}
.page-hero .lead strong { color: var(--white); }

/* ══════════════════════════════
   TESTIMONIAL BLOCK
══════════════════════════════ */
.testi-block {
  background: var(--navy2); border: 1px solid var(--line2);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.testi-block .stars { font-size: 0.9rem; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 1.25rem; }
.testi-block blockquote {
  font-size: 1.05rem; font-style: italic; font-weight: 500;
  color: rgba(255,255,255,0.82); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testi-block blockquote strong { color: var(--white); font-style: normal; }
.testi-block .author { display: flex; align-items: center; gap: 0.9rem; }
.testi-block .av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: var(--ink); flex-shrink: 0;
}
.testi-block .name { font-size: 0.88rem; font-weight: 700; }
.testi-block .title { font-size: 0.78rem; color: var(--dim); margin-top: 0.1rem; }

/* ══════════════════════════════
   GOLD HIGHLIGHT BOX
══════════════════════════════ */
.highlight-box {
  background: var(--gold-pale); border: 1px solid rgba(196,138,56,0.25);
  border-radius: var(--radius-lg); padding: 2rem 2.5rem;
}
.highlight-box p { font-size: 1rem; color: var(--gold2); line-height: 1.75; }
.highlight-box p strong { color: var(--white); }

/* ══════════════════════════════
   STEP BOXES
══════════════════════════════ */
.step-badge {
  display: inline-block;
  background: var(--gold); color: var(--ink);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem; border-radius: 999px;
  margin-bottom: 1.25rem;
}
.step-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy3); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.5rem;
}
.step-tag {
  display: inline-block; margin-top: 1.25rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold); background: var(--gold-pale);
  padding: 0.25rem 0.65rem; border-radius: 3px;
}

/* ══════════════════════════════
   FORM ELEMENTS
══════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.82rem; font-weight: 700; color: var(--dim2);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--navy2); border: 1px solid var(--line2);
  border-radius: var(--radius); padding: 0.9rem 1.2rem;
  font-size: 0.95rem; color: var(--white);
  font-family: inherit; outline: none;
  transition: border-color 0.2s;
  text-align: right;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy2); }

/* ══════════════════════════════
   GRID UTILITIES
══════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* ══════════════════════════════
   MOBILE NAVIGATION
══════════════════════════════ */

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px 10px;
  z-index: 201;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: rgba(196,138,56,0.4); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dim2);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, background 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span { background: var(--white); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: 66px; right: 0; left: 0;
  background: rgba(7,9,15,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  z-index: 198;
  padding: 1rem 5% 1.5rem;
  flex-direction: column;
  gap: 0;
  animation: menuSlide 0.22s ease;
}
.nav-mobile.open { display: flex; }
@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile .nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--dim2);
  transition: color 0.2s;
}
.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active { color: var(--white); }
.nav-mobile .nav-cta {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 60px 5%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 48px 5% 28px; }
  .footer-bottom p { font-size: 0.72rem; }
  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  /* Page hero */
  .page-hero { padding: 110px 5% 55px; }
  .page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
  /* Buttons */
  .btn-primary { padding: 0.9rem 1.8rem; font-size: 0.9rem; }
  .btn-outline  { padding: 0.9rem 1.6rem; font-size: 0.86rem; }
}
@media (max-width: 480px) {
  section { padding: 48px 4%; }
  .nav-brand-text { display: none; }
  .footer-top { gap: 1.75rem; }
  .section-header { margin-bottom: 2.5rem; }
}
