/* ======================================================
   GMS Events — Master Stylesheet
   gmevents.az | Baku, Azerbaijan
   Design System: Premium B2B Corporate
====================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --blue-900: #0b1120;
  --blue-800: #111c3a;
  --blue-700: #1a2744;
  --blue-600: #1e3a5f;
  --blue-500: #1d4ed8;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --blue-200: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;

  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-600: #d97706;

  --green-500: #22c55e;
  --green-400: #34d399;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --white: #ffffff;
  --black: #000000;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);

  --header-h: 64px;
  --container: 1200px;
  --radius: 12px; /* fallback for var(--radius) usage */
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scroll-padding-top: 70px; /* offset for sticky navbar */
}

/* Accessibility: keyboard focus rings */
:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove default outline for mouse users */
:focus:not(:focus-visible) { outline: none; }

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  -webkit-font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.18;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
}
h1 { letter-spacing: -0.03em; }
h2 { letter-spacing: -0.025em; }

/* ---- MULTILINGUAL TYPOGRAPHY ---- */
:lang(ru) {
  word-spacing: 0.02em;
  hyphens: auto;
  -webkit-hyphens: auto;
}
:lang(ru) h1, :lang(ru) h2, :lang(ru) h3 {
  letter-spacing: -0.015em;
  word-spacing: -0.01em;
}
:lang(az) {
  word-spacing: 0.01em;
}

/* Marketing-optimized paragraph readability */
p {
  max-width: 72ch;
  orphans: 2;
  widows: 2;
}
.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }

/* ---- BREADCRUMBS (SEO + UX) ---- */
.breadcrumb {
  padding: 12px 0;
  font-size: .82rem;
  color: var(--slate-500);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 4px; }
.breadcrumb-list li::after {
  content: '›';
  color: var(--slate-400);
  font-size: .9rem;
  margin-left: 2px;
}
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-list a:hover { color: var(--blue-400); text-decoration: underline; }
.breadcrumb-list .breadcrumb-current { color: var(--slate-600); font-weight: 500; }

/* Breadcrumb on dark hero pages */
.hero--page .breadcrumb,
.section--dark .breadcrumb { color: rgba(255,255,255,.5); }
.hero--page .breadcrumb-list li::after { color: rgba(255,255,255,.3); }
.hero--page .breadcrumb-list a { color: rgba(255,255,255,.7); }
.hero--page .breadcrumb-list a:hover { color: #fff; }
.hero--page .breadcrumb-list .breadcrumb-current { color: rgba(255,255,255,.9); }

/* ---- SEO-OPTIMIZED VENUE LIST ---- */
.venue-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.venue-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  transition: border-color .2s, box-shadow .2s;
}
.venue-item:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.venue-icon { font-size: 1.3rem; flex-shrink: 0; }
.venue-name { font-weight: 600; color: var(--slate-800); font-size: .9rem; }
.venue-type { font-size: .8rem; color: var(--slate-500); margin-top: 2px; }

/* ---- COMPARISON TABLE (SEO) ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .88rem;
}
.comparison-table thead { background: var(--blue-900); color: #fff; }
.comparison-table th { padding: 12px 16px; text-align: left; font-weight: 600; }
.comparison-table td { padding: 10px 16px; border-bottom: 1px solid var(--blue-100); }
.comparison-table tbody tr:nth-child(even) { background: var(--blue-50); }
.comparison-table .check { color: var(--green-500); font-weight: 700; }
.comparison-table .cross { color: var(--slate-400); }

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .925rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .22s ease;
  text-decoration: none;
  padding: 12px 28px;
  line-height: 1.3;
  white-space: nowrap;
}
.btn-sm { padding: 6px 14px; font-size: .78rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}
.btn-primary:hover {
  background: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,78,216,.35);
}

.btn-accent {
  background: var(--amber-500);
  color: var(--slate-900);
  border-color: var(--amber-500);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--amber-600);
  border-color: var(--amber-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.btn-whatsapp svg { flex-shrink: 0; }

.btn-outline {
  background: transparent;
  color: var(--blue-500);
  border-color: var(--blue-500);
}
.btn-outline:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,.1);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-600);
  border-color: var(--slate-200);
}
.btn-ghost:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
}

/* ======================================================
   WUF13 STRIP
====================================================== */
.wuf-strip {
  background: linear-gradient(90deg, #1e40af, var(--blue-500) 40%, #2563eb);
  color: var(--white);
  font-size: .85rem;
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 100;
}
.wuf-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wuf-strip-link {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 4px;
  transition: color .2s;
}
.wuf-strip-link:hover { color: #fde68a; }
.footer-link--highlight { color: #f59e0b !important; font-weight: 600; }
.wuf-badge {
  background: rgba(255,255,255,.15);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .03em;
}

/* ======================================================
   URGENCY BAR
====================================================== */
.urgency-bar {
  background: var(--slate-900);
  color: var(--amber-400);
  text-align: center;
  font-size: .85rem;
  padding: 10px 0;
  position: relative;
  z-index: 99;
}
.urgency-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.urgency-bar a { color: var(--blue-300); text-decoration: underline; font-weight: 600; }
.urgency-bar a:hover { color: var(--blue-200); }
.urgency-bar.hidden { display: none; }
.urgency-close {
  background: none; border: none; color: var(--amber-400);
  font-size: 1.2rem; cursor: pointer; margin-left: 8px; line-height: 1;
}

/* ======================================================
   HEADER
====================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
  will-change: transform; /* GPU composite layer — eliminates sticky jank */
  backface-visibility: hidden;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 8px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.site-logo img.logo-img,
.site-logo-img {
  width: auto;
  height: 34px !important;
  max-width: 160px !important;
  object-fit: contain;
  flex-shrink: 0;
  display: block !important;
  border-radius: 0;
  visibility: visible !important;
  opacity: 1 !important;
}
.logo-icon {
  display: none; /* hidden — replaced by SVG logo image */
}
.logo-text { display: none; }
.logo-dot { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1px;
}
.site-nav a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--blue-500); background: rgba(29,78,216,.06); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate-800);
  white-space: nowrap;
}
.header-tel:hover { color: var(--blue-500); }
.header-tel svg { flex-shrink: 0; width: 13px; height: 13px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: all .3s;
}
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 32px 32px;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: all .2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.mobile-nav .btn { margin-top: 16px; }
.mobile-nav .btn-primary { background: var(--blue-500); color: var(--white); }

/* ======================================================
   HERO SECTION
====================================================== */
.hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 40%, var(--blue-500) 100%);
  color: var(--white);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  /* Fill remaining viewport after wuf-strip (~38px) + header (56px) */
  min-height: calc(100dvh - 94px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(29,78,216,.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(99,102,241,.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-200);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.03em;
  color: var(--white);
}
.hero-title .accent { color: var(--blue-300); }
.hero-title .highlight {
  background: linear-gradient(90deg, var(--amber-500), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.trust-item svg { color: var(--green-400); flex-shrink: 0; }

/* ---- Projects Hero Motion Background ---- */
.proj-hero {
  background: none !important;
  padding: 56px 0 64px;
}
.proj-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.proj-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease;
  animation: none;
  will-change: transform, opacity;
}
.proj-hero-slide.active {
  opacity: 1;
  animation: kenBurns 10s ease-in-out forwards;
}
.proj-hero-slide.leaving {
  opacity: 0;
  transition: opacity 1.6s ease;
}
@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0px, 0px); }
  25%  { transform: scale(1.04) translate(-8px, -4px); }
  60%  { transform: scale(1.07) translate(6px, -8px); }
  100% { transform: scale(1.10) translate(-3px, 3px); }
}
.proj-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(5, 15, 35, 0.55) 0%,
      rgba(8, 25, 60, 0.45) 40%,
      rgba(5, 15, 35, 0.70) 100%
    );
}

