/* ============================================================
   SIMPLEK THEME — main stylesheet
   Hybrid dark/light · RTL Hebrew · Mobile-first
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #07090F;
  --bg-dark-2: #0E1220;
  --paper: #FFFFFF;
  --paper-soft: #F8F8F5;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --muted: #6B6B6B;
  --muted-dark: #8A93AB;
  --line-dark: #1F2940;
  --line-light: #E8E6E0;
  --blue: #2E6BFF;
  --blue-bright: #4F8FFF;
  --warm: #FF6B1A;
  --warm-soft: #FFB084;
  --green: #14F195;
  --red: #FF3B47;
  --max: 1400px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-warm: 0 12px 40px rgba(255,107,26,0.35);
  --shadow-blue: 0 12px 40px rgba(46,107,255,0.3);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html, body {
  background: var(--bg-dark);
  color: var(--paper);
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   TOP NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 9999;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(7,9,15,0.78);
  border-bottom: 1px solid var(--line-dark);
  transition: all .3s var(--ease);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 18px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { width: 44px; height: 44px; border-radius: 10px; }
.site-logo-text { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; color: var(--paper); }
.primary-nav ul {
  display: flex; gap: 36px; list-style: none;
  font-size: 15px; font-weight: 500;
}
.primary-nav a { color: var(--muted-dark); transition: color .2s; }
.primary-nav a:hover, .primary-nav .current-menu-item a { color: var(--paper); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  color: var(--paper); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.nav-phone::before { content: '📞'; font-size: 16px; }
.nav-cta {
  background: var(--warm); color: var(--paper);
  font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(255,107,26,0.3);
  transition: transform .2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); }
.menu-toggle-check { display: none !important; position: absolute; }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--paper);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 36px 100px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(46,107,255,0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,107,26,0.12), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
}
.hero-top {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 100px;
  background: rgba(46,107,255,0.12);
  border: 1px solid rgba(46,107,255,0.3);
  color: var(--blue-bright);
  font-size: 13px; font-weight: 600;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

.hero-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.95; letter-spacing: -3px;
  color: var(--paper);
}
.hero-title .light {
  font-weight: 200; color: var(--muted-dark);
  display: block; font-size: 0.5em; margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--warm-soft) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-right { padding-bottom: 16px; }
.hero-sub {
  font-size: 19px; color: var(--muted-dark);
  margin-bottom: 36px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  padding: 18px 32px; border-radius: 12px;
  transition: transform .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--warm); color: var(--paper);
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-dark);
  color: var(--paper);
  padding: 17px 30px;
  backdrop-filter: blur(10px);
}
.btn-dark {
  background: var(--ink); color: var(--paper);
  padding: 16px 30px;
}
.btn-outline-dark {
  border: 2px solid var(--ink) !important;
  color: var(--ink) !important;
  background: transparent !important;
  padding: 14.5px 28px;
  font-weight: 700;
}
.btn-outline-dark:hover {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 32px 0;
}
.hstat { text-align: center; border-left: 1px solid var(--line-dark); padding: 0 24px; }
.hstat:last-child { border-left: 0; }
.hstat-num {
  font-size: 44px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--warm-soft));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hstat-num {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.hstat-unit {
  font-size: 18px; font-weight: 700;
  color: var(--muted-dark);
  -webkit-text-fill-color: var(--muted-dark);
  background: none;
}
.hstat-label { font-size: 13px; color: var(--muted-dark); margin-top: 8px; font-weight: 500; line-height: 1.4; }
.hstat-sub { display: block; font-size: 11px; opacity: 0.7; margin-top: 4px; font-weight: 400; }

/* ============================================================
   SERVICES SECTION (light)
   ============================================================ */
.services {
  background: var(--paper);
  color: var(--ink);
  padding: 140px 36px;
}
.section-header {
  max-width: var(--max); margin: 0 auto 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}
.eyebrow-light {
  color: var(--blue); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px;
}
.eyebrow-dark {
  color: var(--blue-bright); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  color: var(--ink);
}
.section-title strong { color: var(--blue); }
.section-title.on-dark { color: var(--paper); }
.section-title.on-dark strong {
  background: linear-gradient(135deg, var(--blue-bright), var(--warm-soft));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  padding-bottom: 8px;
}

