/* ════════════════════════════════════════
   BRAND TOKENS
════════════════════════════════════════ */
:root {
  /* ── 3 Brand Colors ── */
  --brand:       #04304B;   /* כחול כהה ראשי */
  --brand-mid:   #0a5278;   /* כחול בינוני (hover/glow) */
  --brand-light: #1a7aad;   /* כחול בהיר (links) */
  --brand-dim:   rgba(180,191,200,0.22);

  --light1:      #F1F1F1;   /* אפור בהיר 1 - טקסט ראשי */
  --light2:      #B4BFC8;   /* אפור בהיר 2 - טקסט משני */

  /* ── Dark Backgrounds (navy-tinted toward #04304B) ── */
  --ink:        #010d16;
  --navy:       #011828;
  --navy-mid:   #022030;
  --navy-soft:  #032840;
  --slate:      #04304B;    /* = brand עצמו כרקע section */
  --slate-mid:  #053a58;
  --card:       #021620;

  /* ── Aliases ── */
  --cream:      #F1F1F1;
  --text-muted: #B4BFC8;
  --gray-100:   #F1F1F1;
  --gray-300:   #B4BFC8;
  --gray-400:   #8a9bab;
  --gray-500:   #5a7080;
  --gray-700:   #1a3448;
  --gray-800:   #021620;
  --gray-900:   #010c14;

  /* ── Borders → use light colors at low opacity ── */
  --border:      rgba(180,191,200,0.18);
  --border-blue: rgba(180,191,200,0.12);

  /* ── Glow ── */
  --blue-glow:  rgba(10,82,120,0.15);

  --font-display: 'Google Sans', 'Heebo', sans-serif;
  --font-body:    'Google Sans', 'Heebo', sans-serif;
}

/* ════════════════════════════════════════
   RESET
════════════════════════════════════════ */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   ADMIN BAR (top ribbon)
════════════════════════════════════════ */
#admin-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 40px;
  background: #010b14;
  border-bottom: 1px solid rgba(180,191,200,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: .78rem;
  font-family: var(--font-body);
}
#admin-bar.hidden { display: none; }
.admin-bar-logo {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: .08em;
  display: flex; align-items: center; gap: 8px;
}
.admin-bar-logo::before {
  content: '⚙';
  font-size: .9rem;
}
.admin-bar-actions { display: flex; gap: 8px; }
.ab-btn {
  padding: 4px 14px;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: .04em;
  transition: all .15s;
}
.ab-btn-edit {
  background: var(--brand);
  color: #07090f;
}
.ab-btn-edit:hover { background: var(--brand-light); }
.ab-btn-save {
  background: #22c55e;
  color: #07090f;
}
.ab-btn-save:hover { background: #16a34a; }
.ab-btn-preview {
  background: transparent;
  color: var(--gray-300);
  border: 1px solid var(--gray-700);
}
.ab-btn-preview:hover { border-color: var(--brand); color: var(--brand); }

/* ════════════════════════════════════════
   ADMIN PANEL (sidebar)
════════════════════════════════════════ */
#admin-panel {
  position: fixed;
  top: 40px; left: 0;
  width: 380px;
  height: calc(100vh - 40px);
  background: #010d18;
  border-left: 1px solid rgba(10,82,120,0.28);
  z-index: 9998;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  font-size: .85rem;
}
#admin-panel.open { transform: translateX(0); }
body.admin-open { margin-right: 0; }

.panel-header {
  background: #031826;
  border-bottom: 1px solid rgba(10,82,120,0.28);
  padding: 20px;
  position: sticky; top: 0; z-index: 1;
}
.panel-header h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.panel-header p { color: var(--text-muted); font-size: .78rem; }

.panel-tabs {
  display: flex;
  border-bottom: 1px solid rgba(180,191,200,0.14);
  background: #021420;
  position: sticky; top: 82px; z-index: 1;
}
.tab-btn {
  flex: 1;
  padding: 12px 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.tab-btn.active {
  color: var(--brand-light);
  border-bottom-color: var(--brand-light);
  background: rgba(180,191,200,0.08);
}
.tab-btn:hover:not(.active) { color: var(--gray-100); }

.tab-content { display: none; padding: 20px; }
.tab-content.active { display: block; }

/* field groups */
.field-group {
  margin-bottom: 20px;
  background: #031a28;
  border: 1px solid rgba(180,191,200,0.14);
  border-radius: 4px;
  overflow: hidden;
}
.field-group-title {
  background: #042030;
  padding: 10px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--steel-light);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  user-select: none;
}
.field-group-title::after { content: '▾'; margin-right: auto; color: var(--text-muted); }
.field-group-title.collapsed::after { content: '▸'; }
.field-group-body { padding: 14px; }
.field-group-body.collapsed { display: none; }

