/* ============================================================
   MAIN.CSS - Global styles for reem-ins.co.il
   Load order: tokens → reset → base → layout → components
   ============================================================ */

/* ========== TOKENS ========== */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F5EF;
  --bg-dark: #0A1628;
  --bg-dark-2: #11213C;
  --navy: #0A1628;
  --navy-2: #1C3057;
  --gold: #C9A961;
  --gold-2: #E5C77E;
  --gold-3: #A68948;
  --text: #0A1628;
  --text-dim: #4A5568;
  --text-muted: #8A93A6;
  --line: rgba(10, 22, 40, 0.1);
  --line-dark: rgba(255,255,255,0.1);
  --font: 'Heebo', 'Assistant', system-ui, sans-serif;
  --maxw: 1280px;
  --radius: 16px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; }

/* ========== LAYOUT ========== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark .h2 { color: #fff; }
.section-dark .h2 span { color: var(--gold); }
.section-dark .eyebrow { color: var(--gold-2); }
.section-dark .eyebrow::before { background: var(--gold); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-head .h2 { margin-bottom: 16px; }
.section-head .h2 span { color: var(--gold-3); }
.section-head p { font-size: 17px; color: var(--text-dim); line-height: 1.7; }
.section-dark .section-head p { color: rgba(255,255,255,0.75); }

/* ========== TYPOGRAPHY ========== */
.h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  direction: rtl;
  unicode-bidi: plaintext;
}
.h3 { font-size: 22px; font-weight: 700; color: var(--navy); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201,169,97,0.35);
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201,169,97,0.35);
}
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-name { font-weight: 800; font-size: 20px; color: var(--navy); letter-spacing: -0.01em; }
.nav-brand-sub { font-size: 11px; color: var(--gold-3); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: inline-block;
  padding: 10px 14px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  border-radius: 8px;
}
.nav-link:hover, .nav-link.active { color: var(--gold-3); background: var(--bg-soft); }
.nav-link.has-caret::after { content: '▾'; font-size: 10px; margin-right: 6px; opacity: 0.6; }

.nav-dropdown {
  position: absolute;
  top: 100%; right: 0;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  box-shadow: 0 24px 60px rgba(10,22,40,0.12);
  margin-top: 8px;
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; cursor: pointer;
  border-radius: 10px; transition: background 0.15s; color: var(--navy);
}
.nav-dropdown-item:hover { background: var(--bg-soft); }
.nav-dropdown-icon {
  flex: 0 0 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--gold-3); background: var(--bg-soft); border-radius: 10px;
}
.nav-dropdown-title { font-weight: 600; font-size: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--navy); padding: 8px 12px; }
.nav-phone svg { color: var(--gold-3); }

/* ========== HAMBURGER ========== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  background: none; border: none;
  cursor: pointer; border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--bg-soft); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s; transform-origin: center;
}
.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 ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: #fff;
  display: flex; flex-direction: column;
  padding: 80px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  pointer-events: none; visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); pointer-events: all; visibility: visible; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-menu-link {
  padding: 16px 0; font-size: 22px; font-weight: 700; color: var(--navy);
  border-bottom: 1px solid var(--line); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--gold-3); }
.mobile-menu-services { display: none; flex-direction: column; gap: 2px; padding: 8px 0 4px; }
.mobile-menu-services.open { display: flex; }
.mobile-menu-sub {
  padding: 10px 16px; font-size: 15px; color: var(--text-dim);
  font-weight: 500; cursor: pointer; border-radius: 8px; transition: background 0.15s;
}
.mobile-menu-sub:hover { background: var(--bg-soft); color: var(--navy); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: auto; padding-top: 32px; }
.mobile-menu-ctas .btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.mobile-menu-phone {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; color: var(--navy);
  padding: 16px 0; border-bottom: 1px solid var(--line); margin-bottom: 4px;
}
.mobile-menu-phone svg { color: var(--gold-3); }

/* ========== STATS ========== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: 32px 24px; text-align: center; border-inline-start: 1px solid var(--line-dark); }
.stat-cell:first-child { border-inline-start: none; }
.stat-num {
  font-size: clamp(52px, 6vw, 80px); font-weight: 900; line-height: 1;
  color: var(--gold); letter-spacing: -0.03em;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.stat-num small { font-size: 0.5em; font-weight: 800; color: var(--gold-2); }
.stat-label { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ========== VALUES ========== */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.value-card {
  background: #fff; border-radius: 20px; padding: 32px 24px;
  border: 1px solid var(--line); transition: all 0.3s; text-align: center;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,22,40,0.08); border-color: var(--gold); }
.value-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold); display: grid; place-items: center;
  margin: 0 auto 20px; transition: transform 0.3s;
}
.value-card:hover .value-icon { transform: scale(1.08) rotate(-4deg); }
.value-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