.services-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--paper-soft);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.service-card:hover {
  background: var(--paper);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(46,107,255,0.12);
}
.service-icon {
  width: 80px; height: 80px; border-radius: 22px;
  background: linear-gradient(135deg, #EEF2FF 0%, #FFF5EC 100%);
  border: 1px solid rgba(46,107,255,0.15);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  transition: all .4s var(--ease);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 12px 32px rgba(46,107,255,0.08),
    0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.service-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 50%);
  pointer-events: none;
}
.service-icon svg {
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue) 0%, var(--warm) 100%);
  border-color: transparent;
  color: var(--paper);
  transform: scale(1.06) rotate(-3deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 20px 40px rgba(46,107,255,0.35),
    0 4px 12px rgba(255,107,26,0.2);
}
.service-card:hover .service-icon svg {
  transform: scale(1.1);
}
.service-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; color: var(--ink); }
.service-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.service-link {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 700; font-size: 14px;
}
.service-link::after { content: '←'; transition: transform .2s; }
.service-link:hover::after { transform: translateX(-4px); }

/* ============================================================
   PORTFOLIO (dark)
   ============================================================ */
.portfolio {
  background: var(--bg-dark);
  color: var(--paper);
  padding: 140px 36px;
  position: relative; overflow: hidden;
}
.portfolio::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(46,107,255,0.12), transparent 60%);
  pointer-events: none;
}
.portfolio-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.portfolio-header { text-align: center; margin-bottom: 80px; }
.portfolio-header .eyebrow-dark { color: var(--warm-soft); }

.pf-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 20px;
}
.pf-item {
  background: var(--bg-dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: all .3s var(--ease);
  display: block;
}
.pf-item:hover { border-color: var(--blue); transform: translateY(-4px); }
.pf-item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.pf-item-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease);
}
.pf-item:hover .pf-item-bg { transform: scale(1.05); }
.pf-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,9,15,0.95) 0%, rgba(7,9,15,0.4) 50%, transparent 100%);
  pointer-events: none;
}
.pf-tag {
  position: absolute; top: 24px; right: 24px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  color: var(--paper); font-size: 12px; font-weight: 600;
  z-index: 2;
}
.pf-content {
  position: absolute; bottom: 28px; right: 28px; left: 28px;
  z-index: 2;
}
.pf-content h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--paper); }
.pf-item:nth-child(1) .pf-content h3 { font-size: 32px; }
.pf-content p { font-size: 13px; color: var(--muted-dark); }

/* ============================================================
   TESTIMONIALS (live Google reviews — dark)
   ============================================================ */