.field {
  margin-bottom: 14px;
}
.field:last-child { margin-bottom: 0; }
.field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: .06em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.field input[type=text],
.field input[type=tel],
.field input[type=email],
.field input[type=url],
.field textarea,
.field select {
  width: 100%;
  background: #010e1a;
  border: 1px solid rgba(10,82,120,0.28);
  border-radius: 3px;
  padding: 9px 12px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .85rem;
  direction: rtl;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(180,191,200,0.12);
}
.field textarea { min-height: 80px; resize: vertical; }
.field input[type=color] {
  width: 100%; height: 36px;
  padding: 2px;
  background: #010e1a;
  border: 1px solid rgba(10,82,120,0.28);
  border-radius: 3px;
  cursor: pointer;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.image-picker {
  border: 2px dashed rgba(10,82,120,0.28);
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s;
}
.image-picker:hover { border-color: var(--brand); }
.image-picker-thumb {
  width: 100%; height: 80px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 8px;
  display: block;
}
.image-picker p {
  font-size: .75rem;
  color: var(--text-muted);
}
.image-picker input { display: none; }

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(80,120,220,0.1);
}
.toggle-row:last-child { border-bottom: none; }
.toggle-row span { font-size: .82rem; color: var(--gray-100); }
.toggle {
  width: 36px; height: 20px;
  background: var(--gray-700);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.toggle.on { background: var(--brand); }
.toggle::after {
  content: '';
  position: absolute;
  top: 3px; right: 3px;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  transition: right .2s;
}
.toggle.on::after { right: calc(100% - 17px); }

.badge-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-item {
  display: flex;
  gap: 6px;
  align-items: center;
}
.badge-item input { flex: 1; }
.badge-item .del-btn {
  width: 26px; height: 26px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 3px;
  color: #f87171;
  cursor: pointer;
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-item .del-btn:hover { background: rgba(239,68,68,0.2); }
.add-btn {
  width: 100%; margin-top: 8px;
  padding: 7px;
  background: rgba(46,107,230,0.1);
  border: 1px dashed var(--brand-dark);
  border-radius: 3px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s;
}
.add-btn:hover { background: rgba(10,82,120,0.28); }

.service-item {
  background: #010e1a;
  border: 1px solid rgba(180,191,200,0.14);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
}
.service-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: .82rem;
  color: var(--gray-100);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-item summary::after { content: '▾'; color: var(--brand); }
.service-item[open] summary::after { content: '▴'; }
.service-inner { padding-top: 12px; }
.service-inner .field { margin-bottom: 10px; }

.stat-item-edit {
  background: #010e1a;
  border: 1px solid rgba(180,191,200,0.14);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
}
.stat-item-edit .field-row .field { margin: 0; }

/* save notification */
.save-toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #22c55e;
  color: #07090f;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 99999;
  transition: transform .3s ease;
}
.save-toast.show { transform: translateX(-50%) translateY(0); }

/* ════════════════════════════════════════
   MAIN SITE LAYOUT
════════════════════════════════════════ */
#site-wrap {
  transition: margin-right .3s;
}
body.admin-open #site-wrap {
  /* keep visible, just shifted */
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.top-bar {
  position: fixed;
  left: 0; right: 0;
  z-index: 1000;
  top: 0;
  background: rgba(7,9,15,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: top .3s;
}
body.has-admin .top-bar { top: 40px; }
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
}
.logo span { color: var(--brand-light); }
nav { display: flex; gap: 32px; }
nav a {
  font-size: .87rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .03em;
  transition: color .2s;
}
nav a:hover { color: var(--brand); }
.nav-cta {
  background: var(--brand);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: .04em;
  border: 1px solid rgba(241,241,241,0.2);
}
.nav-cta:hover { background: var(--brand-mid) !important; color: #ffffff !important; border-color: rgba(241,241,241,0.4) !important; }

/* ════════════════════════════════════════
   HERO — DARK INK + BLUE GLOW
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  overflow: hidden;
}
body.has-admin .hero { padding-top: 112px; }
.hero:not(.no-pad) { padding-top: 72px; }

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 25% 45%, rgba(10,82,120,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 80% 65%, rgba(10,82,120,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 50% 0%, rgba(10,82,120,0.28) 0%, transparent 50%),
    linear-gradient(160deg, var(--ink) 0%, var(--navy) 40%, var(--navy-mid) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* diagonal split line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 55%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, var(--brand-dark) 30%, var(--brand-dark) 70%, transparent 95%);
  opacity: .35;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 28px;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--brand); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 10px;
}
.hero-title .accent { color: var(--brand-light); }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: var(--gray-300);
  margin-bottom: 40px;
  padding-right: 18px;
  border-right: 2px solid var(--brand);
}

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.badge {
  background: rgba(10,82,120,0.25);
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  padding: 7px 14px;
  font-size: .8rem; font-weight: 600;
  color: var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.badge::before { content: '◆'; color: var(--steel); font-size: .5rem; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  padding: 15px 34px;
  border-radius: 2px;
  font-weight: 700; font-size: .97rem;
  text-decoration: none;
  letter-spacing: .05em;
  border: 1px solid rgba(241,241,241,0.2); cursor: pointer;
  transition: all .2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10,82,120,0.5);
  border-color: rgba(241,241,241,0.35);
}
.btn-outline {
  border: 1px solid rgba(241,241,241,0.25);
  color: var(--light1);
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 600; font-size: .9rem;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--light1); color: var(--light1); background: rgba(241,241,241,0.06); }

/* HERO IMAGE SIDE */
.hero-image {
  position: relative; z-index: 2;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(15%) contrast(1.05) brightness(0.9);
  display: block;
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(7,9,15,0.7) 0%, transparent 35%),
    linear-gradient(to top, rgba(7,9,15,0.85) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(7,9,15,0.3) 0%, transparent 25%);
}