/* ========== PARTNERS ========== */
.partners-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); background: #fff;
}
.partner {
  padding: 36px 24px; border-inline-start: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid; place-items: center; transition: all 0.2s; min-height: 120px;
}
.partner:hover { background: var(--bg-soft); }
.partner:nth-child(6n+1) { border-inline-start: none; }
.partner:nth-last-child(-n+6) { border-bottom: none; }
.partner img { max-width: 130px; max-height: 56px; width: auto; height: auto; object-fit: contain; }

/* ========== SERVICES FULL ========== */
.services-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-full {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 20px; padding: 36px 32px;
  border: 1px solid transparent; transition: all 0.35s cubic-bezier(.4,0,.2,1);
  cursor: pointer; position: relative; overflow: hidden; display: block;
}
.service-full > * { position: relative; z-index: 1; }
.service-full:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,22,40,0.3); }
.service-full-num {
  position: absolute; top: 24px; left: 28px;
  font-size: 56px; font-weight: 900; color: rgba(255,255,255,0.08); line-height: 1; z-index: 0;
}
.service-full-icon {
  width: 64px; height: 64px; border-radius: 18px; background: var(--gold);
  color: var(--navy); display: grid; place-items: center; margin-bottom: 24px; transition: transform 0.35s;
}
.service-full:hover .service-full-icon { transform: scale(1.08); }
.service-full-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.service-full-desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; }
.service-full-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--gold); }

/* ========== FAQ ========== */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.faq-visual { position: sticky; top: 120px; }
.faq-visual-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 24px; padding: 40px; color: #fff; position: relative; overflow: hidden;
}
.faq-visual-card::before {
  content: '?'; position: absolute; top: -40px; left: -20px;
  font-size: 280px; font-weight: 900; color: rgba(201,169,97,0.15); line-height: 1; font-family: Georgia, serif;
}
.faq-visual-card .eyebrow { color: var(--gold-2); }
.faq-visual-card .eyebrow::before { background: var(--gold); }
.faq-visual-card h3 { font-size: 30px; font-weight: 800; margin: 12px 0 16px; position: relative; }
.faq-visual-card p { color: rgba(255,255,255,0.75); line-height: 1.7; position: relative; margin-bottom: 28px; }
.faq-visual-card .btn { position: relative; }
.faq-list { display: grid; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: all 0.25s; }
.faq-item.open { border-color: var(--gold); box-shadow: 0 10px 30px rgba(201,169,97,0.15); }
.faq-q {
  padding: 24px 28px; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; cursor: pointer; font-size: 17px; font-weight: 700; color: var(--navy);
}
.faq-toggle {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft); color: var(--gold-3); display: grid; place-items: center;
  font-size: 20px; transition: all 0.3s;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 28px 28px; color: var(--text-dim); font-size: 15px; line-height: 1.75; }

/* ========== BLOG ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); cursor: pointer; transition: all 0.3s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,22,40,0.1); }
.blog-img {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.3), transparent),
    repeating-linear-gradient(-45deg, #2A3E5E, #2A3E5E 14px, #344A6F 14px, #344A6F 28px);
  display: grid; place-items: center; position: relative;
  overflow: hidden;
}
.blog-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.blog-tag {
  position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.blog-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.blog-title { font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 12px; }
.blog-excerpt { font-size: 14px; color: var(--text-dim); line-height: 1.65; flex: 1; }
.blog-read { margin-top: 20px; color: var(--gold-3); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }

/* ========== CONTACT STRIP ========== */
.contact-strip {
  background: var(--navy); color: #fff;
  padding: 80px 0; position: relative; overflow: hidden;
}
.contact-strip::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,97,0.15), transparent 70%);
  border-radius: 50%;
}
.contact-strip-inner { position: relative; text-align: center; }
.contact-strip .h2 { color: #fff; margin-bottom: 16px; }
.contact-strip .h2 span { color: var(--gold); }
.contact-strip p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto 48px; }