.testimonials {
  background: var(--bg-dark-2);
  color: var(--paper);
  padding: 140px 36px;
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(46,107,255,0.10), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,107,26,0.08), transparent 50%);
  pointer-events: none;
}
.testimonials-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.testimonials-header {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 60px;
}
.tst-rating-card {
  background: var(--bg-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex; align-items: center; gap: 24px;
}
.tst-rating-num {
  font-size: 64px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #FFD700, #FF6B1A);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tst-rating-stars {
  font-size: 22px; color: #FFD700; letter-spacing: 2px;
  margin-bottom: 6px;
}
.tst-rating-text { font-size: 14px; color: var(--muted-dark); }
.tst-rating-text strong { color: var(--paper); font-weight: 700; }
.tst-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  color: var(--green); margin-top: 6px; letter-spacing: 1px;
}
.tst-live-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.tst-card {
  background: var(--bg-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: all .3s var(--ease);
  min-height: 260px;
}
.tst-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.tst-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tst-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--warm));
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-weight: 800; font-size: 16px;
  flex-shrink: 0; overflow: hidden;
}
.tst-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tst-author { font-size: 14px; font-weight: 700; color: var(--paper); }
.tst-time { font-size: 12px; color: var(--muted-dark); margin-top: 2px; }
.tst-stars { color: #FFD700; font-size: 14px; margin-bottom: 12px; letter-spacing: 1px; }
.tst-text {
  font-size: 14px; color: var(--muted-dark); line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tst-google-link {
  margin-top: auto; padding-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--blue-bright); font-weight: 600;
}
/* ─── Slider wrapper (replaces static grid on mobile) ──────── */
.tst-slider-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* ─── Read More button ────────────────────────────────────── */
.tst-read-more-btn {
  display: inline;
  background: none;
  border: none;
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-right: 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.tst-read-more-btn:hover { color: var(--paper); }
.tst-text-full { display: none; }
.tst-text-full.is-visible { display: block; }

/* ─── Static badge (when showing cached data) ────────────── */
.tst-static-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: var(--muted-dark); margin-top: 6px; letter-spacing: 0.5px;
}

/* ─── Slider navigation dots ─────────────────────────────── */
.tst-slider-nav {
  display: none; /* shown only on mobile via JS */
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.tst-slider-nav button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-dark);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.tst-slider-nav button.active {
  background: var(--blue-bright);
  transform: scale(1.3);
}

/* ─── "All reviews" CTA (scoped to dark testimonials section only) ──── */
.tst-all-reviews {
  text-align: center;
  margin-top: 48px;
}
.testimonials .btn-outline-on-dark,
.tst-all-reviews .btn-outline-on-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  border: 2px solid var(--line-dark);
  color: var(--paper); font-weight: 700; font-size: 15px;
  transition: all .25s var(--ease);
  background: transparent;
}
.testimonials .btn-outline-on-dark:hover,
.tst-all-reviews .btn-outline-on-dark:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  transform: translateY(-2px);
}

/* ─── Empty state ─────────────────────────────────────────── */
.tst-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted-dark);
}
.tst-empty-icon {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 16px;
  opacity: 0.5;
}
.tst-empty-state p {
  font-size: 16px;
  margin-bottom: 24px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .tst-slider-wrapper { grid-template-columns: repeat(2, 1fr); }
  .testimonials-header { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .testimonials { padding: 80px 20px; }
  .tst-slider-wrapper {
    /* On mobile: horizontal scroll snap */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 12px;
    scrollbar-width: none; /* Firefox */
  }
  .tst-slider-wrapper::-webkit-scrollbar { display: none; }
  .tst-slider-wrapper .tst-card {
    flex: 0 0 85vw;
    max-width: 340px;
    scroll-snap-align: start;
  }
  .tst-slider-nav { display: flex; }
}

/* ============================================================
   FOUNDER (light)
   ============================================================ */
.founder {
  background: var(--paper-soft);
  color: var(--ink);
  padding: 140px 36px;
}
.founder-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}
.portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #1a1a1a, #060606);
  border-radius: 8px;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait::before {
  content: 'KZ'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.06); font-size: 180px; font-weight: 900;
  letter-spacing: -8px;
  z-index: 0;
}
.portrait::after {
  content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 50%;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  z-index: 1;
}
.portrait-tag {
  position: absolute; bottom: 28px; right: 28px;
  color: white; z-index: 2;
}
.portrait-tag strong { display: block; font-size: 24px; font-weight: 900; margin-bottom: 4px; }
.portrait-tag span { font-size: 13px; color: var(--muted-dark); }
.founder-text h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: 28px;
  color: var(--ink);
}
.founder-text h2 .blue { color: var(--blue); }
.founder-text p {
  font-size: 17px; color: var(--muted);
  margin-bottom: 20px; line-height: 1.7;
}
.founder-cta {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ============================================================
   FINAL CTA STRIP (dark)
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
  color: var(--paper);
  padding: 100px 36px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,107,26,0.15), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(46,107,255,0.15), transparent 50%);
}
.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-strip h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.cta-strip p {
  font-size: 18px; color: var(--muted-dark);
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-hero {
  position: relative;
  min-height: 70vh;
  padding: 160px 36px 100px;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--paper);
}
.service-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.service-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,9,15,0.7) 0%, rgba(7,9,15,0.95) 100%),
    radial-gradient(circle at 70% 30%, rgba(46,107,255,0.3), transparent 60%);
}
.service-hero-inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.service-h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05; letter-spacing: -2px;
  margin: 24px 0 28px;
  color: var(--paper);
}
.service-intro {
  font-size: 18px; line-height: 1.7;
  color: var(--muted-dark);
  max-width: 720px; margin: 0 auto 36px;
}
.service-hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.service-price-tag {
  display: inline-block;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.4);
  color: var(--warm-soft);
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 700;
}