/* ---- Home Hero — full-width centered layout ---- */
.hero--home .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero--home .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero--home .hero-text {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero--home .hero-cta {
  justify-content: center;
}
.hero--home .trust-badges {
  justify-content: center;
}

/* ---- Service Page Hero (smaller) ---- */
.hero--page {
  padding: 56px 0 64px;
}
.hero--page .hero-grid {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
}
.hero--page .hero-text {
  margin: 0 auto 32px;
  max-width: 600px;
}
.hero--page .hero-cta { justify-content: center; }

/* ======================================================
   LEAD FORM CARD
====================================================== */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  color: var(--slate-800);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.form-activity-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green-500);
  background: rgba(34,197,94,.08);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  width: fit-content;
}
.pulse-dot-sm {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
.lead-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--slate-900);
}
.lead-form-card > p {
  font-size: .88rem;
  color: var(--slate-500);
  margin-bottom: 20px;
}

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--slate-50);
  color: var(--slate-800);
  transition: all .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
  background: var(--white);
}
.form-control::placeholder { color: var(--slate-400); }
.form-control.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.form-error {
  display: block;
  font-size: .75rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 0;
  transition: all .2s;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6 6.5-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
textarea.form-control { min-height: 80px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--slate-500);
  cursor: pointer;
  margin: 8px 0 0;
  line-height: 1.4;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-500);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-label span {
  user-select: none;
}

.form-note {
  font-size: .78rem;
  color: var(--slate-400);
  text-align: center;
  margin-top: 10px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: successSlideIn .4s ease;
}
@keyframes successSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.form-success p { color: var(--slate-500); font-size: .92rem; }

/* Standalone form section */
.contact-section-form {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

/* ======================================================
   STATS BAR
====================================================== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: .85rem;
  color: var(--slate-500);
  margin-top: 6px;
  line-height: 1.4;
}

/* ======================================================
   SECTION SYSTEM
====================================================== */
.section { padding: 88px 0; }
.section--alt { background: var(--slate-50); }
.section--dark {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--slate-900) 100%);
}
.section--dark .stat-label {
  color: rgba(255,255,255,.6);
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.65;
  max-width: 640px;
}
.section-header.center .section-subtitle { margin: 0 auto; }

/* ======================================================
   SERVICES GRID
====================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1.5px solid var(--slate-200);
  transition: all .25s ease;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.service-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: .9rem;
  color: var(--slate-500);
  line-height: 1.55;
  flex: 1;
}
.service-card-link {
  display: inline-block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--blue-500);
  margin-top: 16px;
}

/* ======================================================
   WHY / BENEFITS
====================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--blue-50);
  border-radius: 12px;
}
.why-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-content p {
  font-size: .88rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.visual-panel {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  min-height: 460px;
}
.visual-panel-img {
  width: 100%; height: 100%;
  min-height: 460px;
  border-radius: var(--radius-2xl);
}
.visual-panel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  color: var(--white);
}
.visual-panel-overlay h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.visual-panel-overlay p { font-size: .88rem; color: rgba(255,255,255,.75); }

/* ======================================================
   PROJECTS GRID
====================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--slate-200);
  transition: all .25s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-img {
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
  position: relative;
}
.project-img-label {
  display: inline-block;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: .02em;
}
.project-body {
  padding: 22px 24px 26px;
}
.project-body h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.project-body p {
  font-size: .87rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* Case study card enhancements */
.case-study-card .project-body { padding: 20px 22px 24px; }
.case-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.case-client {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue-500);
  background: var(--blue-50);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.case-details { margin: 10px 0 12px; }
.case-detail {
  font-size: .82rem;
  color: var(--slate-600);
  line-height: 1.55;
  padding: 2px 0;
}
.case-detail strong {
  color: var(--slate-800);
  font-weight: 600;
}
.case-result {
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-500);
  background: rgba(34,197,94,.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  border-left: 3px solid var(--green-500);
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-tab {
  padding: 8px 20px;
  font-size: .87rem;
  font-weight: 600;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--slate-600);
  cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover { border-color: var(--blue-500); color: var(--blue-500); }
.filter-tab.active {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}

/* ======================================================
   EQUIPMENT CATALOG
====================================================== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.catalog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--slate-200);
  transition: all .25s ease;
  text-align: center;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.catalog-card-img {
  font-size: 3rem;
  padding: 32px;
  background: linear-gradient(135deg, var(--slate-900), #1e40af);
}
.catalog-card-body {
  padding: 20px 20px 24px;
}
.catalog-card-body h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.catalog-card-body p {
  font-size: .84rem;
  color: var(--slate-500);
  margin-bottom: 14px;
  line-height: 1.45;
}

/* Equipment Detail Card (catalog page) */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equip-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--slate-200);
  transition: all .25s ease;
}
.equip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.equip-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
}
.equip-card-body {
  padding: 20px 22px 24px;
}
.equip-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.equip-card-body .equip-cat {
  font-size: .78rem;
  color: var(--blue-500);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.equip-card-body p {
  font-size: .85rem;
  color: var(--slate-500);
  line-height: 1.5;
  margin-bottom: 14px;
}
.equip-card-actions {
  display: flex;
  gap: 8px;
}
.btn-add-request {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-500);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
}
.btn-add-request:hover {
  background: var(--blue-500);
  color: var(--white);
}
.btn-add-request.added {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}



/* ======================================================
   TESTIMONIALS
====================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1.5px solid var(--slate-200);
  transition: all .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars { color: var(--amber-500); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: .92rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .88rem; font-weight: 700; }
.author-info span { display: block; font-size: .78rem; color: var(--slate-400); }

/* ======================================================
   BLOG
====================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--slate-200);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15,23,42,.1);
  border-color: var(--blue-200);
}
.blog-img {
  height: 210px;
  background: linear-gradient(135deg, var(--slate-900), var(--blue-500)) center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
  position: relative;
  flex-shrink: 0;
}
/* Subtle dark gradient over photo for tag readability */
.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,18,35,.35) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 0;
}
.blog-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.25);
  position: relative;
  z-index: 1;
}
.blog-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta-row {
  margin-bottom: 10px;
}
.blog-date {
  font-size: .78rem;
  color: var(--slate-400);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.blog-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--slate-900);
  letter-spacing: -.01em;
}
.blog-card:hover .blog-body h4 {
  color: var(--blue-600);
}
.blog-body p {
  font-size: .88rem;
  color: var(--slate-500);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-500);
  margin-top: auto;
  transition: gap .2s ease, color .2s ease;
}
.blog-card:hover .blog-read-link {
  gap: 10px;
  color: var(--blue-600);
}
.blog-body .blog-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-500);
  margin-top: 12px;
}

/* ======================================================
   SERVICE PAGE SECTIONS
====================================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-visual {
  border-radius: var(--radius-2xl);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.include-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--slate-200);
}
.include-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--blue-50);
  border-radius: 10px;
}
.include-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.include-item p { font-size: .84rem; color: var(--slate-500); line-height: 1.45; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  transition: transform .3s;
  background-size: cover !important;
  background-position: center !important;
}
.gallery-item:hover { transform: scale(1.03); }

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: 50%;
  color: var(--blue-500);
  font-size: 1.1rem;
  transition: transform .3s;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: .92rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ======================================================
   FOOTER
====================================================== */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo .logo-icon { display: none; }
.footer-logo img.logo-img,
.footer-logo-img { width: auto; height: 40px; max-width: 200px; object-fit: contain; flex-shrink: 0; border-radius: 0; mix-blend-mode: screen; }
/* Footer dark bg: override blend mode so logo renders normally */
.site-footer .footer-logo img.logo-img,
.site-footer .footer-logo-img { mix-blend-mode: normal; filter: brightness(0) invert(1); }

/* Logo in dark mobile nav — use screen blend to hide white bg */
.mobile-nav .site-logo img.logo-img,
.mobile-nav .site-logo-img { mix-blend-mode: screen; }