.years-badge {
  position: absolute; bottom: 44px; left: 44px; z-index: 2;
  background: var(--brand);
  color: #ffffff;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; line-height: 1.1;
  box-shadow: 0 0 50px rgba(10,82,120,0.45);
}
.years-badge .num { font-size: 2.1rem; }
.years-badge .lbl { font-size: .62rem; letter-spacing: .04em; font-weight: 600; }

/* ════════════════════════════════════════
   STATS STRIP — NAVY
════════════════════════════════════════ */
.stats-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat {
  text-align: center; padding: 44px 24px;
  border-left: 1px solid rgba(180,191,200,0.12);
  position: relative;
}
.stat:last-child { border-left: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,3.5vw,3rem);
  font-weight: 900;
  color: var(--brand-light); line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl { font-size: .84rem; color: var(--text-muted); font-weight: 600; }

/* ════════════════════════════════════════
   SECTION UTILITIES
════════════════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--steel); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--cream); margin-bottom: 18px;
}
.section-title .accent { color: var(--brand-light); }
.section-text { color: var(--text-muted); font-size: .97rem; line-height: 1.85; margin-bottom: 28px; }

/* ════════════════════════════════════════
   CONTACT SECTION — SLATE/GRAY
════════════════════════════════════════ */
.contact-section {
  background: var(--slate);
  border-bottom: 1px solid var(--border);
  padding: 90px 60px;
}
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: start;
}
.emergency-box {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-right: 3px solid var(--brand);
  border-radius: 3px;
  padding: 26px;
  margin-top: 32px;
}
.emergency-box strong { color: var(--steel-light); display: block; font-size: .85rem; letter-spacing: .05em; margin-bottom: 8px; }
.emergency-box a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700;
  letter-spacing: .04em;
}
.emergency-box a:hover { color: var(--brand); }

/* contact form */
.cf-wrap {
  background: var(--card);
  border: 1px solid var(--border-blue);
  border-radius: 4px;
  padding: 44px;
}
.cf-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 700;
  color: var(--cream); margin-bottom: 6px;
}
.cf-wrap > p { color: var(--text-muted); font-size: .86rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; padding: 12px 16px;
  color: var(--cream); font-family: var(--font-body);
  font-size: .93rem; direction: rtl; width: 100%;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--brand); }
.form-group textarea { min-height: 96px; resize: vertical; }
.submit-btn {
  width: 100%; background: var(--brand); color: #ffffff;
  border: 1px solid rgba(241,241,241,0.2); padding: 15px;
  font-family: var(--font-body); font-size: .97rem; font-weight: 700;
  border-radius: 2px; cursor: pointer; letter-spacing: .05em;
  transition: all .2s; margin-top: 6px;
}
.submit-btn:hover { background: var(--brand-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,82,120,0.45); border-color: rgba(241,241,241,0.35); }

/* ════════════════════════════════════════
   ABOUT — DARK NAVY
════════════════════════════════════════ */
.about-section {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; border-radius: 2px;
  filter: grayscale(15%); display: block;
}
.about-img-wrap::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--brand-dark); border-radius: 2px; opacity: .5;
}
.about-img-wrap::after {
  content: '';
  position: absolute; bottom: -20px; left: -20px;
  width: 50%; height: 50%;
  background: var(--blue-glow); border-radius: 2px;
}
.about-list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 13px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; color: var(--cream); }
.about-list li::before { content: '◆'; color: var(--steel); font-size: .5rem; margin-top: 8px; flex-shrink: 0; }