.service-benefits {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 36px;
}
.benefits-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--paper-soft);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all .3s var(--ease);
}
.benefit-card:hover {
  background: var(--paper);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(46,107,255,0.12);
}
.benefit-num {
  font-size: 14px; font-weight: 800;
  color: var(--blue); letter-spacing: 1px;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 22px; font-weight: 800;
  margin-bottom: 12px; color: var(--ink);
}
.benefit-card p {
  font-size: 15px; color: var(--muted); line-height: 1.6;
}

.service-process {
  background: var(--bg-dark);
  color: var(--paper);
  padding: 140px 36px;
  position: relative; overflow: hidden;
}
.service-process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(46,107,255,0.12), transparent 60%);
}
.process-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-step {
  background: var(--bg-dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all .3s var(--ease);
}
.process-step:hover { border-color: var(--blue); transform: translateY(-4px); }
.step-num {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--warm));
  color: var(--paper); font-weight: 900; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.process-step h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--paper); }
.process-step p { font-size: 14px; color: var(--muted-dark); line-height: 1.6; }

.service-package {
  background: var(--paper-soft);
  color: var(--ink);
  padding: 140px 36px;
}
.package-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.package-text h2 { color: var(--ink); }
.package-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}
.package-list li {
  font-size: 16px; color: var(--ink);
  display: flex; align-items: start; gap: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-light);
}
.package-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.package-check {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
}

.service-faq {
  background: var(--bg-dark);
  color: var(--paper);
  padding: 140px 36px;
}
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 24px 28px;
  font-size: 17px; font-weight: 700;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px; color: var(--blue-bright);
  font-weight: 300;
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px; line-height: 1.7;
  color: var(--muted-dark);
}

.service-related {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 36px;
}
.related-inner { max-width: var(--max); margin: 0 auto; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.related-card {
  background: var(--paper-soft);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.related-card:hover {
  background: var(--paper);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(46,107,255,0.12);
}
.related-card .service-icon {
  margin: 0 auto 24px;
  align-self: center;
}
.related-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue) 0%, var(--warm) 100%);
  border-color: transparent;
  color: var(--paper);
  transform: scale(1.06) rotate(-3deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 20px 40px rgba(46,107,255,0.35),
    0 4px 12px rgba(255,107,26,0.2);
}
.related-card:hover .service-icon svg {
  transform: scale(1.1);
}
.related-card h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }

@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .package-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .service-hero { padding: 130px 20px 70px; min-height: 60vh; }
  .service-benefits, .service-process, .service-package, .service-faq, .service-related { padding: 80px 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .package-list { padding: 28px 24px; }
}

/* ============================================================
   ACCESSIBILITY WIDGET (תפריט נגישות)
   ============================================================ */