.contact-channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; }
.contact-channel {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px 20px; text-align: center;
  transition: all 0.3s; cursor: pointer; display: block;
}
.contact-channel:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-4px); }
.contact-channel:hover .contact-channel-icon { background: var(--navy); color: var(--gold); }
.contact-channel:hover .contact-channel-label,
.contact-channel:hover .contact-channel-value { color: var(--navy); }
.contact-channel-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center; margin: 0 auto 14px; transition: all 0.3s;
}
.contact-channel-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; margin-bottom: 4px; letter-spacing: 0.05em; transition: color 0.3s; }
.contact-channel-value { font-size: 15px; font-weight: 700; color: #fff; transition: color 0.3s; }

/* ========== CONTACT FORM ========== */
.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 56px;
  max-width: 860px; margin: -40px auto 0;
  position: relative; z-index: 5;
  box-shadow: 0 40px 100px rgba(10,22,40,0.15);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  border: 1.5px solid var(--gold);
}
.contact-form-info h3 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.contact-form-info p { font-size: 15px; color: var(--text-dim); line-height: 1.7; }
.contact-form-info ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.contact-form-info li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-dim); font-weight: 500; }
.contact-form-info li span { color: var(--gold-3); font-weight: 800; flex-shrink: 0; }
.contact-form .field { margin-bottom: 14px; }
.contact-form label { display: block; font-size: 12px; color: var(--text-dim); margin-bottom: 6px; font-weight: 600; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; background: #fff; border: 1px solid var(--gold);
  color: var(--navy); padding: 12px 14px; font-family: var(--font);
  font-size: 14px; border-radius: 10px; transition: all 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold-3); }
.contact-form .field-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; margin-top: 4px; }
.contact-form .field-consent input[type=checkbox] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold-3);
  border: 1.5px solid var(--gold); border-radius: 4px; cursor: pointer;
}
.contact-form .field-consent label {
  display: inline; font-size: 12px; color: var(--text-dim); font-weight: 400;
  margin-bottom: 0; line-height: 1.6; cursor: pointer;
}
.contact-form .field-consent label a { color: var(--gold-3); text-decoration: underline; }