.footer-about {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 700;
  transition: all .2s;
}
.social-btn:hover { background: var(--blue-500); color: var(--white); }
.social-btn--ig:hover { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.social-btn--wa:hover { background: #25d366; }
.social-btn--li:hover { background: #0077b5; }
.social-btn--tg:hover { background: #2ca5e0; }

/* ======================================================
   INSTAGRAM / SOCIAL FEED SECTION
====================================================== */
/* ======================================================
   LIVE FROM OUR EVENTS — Photo Grid
====================================================== */
/* ── OLD 4-col grid (kept for compat, no longer used) ── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 8px;
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 0 32px;
}
@media (max-width: 1200px) { .ig-grid { grid-auto-rows: 185px; } }
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; gap: 6px; }
  .ig-grid .ig-cell[style] { grid-column: auto !important; grid-row: auto !important; }
}
@media (max-width: 480px) { .ig-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; gap: 5px; } }

/* ── NEW compact 3-col gallery (ig-grid-v2) ── */
.ig-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 280px 280px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 0 32px;
}
/* BIG: col 1-2, row 1-2 */
.ig-grid-v2 .ig-cell--big  { grid-column: 1 / 3; grid-row: 1 / 3; }
/* TALL: col 3, row 1-2 */
.ig-grid-v2 .ig-cell--tall { grid-column: 3;     grid-row: 1 / 3; }
/* WIDE: col 1-2, row 4 */
.ig-grid-v2 .ig-cell--wide { grid-column: 1 / 3; }

/* Responsive */
@media (max-width: 900px) {
  .ig-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 200px;
  }
  .ig-grid-v2 .ig-cell--big,
  .ig-grid-v2 .ig-cell--tall,
  .ig-grid-v2 .ig-cell--wide { grid-column: auto; grid-row: auto; }
}
@media (max-width: 480px) {
  .ig-grid-v2 { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 6px; }
}

.ig-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--slate-100);
}
.ig-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.ig-cell:hover img { transform: scale(1.07); }

.ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,17,32,0) 40%, rgba(11,17,32,.78) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity .3s ease;
}
.ig-cell:hover .ig-overlay { opacity: 1; }

.ig-overlay span {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.ig-icon {
  width: 22px; height: 22px;
  margin-bottom: 6px;
  color: #fff;
  opacity: .85;
}

/* CTA bar below grid */
.ig-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: 20px 28px;
  flex-wrap: wrap;
}
.ig-cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ig-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid transparent;
  background: linear-gradient(white,white) padding-box,
              linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) border-box;
  flex-shrink: 0;
}
.ig-avatar img { width:100%; height:100%; object-fit:cover; }
.ig-handle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--slate-900);
}
.ig-stats {
  font-size: .8rem;
  color: var(--slate-500);
  margin-top: 2px;
}
.ig-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color: #fff;
  border-radius: 10px;
  font-size: .87rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
  white-space: nowrap;
}
.ig-follow-btn:hover { opacity: .9; }
.ig-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-size: .87rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.ig-wa-btn:hover { background: #22c55e; }

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul li {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--blue-300); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.footer-contact-icon { font-size: 1rem; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--blue-300); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding: 24px 0;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--blue-300); }

/* ======================================================
   OUR CLIENTS
====================================================== */
.clients-marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.clients-marquee {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.clients-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Admin clients grid card */
.client-admin-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 160px;
  height: 90px;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  cursor: default;
  transition: border-color .2s, box-shadow .2s;
  flex-shrink: 0;
  overflow: hidden;
}
.client-admin-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 16px rgba(37,99,235,.12);
}

/* Logo image — fixed box, object-fit to keep proportions */
.client-admin-card .logo-img-wrap {
  width: 120px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.client-admin-card img {
  max-width: 120px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.client-admin-card .logo-fallback-icon {
  font-size: 2rem;
  line-height: 1;
}
.client-logo-name {
  font-size: .72rem;
  font-weight: 700;
  color: #475569;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

/* Full clients grid — legacy (kept for other pages) */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  height: 80px;
  transition: box-shadow .22s, border-color .22s, transform .22s;
  overflow: visible;
}
.client-logo:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 20px rgba(37,99,235,.1);
  transform: translateY(-2px);
}
.client-logo img {
  max-width: 140px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity .2s;
}
.client-logo:hover img { opacity: 1; }
.client-logo svg {
  max-width: 160px;
  max-height: 56px;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* === CLIENTS GRID V2 — inline SVG cards === */
.clients-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  align-items: stretch;
}
@media (max-width: 900px) { .clients-grid-v2 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .clients-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
.cl-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 10px;
  min-height: 84px;
  transition: box-shadow .22s, border-color .22s, transform .22s;
}
.cl-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 20px rgba(37,99,235,.12);
  transform: translateY(-2px);
}
.cl-card svg {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  overflow: visible;
}
.client-grid-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 16px 18px;
  text-align: center;
  transition: all .22s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.client-grid-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 20px rgba(37,99,235,.1);
  transform: translateY(-2px);
}
/* Fixed logo area in grid cards too */
.client-grid-card .logo-box {
  width: 140px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.client-grid-card img {
  max-width: 140px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.client-grid-card .cgc-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.client-grid-card h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.3;
}
.client-grid-card p {
  font-size: .74rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* ======================================================
   RESPONSE TIME DISCLAIMER
====================================================== */
.response-disclaimer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 10px 0;
}
.response-disclaimer p {
  font-size: .78rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.response-disclaimer sup {
  color: #ef4444;
  font-weight: 700;
}
.response-disclaimer a {
  color: #2563eb;
  text-decoration: none;
}
.response-disclaimer a:hover { text-decoration: underline; }

/* ======================================================
   STICKY CTA
====================================================== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
/* ── Sticky floating buttons (icon-only → expand on hover) ── */
.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* collapsed: circle */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;           /* clip the text until expanded */
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  /* smooth expand */
  transition:
    width .3s cubic-bezier(.4,0,.2,1),
    border-radius .3s cubic-bezier(.4,0,.2,1),
    gap .3s cubic-bezier(.4,0,.2,1),
    padding .3s cubic-bezier(.4,0,.2,1),
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

/* icon inside every sticky button */
.sticky-btn svg,
.sticky-btn i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: none;
}

/* hidden text label */
.sticky-btn .btn-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-width .3s cubic-bezier(.4,0,.2,1),
    opacity   .25s ease,
    margin    .3s ease;
  white-space: nowrap;
}

/* ── WhatsApp button ── */
.sticky-btn--wa {
  background: #25d366;
  width: 56px;
  height: 56px;
  animation: waPulse 2.5s infinite;
}
.sticky-btn--wa svg { width: 28px; height: 28px; }

.sticky-btn--wa:hover {
  width: auto;
  min-width: 56px;
  border-radius: 28px;
  padding: 0 20px 0 14px;
  gap: 9px;
  background: #20bd5a;
  animation: none;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transform: translateY(-2px);
}
.sticky-btn--wa:hover .btn-text {
  max-width: 160px;
  opacity: 1;
}

/* ── Call button ── */
.sticky-btn--call {
  background: #2563eb;
  width: 48px;
  height: 48px;
}
.sticky-btn--call svg { width: 22px; height: 22px; }

.sticky-btn--call:hover {
  width: auto;
  min-width: 48px;
  border-radius: 24px;
  padding: 0 18px 0 13px;
  gap: 8px;
  background: #1d4ed8;
  box-shadow: 0 6px 24px rgba(37,99,235,.4);
  transform: translateY(-2px);
}
.sticky-btn--call:hover .btn-text {
  max-width: 120px;
  opacity: 1;
}

/* ── Scroll-to-top button ── */
.sticky-btn--scroll {
  background: var(--slate-700);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}
.sticky-btn--scroll:hover {
  background: var(--slate-600);
  transform: translateY(-2px);
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0);  }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}

/* ======================================================
   ANIMATIONS
====================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   RESPONSIVE
====================================================== */

/* Russian nav links are longer — shrink font + padding so phone number stays visible */
:lang(ru) .site-nav a {
  font-size: .74rem;
  padding: 5px 5px;
}
:lang(ru) .header-inner {
  gap: 4px;
}