.a11y-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9990;
  font-family: 'Heebo', system-ui, sans-serif;
}
.a11y-toggle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #2E6BFF;
  color: white;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(46,107,255,0.4);
  transition: transform .2s, box-shadow .2s;
}
.a11y-toggle:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(46,107,255,0.6); }
.a11y-toggle:focus-visible { outline: 3px solid #FFD700; outline-offset: 3px; }

.a11y-panel {
  position: absolute;
  bottom: 70px; left: 0;
  width: 320px;
  background: white;
  color: #0A0A0A;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  padding: 20px;
  direction: rtl;
}
.a11y-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid #E8E6E0;
}
.a11y-panel-header h3 { font-size: 18px; font-weight: 800; margin: 0; }
.a11y-close {
  width: 32px; height: 32px;
  border: none; background: #F8F8F5;
  border-radius: 8px;
  font-size: 24px; line-height: 1;
  cursor: pointer; color: #0A0A0A;
}
.a11y-close:hover { background: #E8E6E0; }
.a11y-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.a11y-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  background: #F8F8F5;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  color: #0A0A0A;
  text-align: center;
  font-family: inherit;
  min-height: 64px;
  transition: all .2s;
}
.a11y-btn:hover { background: #E8E6E0; border-color: #2E6BFF; }
.a11y-btn:focus-visible { outline: 3px solid #2E6BFF; outline-offset: 2px; }
.a11y-btn.is-active { background: #2E6BFF; color: white; border-color: #2E6BFF; }
.a11y-btn .a11y-icon { font-size: 18px; font-weight: 800; }
.a11y-reset { grid-column: 1 / -1; background: #FFE8DC; color: #FF6B1A; }
.a11y-reset:hover { background: #FF6B1A; color: white; }
.a11y-statement-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #2E6BFF;
  text-decoration: none;
  font-weight: 600;
  padding: 8px;
}
.a11y-statement-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .a11y-widget { bottom: 16px; left: 16px; }
  .a11y-panel { width: calc(100vw - 32px); max-width: 320px; }
}

/* ─── Accessibility class effects ─────────────────────────── */
.a11y-readable-font, .a11y-readable-font * {
  font-family: Arial, sans-serif !important;
  letter-spacing: 0.05em !important;
  line-height: 1.7 !important;
}
.a11y-high-contrast {
  filter: contrast(1.5);
}
.a11y-negative-contrast {
  filter: invert(1) hue-rotate(180deg);
}
.a11y-negative-contrast img,
.a11y-negative-contrast video,
.a11y-negative-contrast iframe {
  filter: invert(1) hue-rotate(180deg);
}
.a11y-grayscale {
  filter: grayscale(1);
}
.a11y-highlight-links a {
  outline: 2px solid #FFD700 !important;
  outline-offset: 2px !important;
  background: rgba(255,215,0,0.15) !important;
}
.a11y-highlight-headings h1,
.a11y-highlight-headings h2,
.a11y-highlight-headings h3,
.a11y-highlight-headings h4,
.a11y-highlight-headings h5,
.a11y-highlight-headings h6 {
  outline: 2px dashed #2E6BFF !important;
  outline-offset: 4px !important;
  background: rgba(46,107,255,0.08) !important;
}
.a11y-no-animation, .a11y-no-animation *,
.a11y-no-animation *::before, .a11y-no-animation *::after {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}
.a11y-cursor-large, .a11y-cursor-large * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><polygon points="0,0 0,30 8,22 14,38 18,36 12,20 22,20" fill="white" stroke="black" stroke-width="2"/></svg>'), auto !important;
}

/* Skip link (for keyboard users) */
.skip-link {
  position: absolute;
  top: -100px;
  right: 20px;
  padding: 12px 24px;
  background: #FF6B1A;
  color: white;
  font-weight: 700;
  border-radius: 8px;
  z-index: 99999;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 20px;
}

/* Focus states for keyboard navigation */
*:focus-visible {
  outline: 3px solid #2E6BFF !important;
  outline-offset: 2px !important;
}

/* ============================================================
   VIDEO LINK STRIP (on service pages)
   ============================================================ */
.video-link-strip {
  background: linear-gradient(135deg, #0E1220, #1a1f36);
  color: var(--paper);
  padding: 80px 36px;
  position: relative;
  overflow: hidden;
}
.video-link-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,107,26,0.15), transparent 50%);
}
.video-link-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.video-link-icon {
  font-size: 56px;
  text-align: center;
}
.video-link-text h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--paper);
}
.video-link-text p {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .video-link-strip { padding: 60px 20px; }
  .video-link-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .video-link-text h3 { font-size: 22px; }
}

/* ============================================================
   TESTIMONIALS VIDEOS PAGE
   ============================================================ */