/* ════════════════════════════════════════
   SERVICES — INK (darkest)
════════════════════════════════════════ */
.services-section {
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.services-header {
  max-width: 1200px; margin: 0 auto 56px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.svc-card {
  background: var(--gray-800);
  border: 1px solid transparent;
  padding: 38px 30px;
  position: relative; overflow: hidden;
  transition: all .3s;
}
.svc-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: var(--slate-mid);
}
.svc-card:hover::after { opacity: 1; }
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0; left: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--light2), transparent);
  opacity: 0; transition: opacity .3s;
}
.svc-icon { font-size: 1.9rem; margin-bottom: 20px; display: block; }
.svc-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--cream); margin-bottom: 12px;
}
.svc-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.72; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: .8rem; font-weight: 700;
  color: var(--brand-light); text-decoration: none; letter-spacing: .04em;
}
.svc-link::after { content: '←'; }
.svc-link:hover { color: var(--brand-light); }

/* ════════════════════════════════════════
   PROCESS — SLATE-MID
════════════════════════════════════════ */
.process-section {
  background: var(--slate-mid);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.process-center { max-width: 1200px; margin: 0 auto; }
.process-head { text-align: center; margin-bottom: 60px; }
.steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px; right: 8%; left: 8%; height: 1px;
  background: linear-gradient(to left, transparent, var(--brand-dark), transparent);
  opacity: .35;
}
.step { text-align: center; padding: 0 14px; position: relative; }
.step-n {
  width: 54px; height: 54px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--brand-light); position: relative; z-index: 1;
}
.step-title { font-weight: 700; font-size: .92rem; color: var(--cream); margin-bottom: 8px; }
.step-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════
   TESTIMONIALS — NAVY-MID
════════════════════════════════════════ */
.testimonials-section {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.testi-header { max-width: 1200px; margin: 0 auto 56px; }
.testi-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.testi-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 36px;
  position: relative; transition: transform .3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card::before {
  content: '"';
  position: absolute; top: -8px; right: 22px;
  font-family: var(--font-display);
  font-size: 4.5rem; color: var(--brand-light); opacity: .25; line-height: 1;
}
.stars { color: var(--brand-light); font-size: .82rem; margin-bottom: 14px; letter-spacing: 3px; }
.testi-text { font-size: .9rem; color: var(--cream); line-height: 1.82; margin-bottom: 22px; font-style: italic; }
.testi-author { font-weight: 700; font-size: .86rem; color: var(--brand-light); }
.testi-role { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }

/* ════════════════════════════════════════
   FAQ — GRAY-800
════════════════════════════════════════ */
.faq-section {
  background: var(--gray-800);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.faq-inner { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: right; padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: .98rem; font-weight: 700;
  color: var(--cream); transition: color .2s;
}
.faq-q:hover { color: var(--brand); }
.faq-ic {
  width: 24px; height: 24px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; color: var(--brand); flex-shrink: 0;
  transition: all .2s;
}
.faq-item.open .faq-ic { background: var(--brand); color: #ffffff; transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 22px; font-size: .92rem; color: var(--text-muted); line-height: 1.82; }
.faq-item.open .faq-a { display: block; }

/* ════════════════════════════════════════
   FOOTER — INK
════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 68px 60px 30px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.45rem; margin-bottom: 14px; display: block; }
.footer-brand p { color: var(--text-muted); font-size: .87rem; line-height: 1.7; margin-bottom: 22px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--steel-light); text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--text-muted);
}

/* whatsapp float */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 997;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* editable highlight */
[data-editable]:hover {
  outline: 2px dashed rgba(180,191,200,0.25);
  outline-offset: 3px;
  cursor: text;
}
body:not(.edit-mode) [data-editable]:hover { outline: none; cursor: inherit; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1100px){
  .hero{grid-template-columns:1fr;}
  .hero-image{display:none;}
  .about-grid{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .stats-inner{grid-template-columns:repeat(2,1fr);}
  .steps{grid-template-columns:repeat(2,1fr);}
  .steps::before{display:none;}
  .testi-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .top-bar{padding:0 20px;}
  nav{display:none;}
  .hero-content,.contact-section,.about-section,.services-section,
  .process-section,.testimonials-section,.faq-section,footer{padding-left:22px;padding-right:22px;}
  .services-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center;}
  .services-header{flex-direction:column;gap:16px;align-items:flex-start;}
  #admin-panel{width:100%;}
}

/* animation */
@keyframes fadeUp{from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);}}
.hero-content>*{animation:fadeUp .8s ease both;}
.eyebrow{animation-delay:.1s;}
.hero-title{animation-delay:.2s;}
.hero-sub{animation-delay:.3s;}
.badges{animation-delay:.4s;}
.hero-cta{animation-delay:.5s;}
</style>
</head>