/* Hide phone number on smaller desktop screens */
@media (max-width: 1180px) {
  .header-tel { display: none; }
  .site-nav a { padding: 5px 6px; font-size: .78rem; }
}

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 64px; }
  .hero-title { font-size: clamp(2rem, 5vw, 2.8rem); }
  .lead-form-card { max-width: 500px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .contact-section-form { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-grid.reverse { direction: ltr; }
  .includes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item { height: 180px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  /* Responsive: breadcrumbs + SEO content */
  .breadcrumb { font-size: .76rem; }
  .venue-list { grid-template-columns: 1fr; }
  .comparison-table { font-size: .8rem; }
  .comparison-table th, .comparison-table td { padding: 8px 10px; }

  .wuf-strip { font-size: .78rem; padding: 8px 0; }
  .wuf-strip-inner { flex-direction: column; gap: 6px; }
  .urgency-bar { font-size: .78rem; }

  .hero { padding: 40px 0 48px; }
  .hero-title { font-size: 2rem; }
  .hero-text { font-size: .95rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .lead-form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 2rem; }

  .services-grid, .projects-grid, .catalog-grid, .equip-grid, .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .filter-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .sticky-cta { bottom: 16px; right: 16px; }
  .sticky-btn { width: 50px; height: 50px; }
  .sticky-btn--scroll { width: 56px; height: 56px; font-size: 1.4rem; }
  .sticky-btn:hover { width: 50px; padding: 0; border-radius: 50%; }
  .sticky-btn:hover .btn-text { display: none; }


}

/* ======================================================
   LANGUAGE SWITCHER
====================================================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-left: 0;
  background: var(--slate-100);
  border-radius: var(--radius-full);
  padding: 2px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 3px 7px;
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--slate-500);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .03em;
  line-height: 1.3;
}
.lang-btn:hover { color: var(--slate-800); }
.lang-btn.active {
  background: var(--white);
  color: var(--blue-500);
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

/* Mobile lang switcher */
.mobile-lang-switcher {
  display: flex;
  gap: 6px;
  padding: 16px 16px 0;
}
.mobile-lang-switcher .lang-btn {
  padding: 8px 16px;
  font-size: .85rem;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  border-radius: var(--radius-sm);
}
.mobile-lang-switcher .lang-btn.active {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: none;
}

/* ======================================================
   PROJECT CARD CLICKABLE
====================================================== */
a.project-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.project-card:hover .project-body h4 {
  color: var(--blue-500);
}
.project-body .project-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-500);
  margin-top: 10px;
  display: inline-block;
  transition: gap .2s;
}

/* ======================================================
   404 PAGE
====================================================== */
.page-404 {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-500) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.page-404::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(29,78,216,.25) 0%, transparent 60%);
  pointer-events: none;
}
.page-404-content {
  position: relative; z-index: 1;
  max-width: 560px;
}
.page-404-code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--blue-300), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.page-404-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-404-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 32px;
}
.page-404-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   CLIENT LOGO TRUST BAR
====================================================== */
/* ======================================================
   CLIENTS SECTION — Marquee (auto-scrolling logos)
====================================================== */
.clients-section {
  background: var(--slate-50);
  padding: 56px 0 48px;
  overflow: hidden;
}

/* Marquee wrapper */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 16px;
}
.marquee:last-child { margin-bottom: 0; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 140s linear infinite;
}
.marquee--reverse .marquee-track {
  animation: marquee-scroll-reverse 140s linear infinite;
}

/* Pause on hover */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px; /* gap between original and duplicate */
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Logo cards inside marquee — uniform size */
.client-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 12px 20px;
  width: 180px;
  height: 72px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  box-sizing: border-box;
}
.client-logo-card:hover {
  border-color: var(--blue-500);
  box-shadow: 0 4px 16px rgba(59,130,246,.12);
  transform: translateY(-2px);
}
.client-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--slate-500);
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.25;
  white-space: normal;
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Logo image cards — ALL cards strictly same size */
.client-logo-card--img {
  padding: 12px 16px;
  width: 160px !important;
  height: 80px !important;
  box-sizing: border-box;
  /* Skeleton placeholder while image loads */
  background: var(--white);
  position: relative;
}
.client-logo-img {
  /* Force all logos to exact same visual area */
  width: 120px !important;
  height: 48px !important;
  max-width: 120px !important;
  max-height: 48px !important;
  min-width: unset !important;
  min-height: unset !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(.6);
  transition: filter .3s ease, opacity .25s ease;
  /* Prevent layout shift — image starts invisible, fades in when loaded */
  opacity: 0;
}
.client-logo-img.loaded {
  opacity: .6;
}
.client-logo-card--img:hover .client-logo-img.loaded {
  filter: grayscale(0%) opacity(1);
  opacity: 1;
}
.client-logo-card--img:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .marquee-content { gap: 12px; padding-right: 12px; }
  .client-logo-card { padding: 10px 16px; width: 140px; height: 54px; }
  .client-logo-card--img { padding: 8px 12px; width: 140px; height: 60px; }
  .client-logo-img { width: 100px; height: 36px; }
  .client-name { font-size: .72rem; }
  .marquee-track { animation-duration: 35s; }
  .marquee--reverse .marquee-track { animation-duration: 35s; }
}
@media (max-width: 480px) {
  .marquee-content { gap: 10px; padding-right: 10px; }
  .client-logo-card { padding: 8px 10px; width: 120px; height: 48px; }
  .client-logo-card--img { padding: 6px 8px; width: 120px; height: 52px; }
  .client-logo-img { width: 88px; height: 32px; }
  .client-name { font-size: .68rem; }
  .marquee-track { animation-duration: 28s; }
  .marquee--reverse .marquee-track { animation-duration: 28s; }
}

/* ======================================================
   WHY TRUST US — Trust Grid
====================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg, 12px);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow .3s, border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700, #1d4ed8));
  opacity: 0;
  transition: opacity .3s;
}
.trust-card:hover {
  border-color: var(--blue-200, #bfdbfe);
  box-shadow: 0 8px 32px rgba(29,78,216,.1);
  transform: translateY(-4px);
}
.trust-card:hover::before {
  opacity: 1;
}
.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.trust-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 8px;
  line-height: 1.3;
}
.trust-card p {
  font-size: .85rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin: 0;
}

/* Highlighted trust card — equipment stock & 24/7 emergency swap */
.trust-card--highlight {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: var(--blue-300, #93c5fd);
}
.trust-card--highlight::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--blue-500), #f59e0b);
  height: 4px;
}
.trust-card--highlight .trust-icon {
  font-size: 2rem;
}
.trust-card--highlight h4 {
  font-size: 1rem;
  color: var(--blue-800, #1e40af);
}
.trust-card--highlight p {
  font-size: .85rem;
  color: var(--slate-600);
  margin: 0;
}
.trust-card--highlight strong {
  color: var(--blue-700, #1d4ed8);
  font-weight: 700;
}
.trust-card--highlight:hover {
  border-color: var(--blue-400, #60a5fa);
  box-shadow: 0 10px 40px rgba(29,78,216,.18);
}

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-card--highlight { grid-column: span 1; }
  .trust-card { padding: 22px 18px; }
}

/* ======================================================
   HOW IT WORKS / PROCESS TIMELINE
====================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(29,78,216,.3);
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-200));
  z-index: 1;
}
.process-step h4 {
  font-size: .95rem;
  margin-bottom: 6px;
  color: var(--slate-900);
}
.process-step p {
  font-size: .82rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ======================================================
   CARD HOVER ANIMATIONS
====================================================== */
.service-card {
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.service-card:hover .service-card-icon {
  transform: scale(1.12);
}
.service-card-icon {
  transition: transform .35s;
}

.catalog-card {
  transition: transform .3s, box-shadow .3s;
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-card {
  transition: transform .3s, box-shadow .3s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.project-card:hover .project-img {
  transform: scale(1.03);
}
.project-img {
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}

.testimonial-card {
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-card {
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ======================================================
   LEAD MAGNET POPUP (SCROLL TRIGGER)
====================================================== */
.lead-magnet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn .3s;
}
.lead-magnet-overlay.show {
  display: flex;
}
.lead-magnet-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 90%;
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp .4s ease-out;
}
.lead-magnet-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--slate-100);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
  transition: background .2s;
}
.lead-magnet-close:hover { background: var(--slate-200); }
.lead-magnet-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.lead-magnet-box h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.lead-magnet-box > p {
  font-size: .92rem;
  color: var(--slate-500);
  margin-bottom: 18px;
  line-height: 1.5;
}
.lead-magnet-list {
  list-style: none;
  margin-bottom: 20px;
}
.lead-magnet-list li {
  font-size: .85rem;
  color: var(--slate-700);
  padding: 4px 0;
  padding-left: 22px;
  position: relative;
}
.lead-magnet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}

/* Pricing indicator */
.price-badge {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-500);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: 8px;
}

/* Social proof micro-badges */
.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
}
.proof-badge .proof-stars {
  color: var(--amber-400);
  letter-spacing: 1px;
}