.testimonials-section-light,
.testimonials-section-dark {
  padding: 120px 36px;
}
.testimonials-section-light {
  background: var(--paper);
  color: var(--ink);
}
.testimonials-section-dark {
  background: var(--bg-dark);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.testimonials-section-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(46,107,255,0.12), transparent 60%);
  pointer-events: none;
}
.testimonials-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.video-card {
  background: var(--paper-soft);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.testimonials-section-dark .video-card {
  background: var(--bg-dark-2);
  border-color: var(--line-dark);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(46,107,255,0.15);
  border-color: var(--blue);
}
.video-wrapper {
  aspect-ratio: 16 / 10;
  background: #0a0d1a;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}
.video-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1a1f36, #0a0d1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  gap: 16px;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(46,107,255,0.15), transparent 60%);
}
.video-play-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.video-placeholder-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.video-card-body {
  padding: 28px 28px 32px;
}
.video-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.testimonials-section-dark .video-card h3 { color: var(--paper); }
.video-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.testimonials-section-dark .video-card p { color: var(--muted-dark); }

.service-link.on-dark { color: var(--blue-bright); }

@media (max-width: 1100px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .testimonials-section-light,
  .testimonials-section-dark { padding: 80px 20px; }
  .video-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS UNIFIED — Premium Cinematic Redesign
   ============================================================ */

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip {
  position: relative;
  background: #07090F;
  padding: 0 36px;
  overflow: hidden;
}
.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(46,107,255,0.06) 30%,
    rgba(255,107,26,0.04) 70%,
    transparent 100%);
  pointer-events: none;
}
.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 36px 48px;
  position: relative;
  flex: 1;
  max-width: 220px;
}
.trust-strip-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(46,107,255,0.3) 30%, rgba(46,107,255,0.3) 70%, transparent);
  align-self: stretch;
  flex-shrink: 0;
}
.trust-strip-num {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -2px;
  line-height: 1;
  font-feature-settings: 'tnum';
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-strip-num--star {
  background: linear-gradient(135deg, #FFD700 0%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-strip-num--star::before {
  content: '★ ';
  font-size: 0.75em;
}
.trust-strip-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Testimonials Showcase ───────────────────────────────── */
.testi-showcase {
  position: relative;
  background: var(--bg-dark);
  padding: 100px 36px 120px;
  overflow: hidden;
}
.testi-showcase-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(46,107,255,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.testi-showcase-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testi-showcase-header {
  text-align: center;
  margin-bottom: 72px;
}

/* ── Video Grid ──────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── Video Card ──────────────────────────────────────────── */
.testi-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14,18,32,0.95) 0%, rgba(7,9,15,0.98) 100%);
  border: 1px solid rgba(46,107,255,0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow  0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.04) 0%,
    transparent 50%,
    rgba(46,107,255,0.03) 100%);
  pointer-events: none;
  z-index: 1;
}
.testi-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46,107,255,0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: 0;
}
.testi-card:hover .testi-card-glow {
  opacity: 1;
}
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.5),
    0 32px 64px rgba(46,107,255,0.18),
    0 0 0 1px rgba(46,107,255,0.35) inset;
  border-color: rgba(46,107,255,0.45);
}
.testi-card--featured {
  border-color: rgba(255,107,26,0.25);
}
.testi-card--featured:hover {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.5),
    0 32px 64px rgba(255,107,26,0.15),
    0 0 0 1px rgba(255,107,26,0.4) inset;
  border-color: rgba(255,107,26,0.5);
}
.testi-card--featured .testi-card-glow {
  background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 70%);
}

/* ── Video Frame ─────────────────────────────────────────── */
.testi-video-frame {
  position: relative;
  background: #000;
  overflow: hidden;
}
.testi-video-frame .video-wrapper {
  aspect-ratio: 16 / 9;
  margin: 0;
}
.testi-video-frame .video-wrapper::after {
  content: none;
}
.testi-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Thin accent line below video */
.testi-video-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(46,107,255,0.6), transparent);
}
.testi-card--featured .testi-video-frame::after {
  background: linear-gradient(90deg, transparent, rgba(255,107,26,0.6), transparent);
}

