/* ozarot.com — v2 design system
 * Direction: Hebrew Editorial + Private Banking trust
 * Typography: Ploni (display, all bold/headlines) + Heebo (body). Single-font system.
 * Palette: warm ivory + deep charcoal + refined gold + forest trust
 */

/* ============ FONTS ============ */
@font-face {
  font-family: 'Ploni';
  src: url('/wp-content/uploads/2025/03/ploni-bold-aaa.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ploni';
  src: url('/wp-content/uploads/2025/03/ploni-regular-aaa.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Google fonts — body only (Heebo). Display + accents use Ploni from local woff. */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&display=swap');

/* ============ TOKENS ============ */
:root {
  /* colors — derived from ozarot logo: red #bf1e0c, orange #f47808, gold #ffd20d */
  --bg-ivory: #FFF9EE;
  --bg-white: #FFFFFF;
  --bg-card: #FFF3D9;
  --ink-black: #1A0E08;
  --ink-warm: #2E1F15;
  --ink-grey: #6B5A4D;
  --ink-mute: #A0907F;
  --divider: #F0DFB8;

  /* Brand palette — vibrant treasure */
  --red:        #BF1E0C;
  --red-dark:   #962112;
  --red-light:  #FFE3DD;
  --orange:     #F47808;
  --orange-dark:#D9650A;
  --orange-light:#FFE5C5;
  --gold:       #FFD20D;
  --gold-dark:  #E0B600;
  --gold-light: #FFF1A6;

  /* legacy aliases (used elsewhere in the file) */
  --forest: #1F7A47;
  --forest-light: #DEF4E8;
  --red-alert: #BF1E0C;

  /* type scale — single display font (Ploni) for everything bold; body in Heebo */
  --display: 'Ploni', 'Heebo', system-ui, sans-serif;
  --body: 'Heebo', system-ui, sans-serif;
  /* Brand gradient — used as text-fill for accent words */
  --grad-brand: linear-gradient(135deg, #BF1E0C 0%, #F47808 55%, #FFD20D 100%);

  /* rhythm */
  --container: 1120px;
  --container-narrow: 720px;
  --radius: 4px;
  --radius-lg: 12px;

  /* motion */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-warm);
  background: var(--bg-ivory);
  direction: rtl;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea { font-family: inherit; font-size: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; color: var(--ink-black); line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
::selection { background: var(--gold); color: var(--ink-black); }

/* ============ LAYOUT ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 238, 0.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--divider);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--container); margin: 0 auto; gap: 16px; }
.site-header .logo { display: inline-flex; align-items: center; }
.site-header .logo img { height: 44px; width: auto; display: block; }
@media (max-width: 520px) { .site-header .logo img { height: 36px; } }
.site-header .phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px -3px rgba(191,30,12,0.35);
  transition: transform .12s var(--ease), box-shadow .2s var(--ease);
}
.site-header .phone:hover { transform: translateY(-1px); box-shadow: 0 6px 18px -4px rgba(191,30,12,0.45); }
.site-header .phone::before { content: "←"; font-size: 16px; }

/* ============ HERO ============ */
.hero {
  padding: 80px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 85% 20%, rgba(200,169,96,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 500px 350px at 10% 80%, rgba(45,94,62,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red-dark);
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1.5px solid var(--orange);
  border-radius: 100px;
  margin-bottom: 24px;
  background: var(--orange-light);
}
.hero-eyebrow::before { content: "●"; color: var(--red); font-size: 10px; }

.hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  color: var(--ink-black);
  margin-bottom: 24px;
  max-width: 920px;
  letter-spacing: -0.025em;
}
.hero h1 .accent {
  font-family: var(--display);
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero h1 .break { display: block; }

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-grey);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.55;
}

/* stats strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  margin: 40px 0;
  padding: 28px 0;
}
.stat-strip .stat { padding: 0 24px; position: relative; }
.stat-strip .stat + .stat::before {
  content: ""; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: var(--divider);
}
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1;
  color: var(--ink-black);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-num .currency {
  font-family: var(--display);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-inline-start: 2px;
}
.stat-label { font-size: 14px; color: var(--ink-grey); font-weight: 500; }
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: 1fr; padding: 0; }
  .stat-strip .stat { padding: 20px 0; border-top: 1px solid var(--divider); }
  .stat-strip .stat:first-child { border-top: 0; }
  .stat-strip .stat + .stat::before { display: none; }
}

/* ============ FORM CARD ============ */
.form-card {
  background: var(--bg-white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 2px 0 rgba(200,169,96,0.04), 0 20px 60px -20px rgba(10,10,10,0.08);
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}
.form-card .step-indicator {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-mute); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.form-card .step-indicator .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--divider); transition: background .3s var(--ease), transform .3s var(--ease); }
.form-card .step-indicator .dot.active { background: var(--orange); transform: scale(1.2); }
.form-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--ink-black);
}
.form-card p.hint { color: var(--ink-grey); font-size: 15px; margin-bottom: 22px; }
.form-card label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-warm); margin-bottom: 6px; }
.form-card input[type="text"],
.form-card input[type="tel"],
.form-card input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  background: var(--bg-white);
  font-size: 16px;
  color: var(--ink-black);
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.form-card input:focus { outline: none; border-color: var(--orange); background: #FFFBF2; box-shadow: 0 0 0 3px rgba(244,120,8,0.12); }
.form-card input.error { border-color: var(--red-alert); background: #FDF5F4; }
.form-card .error-msg { color: var(--red-alert); font-size: 13px; margin-top: 6px; font-weight: 500; }

.form-card .consent {
  display: flex; gap: 10px; margin-top: 16px; font-size: 13px; color: var(--ink-grey); line-height: 1.5;
}
.form-card .consent input[type="checkbox"] {
  margin: 3px 0 0 0;
  accent-color: var(--red);
  width: 17px; height: 17px;
  flex-shrink: 0;
}
.form-card .consent a { color: var(--red-dark); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; font-weight: 600; }
.form-card .consent a:hover { color: var(--red); text-decoration-color: var(--red); }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%;
  padding: 19px 28px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: #FFFFFF;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius);
  letter-spacing: -0.005em;
  transition: transform .14s var(--ease), box-shadow .25s var(--ease), filter .2s var(--ease);
  margin-top: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 0 var(--red-dark), 0 14px 30px -8px rgba(191,30,12,0.45);
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,210,13,0.35) 50%, transparent 100%);
  transform: translateX(120%);
  transition: transform .6s var(--ease);
  pointer-events: none;
}
.btn-primary::after {
  content: "←";
  font-family: var(--body);
  font-weight: 700;
  font-size: 20px;
  transition: transform .25s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--red-dark), 0 20px 40px -10px rgba(191,30,12,0.55);
  filter: brightness(1.05);
}
.btn-primary:hover::before { transform: translateX(-120%); }
.btn-primary:hover::after { transform: translateX(-6px); }
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--red-dark), 0 6px 16px -4px rgba(191,30,12,0.4);
}
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.3);
  box-shadow: 0 3px 0 var(--ink-mute), 0 8px 16px -4px rgba(0,0,0,0.15);
}