/* Real image backgrounds */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Darkened overlay — photo visible but text stays sharp */
  background: linear-gradient(135deg, rgba(8,15,28,.88) 0%, rgba(20,55,140,.78) 55%, rgba(8,15,28,.86) 100%);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE: PROCESS & NEW SECTIONS ---- */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
  .social-proof-bar { justify-content: center; }
}

@media (max-width: 640px) {
  .lead-magnet-box { padding: 28px 20px; }
}

/* ======================================================
   CONVERSION BOOSTERS — ADDED
====================================================== */

/* === WUF13 COUNTDOWN TIMER === */
.wuf-countdown {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 14px;
  flex-wrap: wrap;
}
.wuf-countdown-item {
  text-align: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  min-width: 70px;
  backdrop-filter: blur(4px);
}
.wuf-countdown-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--amber-400);
  line-height: 1;
}
.wuf-countdown-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* === PULSE ANIMATION FOR CTA BUTTONS === */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.5); }
  50% { box-shadow: 0 0 0 12px rgba(245,158,11,0); }
}
.btn-accent-pulse {
  animation: pulse 2.5s infinite;
}
.btn-accent:hover {
  animation: none;
}

/* === FLOATING NOTIFICATION BADGE === */
.social-proof-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 800;
  max-width: 340px;
  border-left: 4px solid var(--green-500);
  opacity: 0;
  transform: translateX(-110%);
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.social-proof-notification.show {
  opacity: 1;
  transform: translateX(0);
}
.spn-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.spn-content strong {
  display: block;
  font-size: .85rem;
  color: var(--slate-900);
}
.spn-content span {
  font-size: .78rem;
  color: var(--slate-400);
}

/* === ANIMATED NUMBER COUNTER === */
@keyframes countUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.stat-number.animated {
  animation: countUp .6s ease-out forwards;
}

/* === GUARANTEE BADGE === */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #065f46, #059669);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 700;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(5,150,105,.3);
}
.guarantee-badge-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* === CTA BANNER (inline conversion strip) === */
.cta-inline-banner {
  background: linear-gradient(90deg, var(--blue-500), #2563eb, var(--blue-500));
  color: var(--white);
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  margin-top: 48px;
}
.cta-inline-banner h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-inline-banner p {
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}

/* === COMPARISON TABLE (price indicator) === */
.comparison-highlight {
  position: relative;
  overflow: hidden;
}
.comparison-highlight::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 12px;
  right: -32px;
  transform: rotate(45deg);
  background: var(--amber-500);
  color: var(--slate-900);
  font-size: .6rem;
  font-weight: 800;
  padding: 4px 40px;
  letter-spacing: .08em;
}