/* ── Card Body ───────────────────────────────────────────── */
.testi-card-body {
  padding: 24px 28px 28px;
  position: relative;
  z-index: 2;
}
.testi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.testi-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #e0e6f0;
  background: linear-gradient(135deg, rgba(46,107,255,0.15), rgba(46,107,255,0.05));
  border: 1px solid rgba(46,107,255,0.25);
  padding: 5px 14px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.testi-tag::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), transparent);
  border-radius: 2px 0 0 2px;
}
.testi-card:hover .testi-tag {
  background: linear-gradient(135deg, rgba(46,107,255,0.25), rgba(46,107,255,0.1));
  border-color: rgba(46,107,255,0.4);
  color: #fff;
}
.testi-card--featured .testi-tag {
  color: #ffd6b8;
  background: linear-gradient(135deg, rgba(255,107,26,0.15), rgba(255,107,26,0.05));
  border-color: rgba(255,107,26,0.25);
}
.testi-card--featured .testi-tag::before {
  background: linear-gradient(180deg, #FF6B1A, transparent);
}
.testi-card--featured:hover .testi-tag {
  background: linear-gradient(135deg, rgba(255,107,26,0.25), rgba(255,107,26,0.1));
  border-color: rgba(255,107,26,0.4);
  color: #fff;
}
.testi-name {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.testi-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Coming Soon ─────────────────────────────────────────── */
.testi-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 52px;
  padding: 22px 36px;
  border: 1px dashed rgba(46,107,255,0.2);
  border-radius: 14px;
  background: rgba(46,107,255,0.03);
}
.testi-coming-icon {
  font-size: 22px;
}
.testi-coming-soon p {
  color: rgba(255,255,255,0.4);
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

/* ── Founder Quote ───────────────────────────────────────── */
.founder-quote {
  position: relative;
  background: #0E1220;
  padding: 100px 36px;
  text-align: center;
  overflow: hidden;
}
.founder-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(46,107,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(255,107,26,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.founder-quote-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.founder-quote-mark {
  font-size: 120px;
  line-height: 0.6;
  font-weight: 900;
  color: rgba(46,107,255,0.18);
  font-family: Georgia, serif;
  margin-bottom: 24px;
  display: block;
  user-select: none;
}
.founder-quote-text {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.45;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}
.founder-quote-cite {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-strip-item { padding: 28px 24px; max-width: none; }
}
@media (max-width: 700px) {
  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .trust-strip-divider { display: none; }
  .trust-strip-item {
    padding: 24px 16px;
    border-bottom: 1px solid rgba(46,107,255,0.1);
  }
  .trust-strip-item:nth-child(odd) { border-right: 1px solid rgba(46,107,255,0.1); }
  .trust-strip-num { font-size: 32px; }
  .testi-showcase { padding: 70px 20px 90px; }
  .testi-card-body { padding: 20px; }
  .testi-name { font-size: 20px; }
  .testi-desc { font-size: 15px; }
  .founder-quote { padding: 70px 24px; }
  .founder-quote-mark { font-size: 80px; }
}

/* ============================================================
   PROJECTS GALLERY
   ============================================================ */
.projects-gallery {
  background: var(--bg-dark);
  color: var(--paper);
  padding: 80px 24px 120px;
  position: relative;
}
.gallery-inner { max-width: 1600px; margin: 0 auto; }
.gallery-grid {
  column-count: 4;
  column-gap: 16px;
}
.gallery-item {
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-dark-2);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(46,107,255,0.2);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(46,107,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 1100px) { .gallery-grid { column-count: 3; } }
@media (max-width: 700px)  { .gallery-grid { column-count: 2; column-gap: 10px; } .gallery-item { margin-bottom: 10px; border-radius: 10px; } }
@media (max-width: 400px)  { .gallery-grid { column-count: 1; } }

/* ─── Lightbox ──────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7,9,15,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  backdrop-filter: blur(20px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--blue);
  border: 3px solid rgba(255,255,255,0.95);
  color: white;
  width: 68px; height: 68px;
  border-radius: 50%;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 4px rgba(46,107,255,0.3);
  z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--warm);
  transform: scale(1.12);
  box-shadow: 0 16px 50px rgba(0,0,0,0.7), 0 0 0 6px rgba(255,107,26,0.4);
}
.lightbox-close {
  top: 24px; left: 24px;
  font-size: 44px;
  background: rgba(255,59,71,0.9);
  border-color: white;
}
.lightbox-close:hover { background: #FF3B47; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.12); }
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { width: 58px; height: 58px; font-size: 34px; }
  .lightbox-close { width: 52px; height: 52px; font-size: 36px; top: 16px; left: 16px; }
  .lightbox-prev { left: 14px; }
  .lightbox-next { right: 14px; }
}
.lightbox-caption {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 24px; }
  .lightbox-close { width: 44px; height: 44px; font-size: 28px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 36px;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}
.contact-form-wrap h2,
.contact-info h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.form-row label span { color: var(--warm); }
.form-row input,
.form-row select,
.form-row textarea {
  padding: 14px 18px;
  border: 2px solid var(--line-light);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: var(--paper-soft);
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--paper);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.contact-submit {
  align-self: start;
  margin-top: 8px;
}
.contact-success {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border: 2px solid #4CAF50;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.contact-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #4CAF50;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  font-weight: 900;
}
.contact-success h3 {
  font-size: 24px;
  color: #1B5E20;
  margin-bottom: 12px;
}
.contact-success p { color: #2E7D32; line-height: 1.7; }
.contact-error {
  background: #FFEBEE;
  border: 2px solid #EF5350;
  color: #C62828;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Info sidebar */
.contact-info {
  background: var(--paper-soft);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--line-light);
}
.contact-info h2 { font-size: 28px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-bottom: 12px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: all .2s var(--ease);
}
.contact-method:hover {
  transform: translateX(-4px);
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(46,107,255,0.1);
}
.contact-method-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}
.contact-method strong { display: block; font-size: 15px; font-weight: 800; color: var(--ink); }
.contact-method span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

.contact-hours,
.contact-area {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}
.contact-hours h3,
.contact-area h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ink);
}
.contact-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink);
}
.contact-hours li span:last-child { color: var(--muted); font-weight: 600; }
.contact-area p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .contact-section { padding: 80px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { padding: 32px 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: var(--paper);
  padding: 80px 36px 30px;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  margin-bottom: 60px;
}
.footer-col h4 { font-size: 14px; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; color: var(--paper); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted-dark); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--paper); }
.footer-brand p { color: var(--muted-dark); font-size: 14px; line-height: 1.7; max-width: 360px; margin-top: 16px; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--muted-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-top { gap: 60px; }
  .nav-inner { padding: 16px 24px; }
}