/* ========== FOOTER ========== */
footer { background: #050F1E; color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand-logo img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand-logo .fn { font-weight: 800; font-size: 22px; color: #fff; }
.footer-brand-logo .fs { font-size: 11px; color: var(--gold); letter-spacing: 0.15em; margin-top: 2px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 340px; }
.footer-col h5 { font-size: 13px; color: var(--gold); margin-bottom: 18px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom a { margin: 0 8px; }

/* ========== WHATSAPP FAB ========== */
.whatsapp-fab {
  position: fixed; bottom: 28px; left: 28px; z-index: 99;
  width: 60px; height: 60px; background: #25D366; color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  cursor: pointer; box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  animation: wapulse 2.5s infinite; border: none;
}
.whatsapp-fab::before {
  content: ''; position: absolute; inset: -6px;
  border: 2px solid #25D366; border-radius: 50%;
  opacity: 0; animation: waring 2.5s infinite;
}
@keyframes wapulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes waring { 0%{opacity:0.7;transform:scale(1)} 100%{opacity:0;transform:scale(1.4)} }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ========== PRINT HEADER ========== */
.print-brand-header { display: none; }
@media print {
  .print-brand-header {
    display: flex !important; align-items: center; justify-content: space-between;
    padding: 14pt 20pt; border-bottom: 2px solid #C9A961; margin-bottom: 20pt;
  }
  .print-brand-header .brand-block { display: flex; align-items: center; gap: 10pt; }
  .print-brand-header img { width: 44pt; height: 44pt; }
  .print-brand-header .bn { font-weight: 800; font-size: 16pt; color: #0A1628; }
  .print-brand-header .bs { font-size: 8pt; color: #A68948; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2pt; }
  .print-brand-header .contact-line { font-size: 10pt; color: #4A5568; }
  .print-brand-header .contact-line strong { color: #0A1628; }
}

/* ========== TABLET ========== */
@media (min-width: 768px) and (max-width: 1120px) {
  /* Layout */
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 52px; }
  .section-head p { font-size: 16px; }
  .h2 { font-size: clamp(28px, 4vw, 38px); }
  .container { padding: 0 28px; }

  /* Values - 3 columns */
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .value-card { padding: 28px 20px; display: block; text-align: center; }
  .value-icon { width: 56px; height: 56px; border-radius: 14px; flex-shrink: unset; margin: 0 auto 16px; }
  .value-title { font-size: 16px; margin-bottom: 8px; }
  .value-desc { font-size: 13px; }

  /* Stats - 4 columns */
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-cell:nth-child(3) { border-inline-start: 1px solid var(--line-dark); }
  .stat-num { font-size: clamp(42px, 6vw, 64px); }

  /* Partners - 3 cols */
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .partner:nth-child(2n+1) { border-inline-start: 1px solid var(--line); }
  .partner:nth-child(3n+1) { border-inline-start: none; }
  .partner:nth-child(6n+1) { border-inline-start: 1px solid var(--line); }

  /* Services full - 2 columns */
  .services-full { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .service-full { padding: 32px 28px; }

  /* FAQ - single col but with proper spacing */
  .faq-wrap { gap: 40px; }
  .faq-visual-card { padding: 36px 32px; }
  .faq-visual-card h3 { font-size: 26px; }
  .faq-q { padding: 22px 24px; font-size: 16px; }
  .faq-a-inner { padding: 0 24px 24px; }

  /* Blog - 2 columns */
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .blog-card { border-radius: 18px; }
  .blog-body { padding: 24px; }
  .blog-title { font-size: 18px; }

  /* Contact strip */
  .contact-strip { padding: 72px 0; }
  .contact-strip p { font-size: 16px; margin-bottom: 40px; }
  .contact-channels { grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 100%; }
  .contact-channel { padding: 24px 14px; border-radius: 18px; }
  .contact-channel-value { font-size: 14px; }
  .contact-form-wrap { grid-template-columns: 1fr 1fr; padding: 40px; }
  .contact-form-info h3 { font-size: 24px; }

  /* Footer - 2 cols brand + links */
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { text-align: right; }
  .footer-brand-logo { justify-content: flex-start; }
  .footer-brand p { margin-inline: 0; }
  .footer-col { text-align: right; }
  .footer-col ul { justify-items: start; }
  .footer-bottom { flex-direction: row; font-size: 13px; }
  footer { padding: 64px 0 28px; }
}

/* ========== REDUCE MOTION ========== */
.reduce-motion *, .reduce-motion *::before, .reduce-motion *::after {
  animation: none !important;
  transition: none !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1120px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3) { border-inline-start: none; }
  .contact-channels { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { grid-template-columns: 1fr; padding: 32px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .partner:nth-child(6n+1) { border-inline-start: 1px solid var(--line); }
  .partner:nth-child(3n+1) { border-inline-start: none; }
  .services-full { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-visual { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(560px, calc(100% - 32px));
  background: var(--navy);
  border-radius: 20px;
  border: 1px solid rgba(201,169,97,0.25);
  box-shadow: 0 24px 60px rgba(10,22,40,0.45);
  padding: 28px 32px;
  direction: rtl;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cookie-banner.visible {
  display: block;
}
.cookie-banner.shown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-banner-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201,169,97,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.cookie-banner-text {
  flex: 1;
}
.cookie-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.cookie-banner-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.cookie-banner-desc a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner-desc a:hover {
  color: var(--gold-2);
}
.cookie-banner-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.cookie-banner-btn:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 16px);
    padding: 18px 16px;
    border-radius: 14px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner-icon { display: none; }
  .cookie-banner-btn { width: 100%; text-align: center; padding: 13px; font-size: 15px; }
}

@media (max-width: 1120px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 12px 16px; flex-direction: row-reverse; }
  .nav-menu, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand img { width: 42px; height: 42px; }
  .nav-brand-name { font-size: 17px; }
  .nav-inner > div > .btn { display: none; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 15px; }
  .h2 { font-size: clamp(24px, 6vw, 36px); }
  .values-grid { grid-template-columns: 1fr; gap: 12px; }
  .value-card { padding: 20px; border-radius: 16px; display: flex; align-items: center; gap: 16px; text-align: right; }
  .value-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; margin: 0; }
  .value-title { font-size: 15px; margin-bottom: 4px; }
  .value-desc { font-size: 13px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 28px 16px; }
  .stat-cell:nth-child(3) { border-inline-start: none; }
  .stat-num { font-size: clamp(36px, 9vw, 56px); }
  .stat-label { font-size: 12px; margin-top: 10px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner { padding: 24px 16px; min-height: 90px; }
  .partner:nth-child(3n+1) { border-inline-start: 1px solid var(--line); }
  .partner:nth-child(2n+1) { border-inline-start: none; }
  .contact-strip { padding: 60px 0; }
  .contact-strip p { font-size: 15px; margin-bottom: 32px; }
  .contact-channels { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 100%; }
  .contact-channel { padding: 20px 12px; border-radius: 16px; }
  .contact-channel-value { font-size: 13px; }
  .contact-form-wrap { padding: 28px 20px; margin: -40px auto 0; border-radius: 20px; }
  .contact-form-info h3 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; font-size: 12px; }
  .footer-brand { text-align: center; }
  .footer-brand-logo { justify-content: center; }
  .footer-brand p { margin-inline: auto; }
  .footer-col { text-align: center; }
  .footer-col ul { justify-items: center; }
  footer { padding: 52px 0 24px; }
  .whatsapp-fab { bottom: 20px; left: 20px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
  .services-full { grid-template-columns: 1fr; gap: 16px; }
  .service-full { padding: 28px 24px; border-radius: 16px; }
  .faq-wrap { gap: 24px; }
  .faq-visual-card { padding: 28px 24px; border-radius: 18px; }
  .faq-visual-card h3 { font-size: 22px; }
  .faq-q { padding: 18px 20px; font-size: 15px; gap: 16px; }
  .faq-a-inner { padding: 0 20px 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card { border-radius: 16px; }
  .blog-body { padding: 20px; }
  .blog-title { font-size: 17px; }
}