/* ======================================================
   SKETCHBOT PAGE
====================================================== */
.sketchbot-hero{background:linear-gradient(135deg,#0b1120 0%,#111c3a 40%,#1a2744 70%,#0b1120 100%);color:var(--white);padding:120px 0 80px;position:relative;overflow:hidden}
.sketchbot-hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 70% 30%,rgba(245,158,11,.08),transparent 60%),radial-gradient(circle at 20% 80%,rgba(59,130,246,.06),transparent 50%);pointer-events:none}
.sketchbot-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:1}
.sketchbot-new-badge{display:inline-block;background:linear-gradient(90deg,var(--amber-500),var(--amber-600));color:var(--slate-900);font-size:.82rem;font-weight:800;padding:6px 16px;border-radius:var(--radius-full);margin-bottom:20px;letter-spacing:.02em;animation:badgePulse 2.5s ease-in-out infinite}
@keyframes badgePulse{0%,100%{box-shadow:0 0 0 0 rgba(245,158,11,.4)}50%{box-shadow:0 0 0 10px rgba(245,158,11,0)}}
.sketchbot-hero-title{font-size:clamp(2rem,4.5vw,3.4rem);font-weight:900;line-height:1.1;color:var(--white);margin-bottom:20px}
.sketchbot-accent{background:linear-gradient(90deg,var(--amber-400),var(--amber-500));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.sketchbot-hero-text{font-size:1.05rem;color:rgba(255,255,255,.75);line-height:1.7;margin-bottom:28px;max-width:540px}
.sketchbot-hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:24px}
.sketchbot-hero-trust{display:flex;flex-wrap:wrap;gap:16px;color:rgba(255,255,255,.65);font-size:.88rem}
.sketchbot-hero-trust .trust-item{display:flex;align-items:center;gap:6px}
.sketchbot-hero-trust .trust-item svg{color:var(--green-400);flex-shrink:0}
.sketchbot-hero-visual{position:relative}
.sketchbot-hero-img{border-radius:var(--radius-2xl);overflow:hidden;position:relative;box-shadow:0 24px 64px rgba(0,0,0,.35);border:2px solid rgba(255,255,255,.08)}
.sketchbot-hero-img img{width:100%;height:420px;object-fit:cover;display:block}
.sketchbot-video-play{position:absolute;bottom:16px;left:16px;background:rgba(0,0,0,.65);backdrop-filter:blur(8px);color:var(--white);padding:8px 16px;border-radius:var(--radius-full);font-size:.82rem;font-weight:600;cursor:pointer;transition:all .2s}
.sketchbot-video-play:hover{background:rgba(0,0,0,.85)}
.sketchbot-features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px}
.sketchbot-feature-card{background:var(--white);border:1px solid var(--slate-200);border-radius:var(--radius-xl);padding:32px 28px;transition:all .3s}
.sketchbot-feature-card:hover{border-color:var(--amber-400);box-shadow:0 8px 32px rgba(245,158,11,.1);transform:translateY(-4px)}
.sketchbot-feature-icon{font-size:2.2rem;margin-bottom:14px}
.sketchbot-feature-card h3{font-size:1.1rem;font-weight:700;margin-bottom:8px}
.sketchbot-feature-card p{font-size:.9rem;color:var(--slate-600);line-height:1.6}
.sketchbot-packages-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px}
.sketchbot-package-card{background:var(--white);border:2px solid var(--slate-200);border-radius:var(--radius-xl);padding:36px 28px;display:flex;flex-direction:column;transition:all .3s;position:relative;overflow:hidden}
.sketchbot-package-card:hover{border-color:var(--blue-400);box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.sketchbot-package-card--pro{border-color:var(--amber-500);box-shadow:0 8px 40px rgba(245,158,11,.12)}
.sketchbot-package-card--pro:hover{border-color:var(--amber-500);box-shadow:0 12px 48px rgba(245,158,11,.2)}
.sketchbot-pkg-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.sketchbot-pkg-header h3{font-size:1.25rem;font-weight:800}
.sketchbot-pkg-tag{font-size:.7rem;font-weight:700;background:var(--blue-100);color:var(--blue-500);padding:4px 10px;border-radius:var(--radius-full);letter-spacing:.03em;text-transform:uppercase}
.sketchbot-pkg-tag--pro{background:linear-gradient(90deg,var(--amber-400),var(--amber-500));color:var(--slate-900)}
.sketchbot-pkg-desc{font-size:.9rem;color:var(--slate-600);line-height:1.6;margin-bottom:20px}
.sketchbot-pkg-features{flex:1;margin-bottom:24px}
.sketchbot-pkg-features li{font-size:.88rem;color:var(--slate-700);padding:6px 0;border-bottom:1px solid var(--slate-100)}
.sketchbot-pkg-features li:last-child{border-bottom:none}
.nav-highlight{color:var(--amber-500)!important;font-weight:700!important;position:relative}
.nav-highlight::after{content:'';position:absolute;bottom:-2px;left:0;width:100%;height:2px;background:var(--amber-500);border-radius:2px}
.sketchbot-promo-banner{background:linear-gradient(135deg,#111c3a 0%,#1a2744 60%,#0b1120 100%);color:var(--white);border-radius:var(--radius-xl);padding:40px;display:grid;grid-template-columns:1fr auto;gap:32px;align-items:center;margin-top:48px;position:relative;overflow:hidden}
.sketchbot-promo-banner::before{content:'';position:absolute;top:0;right:0;width:200px;height:200px;background:radial-gradient(circle,rgba(245,158,11,.15),transparent 70%);pointer-events:none}
.sketchbot-promo-banner h3{color:var(--white);font-size:1.4rem;font-weight:800;margin-bottom:8px}
.sketchbot-promo-banner .sketchbot-promo-tag{display:inline-block;background:var(--amber-500);color:var(--slate-900);font-size:.72rem;font-weight:800;padding:4px 12px;border-radius:var(--radius-full);margin-bottom:12px;letter-spacing:.04em;text-transform:uppercase}
.sketchbot-promo-banner p{color:rgba(255,255,255,.7);font-size:.92rem;line-height:1.6;max-width:500px}
@media(max-width:1024px){.sketchbot-hero-grid{grid-template-columns:1fr;gap:40px}.sketchbot-features-grid,.sketchbot-packages-grid{grid-template-columns:repeat(2,1fr)}.sketchbot-promo-banner{grid-template-columns:1fr;text-align:center}}
@media(max-width:640px){.sketchbot-hero{padding:100px 0 48px}.sketchbot-hero-title{font-size:1.8rem}.sketchbot-hero-img img{height:260px}.sketchbot-features-grid,.sketchbot-packages-grid{grid-template-columns:1fr}.sketchbot-promo-banner{padding:24px}.sketchbot-promo-banner h3{font-size:1.15rem}}

/* === URGENCY STRIP ANIMATION === */
@keyframes urgencyPulse {
  0%, 100% { background-color: var(--slate-900); }
  50% { background-color: #1e293b; }
}
.urgency-bar {
  animation: urgencyPulse 3s ease-in-out infinite;
}



/* === SOCIAL PROOF NOTIFICATION (new format from social-proof.js) === */
.social-proof-notification .sp-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .78rem;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.social-proof-notification .sp-content {
  flex: 1;
  min-width: 0;
}
.social-proof-notification .sp-name {
  font-size: .84rem;
  font-weight: 600;
  color: var(--slate-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-proof-notification .sp-action {
  font-weight: 400;
  color: var(--slate-600);
}
.social-proof-notification .sp-detail {
  font-size: .78rem;
  color: var(--slate-500);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-proof-notification .sp-time {
  font-size: .72rem;
  color: var(--slate-400);
  margin-top: 2px;
}

/* === RESPONSIVE: New conversion elements === */
@media (max-width: 768px) {
  .social-proof-notification { bottom: 12px; left: 12px; max-width: 300px; padding: 12px 16px; gap: 10px; font-size: .9rem; }
  .social-proof-notification .sp-avatar { width: 34px; height: 34px; font-size: .7rem; }
  .social-proof-notification .sp-name { font-size: .78rem; }
  .social-proof-notification .sp-detail { font-size: .72rem; }
  .wuf-countdown-item { min-width: 56px; padding: 8px 10px; }
  .wuf-countdown-number { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .social-proof-notification { max-width: 280px; padding: 10px 14px; gap: 8px; }
  .social-proof-notification .sp-avatar { width: 30px; height: 30px; font-size: .65rem; }
}

@media (max-width: 640px) {
  .wuf-countdown { gap: 8px; }
  .wuf-countdown-item { min-width: 50px; padding: 6px 8px; }
  .wuf-countdown-number { font-size: 1.1rem; }
  .guarantee-badge { font-size: .82rem; padding: 10px 18px; }
}

/* ======================================================
   EXIT-INTENT POPUP
====================================================== */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: exitFadeIn .3s ease;
}
@keyframes exitFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes exitSlideUp { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.exit-popup {
  background: #fff; border-radius: var(--radius-xl); padding: 40px 36px;
  max-width: 440px; width: 100%; text-align: center; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.25); animation: exitSlideUp .35s ease;
}
.exit-popup-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  font-size: 1.6rem; color: var(--slate-400); cursor: pointer; line-height: 1;
  transition: color .2s;
}
.exit-popup-close:hover { color: var(--slate-800); }
.exit-popup-icon { font-size: 2.5rem; margin-bottom: 12px; }
.exit-popup-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem;
  color: var(--slate-900); margin-bottom: 8px; line-height: 1.3;
}
.exit-popup-text {
  font-size: .92rem; color: var(--slate-500); margin-bottom: 20px; line-height: 1.5;
}
.exit-popup-form { display: flex; flex-direction: column; gap: 10px; }
.exit-popup-form .form-control {
  padding: 12px 16px; font-size: .95rem; border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md); width: 100%; box-sizing: border-box;
  transition: border-color .2s;
}
.exit-popup-form .form-control:focus {
  border-color: var(--blue-400); outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.exit-popup-note {
  font-size: .78rem; color: var(--slate-400); margin-top: 12px;
}
@media (max-width: 480px) {
  .exit-popup { padding: 28px 20px; }
  .exit-popup-title { font-size: 1.15rem; }
}

/* ======================================================
   CRO CONVERSION BOOSTERS
====================================================== */

/* === Sticky scroll CTA bar === */
.scroll-cta-bar {
  position: fixed;
  top: -80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11,17,32,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 10px 0;
  transition: top .35s cubic-bezier(.4,0,.2,1);
}
.scroll-cta-bar.visible { top: 0; }
.scroll-cta-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.scroll-cta-bar__text {
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scroll-cta-bar__text .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { opacity: .8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.scroll-cta-bar__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.scroll-cta-bar .btn { padding: 10px 22px; font-size: .85rem; }

/* === Section CTA break (between sections) === */
.section-cta-break {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 60%, #1e3a8a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(99,179,237,.1) 0%, transparent 50%);
  pointer-events: none;
}
/* Decorative circles */
.section-cta-break::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: -100px; right: -80px;
  pointer-events: none;
}
.section-cta-break h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.section-cta-break p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.section-cta-break .btn { position: relative; }
.section-cta-break .cta-break-badges {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  flex-wrap: wrap;
}
.section-cta-break .cta-break-badge {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .01em;
}

/* CTA Break eyebrow label */
.cta-break-eyebrow {
  display: inline-block;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  position: relative;
}

/* === SketchBot section responsive === */
.sketchbot-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .sketchbot-promo-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* === Enhanced hero trust items === */
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.trust-item svg {
  color: var(--green-400);
  flex-shrink: 0;
}

/* === Testimonial visual improvements === */
.testimonial-card {
  position: relative;
}
.testimonial-card::before {
  content: '\u201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--blue-100);
  line-height: 1;
  pointer-events: none;
}

/* === Contact section responsive improvements === */
.contact-section-form {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-section-form { grid-template-columns: 1fr; gap: 32px; }
}

/* === Scroll CTA bar responsive === */
@media (max-width: 768px) {
  .scroll-cta-bar__text { font-size: .78rem; }
  .scroll-cta-bar__text span:not(.pulse-dot) { display: none; }
  .scroll-cta-bar__text::after { content: 'Get Free Quote'; }
  .scroll-cta-bar .btn { padding: 8px 16px; font-size: .8rem; }
  .section-cta-break { padding: 52px 0; }
  .section-cta-break h3 { font-size: 1.4rem; }
  .section-cta-break p { font-size: .95rem; margin-bottom: 28px; }
  .section-cta-break .cta-break-badges { flex-direction: row; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .cta-break-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-break-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .scroll-cta-bar { padding: 8px 0; }
}

/* ======================================================
   CASE STUDY CARD STYLES
====================================================== */
.case-study-card .project-body {
  padding: 20px 24px 24px;
}
.case-meta {
  margin-bottom: 6px;
}
.case-client {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-500);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.case-details {
  margin: 12px 0;
}
.case-detail {
  font-size: .85rem;
  color: var(--slate-600);
  line-height: 1.6;
  padding: 3px 0;
}
.case-detail strong {
  color: var(--slate-800);
  font-weight: 600;
}
.case-result {
  background: linear-gradient(90deg, #ecfdf5 0%, #d1fae5 100%);
  color: #065f46;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  border-left: 3px solid #10b981;
}

/* ======================================================
   WHATSAPP OPT-IN CHECKBOX IMPROVED
====================================================== */
.whatsapp-opt-in {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  cursor: pointer;
  transition: all .2s;
}
.whatsapp-opt-in:hover {
  background: #dcfce7;
  border-color: #86efac;
}
.whatsapp-opt-in span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: #166534;
}
.whatsapp-opt-in .wa-icon {
  flex-shrink: 0;
}
.whatsapp-opt-in input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #25D366;
  flex-shrink: 0;
}

/* ======================================================
   SKETCHBOT PROMO SECTION (replacing inline styles)
====================================================== */
.sketchbot-promo-section {
  background: linear-gradient(135deg, #0b1120 0%, #1d4ed8 50%, #0b1120 100%);
  padding: 60px 0;
}
.eyebrow--amber { color: #fbbf24; }
.section-title--white { color: #fff; margin-top: 12px; }
.sketchbot-promo-text {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.sketchbot-promo-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sketchbot-promo-stat { text-align: center; }
.sketchbot-promo-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbbf24;
}
.sketchbot-promo-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
}
.sketchbot-promo-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sketchbot-promo-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.sketchbot-promo-img img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.sketchbot-promo-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
}

/* ======================================================
   CTA BREAK VARIANTS
====================================================== */
.section-cta-break--dark {
  background: linear-gradient(135deg, #0d1b2e 0%, #0f2744 50%, #1a3a5c 100%);
}
.section-cta-break--dark::before {
  background:
    radial-gradient(ellipse at 15% 60%, rgba(59,130,246,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(30,64,175,.15) 0%, transparent 50%);
}
.cta-break-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* ======================================================
   CONTACT SECTION DARK-THEME CLASSES
====================================================== */
.eyebrow--light { color: #93c5fd; }
.section-subtitle--light {
  color: rgba(255,255,255,0.7);
  margin: 0 auto;
}
.why-item--dark { color: rgba(255,255,255,0.85); }
.why-icon--dark {
  background: rgba(29,78,216,0.3);
  color: #93c5fd;
}
.why-content-title { color: #fff; }
.why-content-text { color: rgba(255,255,255,0.65); }
.contact-link { color: #60a5fa; transition: color .2s; }
.contact-link:hover { color: #93c5fd; }

/* ======================================================
   WUF COUNTDOWN SUBTITLE
====================================================== */
.wuf-countdown-subtitle {
  width: 100%;
  text-align: left;
  margin-top: 4px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ======================================================
   GLOBAL UI/UX POLISH — Pre-launch fixes
====================================================== */

/* Better focus outlines for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hero text visibility boost on mobile */
@media (max-width: 768px) {
  .hero-title { text-shadow: 0 2px 12px rgba(0,0,0,.35); }
  .hero-text { text-shadow: 0 1px 8px rgba(0,0,0,.25); }
}

/* Prevent overflow on small screens */
.section-title {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Blog card image placeholder — ensure fallback bg is visible */
.blog-img {
  background-color: var(--blue-800);
  background-size: cover;
  background-position: center;
}

/* Ensure service cards don't overflow text */
.service-card h3 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Better CTA button pulse contrast */
.btn-accent-pulse {
  animation: accentPulse 3s ease-in-out infinite;
}
@keyframes accentPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,.18); }
}

/* Footer improvements */
.footer-links a {
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover {
  color: var(--blue-300);
  padding-left: 4px;
}

/* Testimonials grid — 3 col desktop, 1 col mobile */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* Process steps — line connector only on desktop */
@media (max-width: 640px) {
  .process-step { padding: 20px 12px; }
  .process-step h4 { font-size: .95rem; }
  .process-step p { font-size: .85rem; }
}

/* Stats bar on equipment page — scroll on mobile */
@media (max-width: 640px) {
  .eq-stat-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 16px;
    padding-bottom: 8px;
  }
  .eq-stat { flex-shrink: 0; }
}

/* Client logo section — reduce double padding */
.clients-section { padding: 52px 0 44px; }

/* ======================================================
   MACBOOK 13" FIT — hero fits in 800px viewport height
   MacBook 13" = 1280×800 (or 1440×900 with Retina scaling)
====================================================== */
@media (min-width: 1024px) and (max-height: 820px) {
  /* Compress top announcement bar */
  .wuf-strip { padding: 6px 0; font-size: .8rem; }

  /* Reduce header height */
  :root { --header-h: 58px; }

  /* Hero section — reduce vertical padding, keep full-height */
  .hero { padding: 36px 0 40px; min-height: calc(100dvh - 88px); }

  /* Tighten hero grid gap */
  .hero-grid { gap: 36px; }

  /* Smaller hero title */
  .hero-title {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    margin-bottom: 14px;
  }

  /* Compress hero text */
  .hero-text {
    font-size: .92rem;
    margin-bottom: 18px;
    line-height: 1.55;
  }

  /* Tighter CTA buttons */
  .hero-cta { margin-bottom: 14px; gap: 10px; }
  .btn-lg { padding: 12px 22px; font-size: .92rem; }

  /* Compact trust row */
  .hero-trust { gap: 16px; }
  .trust-item { font-size: .78rem; }

  /* Compact countdown */
  .wuf-countdown { margin-top: 10px; gap: 8px; }
  .wuf-countdown-item { padding: 6px 10px; min-width: 56px; }
  .wuf-countdown-number { font-size: 1.2rem; }
  .wuf-countdown-label { font-size: .58rem; }

  /* Lead form card — reduce padding and spacing */
  .lead-form-card { padding: 20px 22px; }
  .lead-form-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
  .lead-form-card > p { font-size: .82rem; margin-bottom: 12px; }
  .form-group { margin-bottom: 10px; }
  .form-group label { margin-bottom: 3px; font-size: .75rem; }
  .form-control { padding: 8px 12px; font-size: .85rem; }
  .form-activity-badge { margin-bottom: 10px; padding: 4px 10px; }

  /* Hero label */
  .hero-label { margin-bottom: 10px; font-size: .8rem; }
}

/* ======================================================
   SKETCHBOT PROMO RESPONSIVE
====================================================== */
@media (max-width: 768px) {
  .sketchbot-promo-section { padding: 40px 0; }
  .sketchbot-promo-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .sketchbot-promo-ctas { flex-direction: column; }
  .sketchbot-promo-ctas .btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .sketchbot-promo-stats { gap: 12px; }
  .sketchbot-promo-stat-num { font-size: 1.2rem; }
  .case-detail { font-size: .8rem; }
  .case-result { font-size: .78rem; padding: 6px 10px; }
  .whatsapp-opt-in { padding: 8px 10px; }
  .whatsapp-opt-in span { font-size: .78rem; }
}

/* ======================================================
   HOMEPAGE V2 — SALES-OPTIMISED REDESIGN
   July 2026
====================================================== */

/* ── Hero V2 — Split layout with photo bg + inline form ── */
.hero--home-v2 {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  color: #fff;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 18, 50, 0.92) 0%,
    rgba(10, 22, 60, 0.85) 45%,
    rgba(8, 18, 50, 0.70) 100%
  );
}
.hero-split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

/* Copy side */
.hero-split-copy { display: flex; flex-direction: column; gap: 0; padding-top: 20px; padding-bottom: 20px; }
.hero-micro-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hmb {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.hmb svg { color: #4ade80; flex-shrink: 0; }

.hero-v2-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
}
.hv2-accent { color: var(--blue-300); }
.hv2-highlight {
  background: linear-gradient(90deg, var(--amber-500), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-v2-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Mini stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hsr-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px;
}
.hsr-item:first-child { padding-left: 0; }
.hsr-item strong {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hsr-item strong span { font-size: 1rem; color: var(--amber-400); }
.hsr-item > span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 3px;
  white-space: nowrap;
}
.hsr-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

/* Client strip */
.hero-clients-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.hcs-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.hcs-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hcs-logos img {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: .7;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
  max-width: 72px;
}
.hcs-logos img:hover { opacity: 1; }

.hero-mobile-cta-wrap { display: none; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-mobile-cta { display: inline-flex; }
.hero-mobile-call { display: inline-flex; align-items: center; gap: 7px; }

/* Form side */
.hero-split-form {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  color: var(--slate-800);
  position: relative;
}
.hsf-header { margin-bottom: 20px; }
.hsf-pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green-500);
  margin-bottom: 10px;
}
.hsf-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hsf-subtitle {
  font-size: .84rem;
  color: var(--slate-500);
  margin: 0;
}
.hsf-form .hsf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}
.hsf-group {
  margin-bottom: 12px;
}
.hsf-group label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 5px;
}
.hsf-group input,
.hsf-group select,
.hsf-group textarea {
  width: 100%;
  padding: 10px 13px;
  font-size: .88rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  background: var(--slate-50);
  color: var(--slate-800);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.hsf-group input:focus,
.hsf-group select:focus,
.hsf-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
  background: #fff;
}
.hsf-group textarea { resize: none; }
.hsf-btn {
  margin-top: 4px;
  font-size: .95rem;
  letter-spacing: .01em;
}
.hsf-guarantee {
  font-size: .72rem;
  color: var(--slate-400);
  text-align: center;
  margin: 8px 0 0;
}
.hsf-success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hsf-success-inner { text-align: center; padding: 20px; }
.hsf-success-icon { font-size: 3rem; margin-bottom: 12px; }
.hsf-success-inner h3 { font-size: 1.3rem; color: var(--slate-900); margin-bottom: 8px; }
.hsf-success-inner p { color: var(--slate-500); font-size: .9rem; }

/* ── Services V2 Grid ── */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .22s, border-color .22s, transform .22s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  opacity: 0;
  transition: opacity .22s;
}
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: var(--blue-200);
  transform: translateY(-3px);
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.svc-body { flex: 1; }
.svc-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.svc-body p {
  font-size: .85rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin: 0;
}
.svc-arrow {
  font-size: 1.1rem;
  color: var(--blue-400);
  margin-top: 16px;
  display: block;
  transition: transform .22s;
}
.svc-card:hover .svc-arrow { transform: translateX(4px); }

/* ── Why GM Events V2 ── */
.section--dark-alt {
  background: var(--blue-900);
  color: #fff;
}
.section--dark-alt .eyebrow--light { color: var(--blue-300); }
.why-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-v2-title {
  color: #fff !important;
  margin: 12px 0 16px;
}
.why-v2-lead {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 100%;
}
.why-v2-cta { align-self: flex-start; }
.why-v2-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}
.why-v2-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-v2-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-v2-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.why-v2-item p {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin: 0;
}

/* ── Projects Grid V2 ── */
.proj-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.proj-card-v2 {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .22s, transform .22s;
}
.proj-card-v2:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.pcv2-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.pcv2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.proj-card-v2:hover .pcv2-img img { transform: scale(1.05); }
.pcv2-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8,18,50,.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 20px;
}
.pcv2-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcv2-body h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
  line-height: 1.35;
}
.pcv2-body p {
  font-size: .84rem;
  color: var(--slate-500);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.pcv2-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue-500);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.proj-card-v2:hover .pcv2-link { gap: 8px; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.tcard {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s;
  margin: 0;
}
.tcard:hover { box-shadow: var(--shadow-md); }
.tcard-stars {
  color: var(--amber-500);
  font-size: 1rem;
  letter-spacing: 2px;
}
.tcard-text {
  font-size: .9rem;
  color: var(--slate-700);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin: 0;
  max-width: none;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.tcard-author strong {
  display: block;
  font-size: .88rem;
  color: var(--slate-900);
}
.tcard-author span {
  font-size: .75rem;
  color: var(--slate-500);
}
.reviews-rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.rrs-stars { color: var(--amber-500); font-size: 1.1rem; letter-spacing: 2px; }
.reviews-rating-strip strong { font-size: 1.1rem; font-weight: 800; color: var(--slate-900); }
.rrs-count { font-size: .85rem; color: var(--slate-500); }

/* ── Clients Wall ── */
.clients-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.cw-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: 14px;
  padding: 18px 16px;
  min-height: 88px;
  transition: box-shadow .22s, border-color .22s, transform .22s;
}
.cw-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 4px 20px rgba(37,99,235,.1);
  transform: translateY(-2px);
}
.cw-card img {
  max-width: 140px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.cw-bakcell { overflow: hidden; }
.cw-bakcell img {
  transform: scale(2.0);
  max-width: 100px;
}

/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(105deg, var(--blue-700) 0%, var(--blue-500) 100%);
  padding: 56px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.cta-strip-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin: 0;
  max-width: 100%;
}
.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Contact Split ── */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.csg-info { padding-top: 4px; }
.csg-lead {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin: 12px 0 28px;
}
.csg-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.csg-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  padding: 14px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: 12px;
  background: var(--slate-50);
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.csg-contact-item:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  box-shadow: 0 4px 16px rgba(37,99,235,.08);
}
.csg-ci-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.csg-ci-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.csg-contact-item strong {
  display: block;
  font-size: .9rem;
  color: var(--slate-900);
  font-weight: 700;
}
.csg-guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.csg-g-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--slate-600);
  font-weight: 500;
  padding: 10px 12px;
  background: var(--slate-50);
  border-radius: 10px;
  border: 1px solid var(--slate-200);
}
.csg-form-wrap .lead-form-card {
  box-shadow: 0 12px 48px rgba(0,0,0,.1);
}

/* ── Responsive: Homepage V2 ── */
@media (max-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
  .why-v2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-split-form {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-mobile-cta-wrap { display: none; }
  .services-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
  .proj-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .clients-wall {
    grid-template-columns: repeat(4, 1fr);
  }
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-strip-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .hero--home-v2 { min-height: auto; }
  .hero-split-grid {
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .hero-v2-title { font-size: 2.1rem; }
  .hero-stats-row {
    gap: 0;
  }
  .hsr-item { padding: 0 12px; }
  .hsr-item strong { font-size: 1.3rem; }
  .services-grid-v2 { grid-template-columns: 1fr; }
  .proj-grid-v2 { grid-template-columns: 1fr; }
  .clients-wall { grid-template-columns: repeat(2, 1fr); }
  .csg-guarantees { grid-template-columns: 1fr; }
  .hsf-row { grid-template-columns: 1fr; }
  .hero-mobile-cta-wrap { display: flex; justify-content: center; margin-top: 0; }
  .hero-split-form { display: none; }
}