@media (max-width: 900px) {
  .nav-phone { display: none; }
  .menu-toggle { display: flex !important; }

  /* Full-screen mobile menu (top:0 to avoid iOS Safari offset bugs) */
  header.site-header nav.primary-nav {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #07090F !important;
    padding: 90px 0 20px 0 !important;
    margin: 0 !important;
    z-index: 9998 !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform .3s ease-out !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  /* OPEN state — via checkbox OR is-open class */
  .menu-toggle-check:checked ~ .nav-inner nav.primary-nav,
  header.site-header nav.primary-nav.is-open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  /* List container */
  header.site-header nav.primary-nav ul.primary-menu {
    display: block !important;
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  header.site-header nav.primary-nav ul.primary-menu li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid #1F2940 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  header.site-header nav.primary-nav ul.primary-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 22px 32px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    background: transparent !important;
    line-height: 1.4 !important;
  }
  header.site-header nav.primary-nav ul.primary-menu li a:active {
    background: rgba(46,107,255,0.2) !important;
  }
  /* Animated hamburger → X */
  .menu-toggle-check:checked ~ .nav-inner .menu-toggle .menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle-check:checked ~ .nav-inner .menu-toggle .menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle-check:checked ~ .nav-inner .menu-toggle .menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 130px 20px 60px; }
  .hero-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 50px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px 0; padding: 24px 0; }
  .hstat { padding: 12px 16px; }
  .hstat:nth-child(2) { border-left: 0; }
  .hstat-num { font-size: 32px; }
  .services { padding: 80px 20px; }
  .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio { padding: 80px 20px; }
  .pf-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pf-item:nth-child(1) { grid-column: 1; grid-row: auto; height: 320px; }
  .pf-item { height: 220px; }
  .founder { padding: 80px 20px; }
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-strip { padding: 70px 20px; }
  .site-footer { padding: 60px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions, .founder-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