.form-card .trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--divider);
  font-size: 12px; color: var(--ink-mute); font-weight: 500;
}
.form-card .trust-row span { display: inline-flex; align-items: center; gap: 4px; }

@media (max-width: 720px) {
  .form-card { padding: 24px 20px; }
  .form-card h2 { font-size: 20px; }
}

/* Hero grid */
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ SECTION HEADERS ============ */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; color: var(--red); text-transform: uppercase; margin-bottom: 14px; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--ink-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-head p { color: var(--ink-grey); font-size: 18px; max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 24px; } }
.step-card {
  padding: 36px 28px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(10,10,10,0.12); }
.step-card .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.step-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--ink-black); }
.step-card p { color: var(--ink-grey); font-size: 15px; line-height: 1.6; }

/* ============ WHAT WE FIND (category grid) ============ */
.categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .categories { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .categories { grid-template-columns: 1fr; } }
.cat-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  transition: all .25s var(--ease);
}
.cat-card:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -10px rgba(244,120,8,0.25);
}
.cat-card .icon { font-size: 32px; margin-bottom: 14px; }
.cat-card h4 { font-family: var(--display); font-weight: 700; font-size: 17px; margin-bottom: 6px; color: var(--ink-black); }
.cat-card p { font-size: 13px; color: var(--ink-grey); line-height: 1.5; }

/* ============ TESTIMONIALS ============ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 32px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 0; right: 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
}
.testimonial .quote { font-size: 16px; line-height: 1.6; color: var(--ink-warm); position: relative; z-index: 1; }
.testimonial .meta { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--divider); }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: #FFFFFF;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  display: grid; place-items: center;
}
.testimonial .name { font-weight: 600; font-size: 14px; color: var(--ink-black); }
.testimonial .loc { font-size: 12px; color: var(--ink-mute); }
.testimonial .amount {
  margin-inline-start: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: -0.01em;
}

/* ============ FAQ ============ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-item:first-child { border-top: 1px solid var(--divider); }
.faq-item summary {
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-black);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  color: var(--red);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--orange); }
.faq-item summary:hover { color: var(--red); }
.faq-item .body {
  padding: 0 0 22px;
  color: var(--ink-grey);
  font-size: 16px;
  line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--ink-black);
  color: var(--bg-ivory);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 350px at 30% -10%, rgba(244,120,8,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 700px 400px at 80% 110%, rgba(255,210,13,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.final-cta h2 {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--bg-ivory);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.final-cta h2 .accent {
  font-family: var(--display);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.final-cta p { color: rgba(255,249,238,0.78); font-size: 18px; margin-bottom: 40px; max-width: 560px; margin-right: auto; margin-left: auto; }
.final-cta .btn-primary {
  display: inline-flex;
  width: auto;
  padding: 22px 48px;
  font-size: 19px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--ink-black);
  box-shadow: 0 6px 0 var(--red-dark), 0 16px 36px -10px rgba(255,210,13,0.45);
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}
.final-cta .btn-primary:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 0 var(--red-dark), 0 22px 44px -10px rgba(244,120,8,0.6);
  transform: translateY(-2px);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-ivory);
  border-top: 1px solid var(--divider);
  padding: 40px 0 32px;
}
.site-footer .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
  font-size: 14px;
  color: var(--ink-grey);
}
.site-footer nav { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer a { color: var(--ink-grey); transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--gold-dark); }
.site-footer .disclaimer { flex-basis: 100%; font-size: 12px; color: var(--ink-mute); line-height: 1.6; max-width: var(--container); margin: 24px auto 0; padding: 0 24px; border-top: 1px solid var(--divider); padding-top: 20px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .7s var(--ease) both; }
.reveal-1 { animation-delay: .05s; }
.reveal-2 { animation-delay: .15s; }
.reveal-3 { animation-delay: .25s; }
.reveal-4 { animation-delay: .35s; }
.reveal-5 { animation-delay: .45s; }

/* ============ UTIL ============ */
.text-gold { color: var(--gold-dark); }
.text-black { color: var(--ink-black); }
.text-grey { color: var(--ink-grey); }
.mt-sm { margin-top: 16px; }
.mt { margin-top: 32px; }
.mt-lg { margin-top: 64px; }
