/* ======================================================
   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: 56px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

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,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.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;
}
.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: 7px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--slate-900);
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue-500), #2563eb);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  letter-spacing: -.02em;
}
.logo-text { font-size: 1.02rem; letter-spacing: -.02em; }
.logo-dot { color: var(--blue-500); }

.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;
}
.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: start;
  position: relative;
  z-index: 1;
}
.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;
}
.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; }

/* ---- 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;
}
.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-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);
}

/* Request basket badge */
.request-basket {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 899;
  display: none;
}
.request-basket.visible { display: block; }
.request-basket-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--blue-500);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all .2s;
}
.request-basket-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}
.request-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--amber-500);
  color: var(--slate-900);
  font-size: .78rem;
  font-weight: 800;
  border-radius: 50%;
}

/* ======================================================
   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: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--slate-200);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--slate-900), var(--blue-500));
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
}
.blog-tag {
  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);
}
.blog-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-date { font-size: .78rem; color: var(--slate-400); margin-bottom: 8px; font-weight: 500; }
.blog-body h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.blog-body p {
  font-size: .87rem;
  color: var(--slate-500);
  line-height: 1.5;
  flex: 1;
}
.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 { width: 36px; height: 36px; font-size: .8rem; }

.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); }

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.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); }

/* ======================================================
   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-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  color: var(--white);
  transition: all .22s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  overflow: hidden;
  position: relative;
}
.sticky-btn:hover {
  width: auto;
  border-radius: 26px;
  padding: 0 20px;
}
.sticky-btn .btn-text { display: none; white-space: nowrap; }
.sticky-btn:hover .btn-text { display: inline; }
.sticky-btn--wa {
  background: #25d366;
  width: 64px; height: 64px;
  animation: waPulse 2.5s infinite;
}
.sticky-btn--wa svg { width: 28px; height: 28px; }
.sticky-btn--wa:hover { background: #20bd5a; width: auto; animation: none; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* WhatsApp tooltip */
.sticky-btn--wa::before {
  content: attr(data-tooltip);
  position: absolute; right: 76px; top: 50%; transform: translateY(-50%);
  background: #fff; color: #0f172a; font-size: .84rem; font-weight: 600;
  padding: 10px 16px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sticky-btn--wa::after {
  content: ''; position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #fff;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sticky-btn--wa:hover::before,
.sticky-btn--wa:hover::after { opacity: 1; }
.sticky-btn--wa.tooltip-visible::before,
.sticky-btn--wa.tooltip-visible::after { opacity: 1; }
.sticky-btn--call { background: var(--blue-500); }
.sticky-btn--call:hover { background: #1e40af; }
.sticky-btn--scroll { background: var(--slate-700); font-size: 1.1rem; }
.sticky-btn--scroll:hover { background: var(--slate-600); }

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

/* ======================================================
   RESPONSIVE
====================================================== */
/* 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; }

  .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; }

  .request-basket { bottom: 80px; right: 16px; }
}

/* ======================================================
   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 45s linear infinite;
}
.marquee--reverse .marquee-track {
  animation: marquee-scroll-reverse 45s 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: 14px 24px;
  width: 180px;
  height: 64px;
  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 — fixed container, logos scale uniformly */
.client-logo-card--img {
  padding: 10px 16px;
  width: 160px;
  height: 64px;
}
.client-logo-img {
  /* Fixed visual area: all logos rendered at same apparent size */
  width: 120px;
  height: 38px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) opacity(.55);
  transition: filter .3s ease;
}
.client-logo-card--img:hover .client-logo-img {
  filter: grayscale(0%) 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: 54px; }
  .client-logo-img { width: 100px; height: 30px; }
  .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: 48px; }
  .client-logo-img { width: 88px; height: 26px; }
  .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;
}

@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 { 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;
  background: linear-gradient(135deg, rgba(11,17,32,.92) 0%, rgba(29,78,216,.8) 60%, rgba(11,17,32,.85) 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, var(--blue-500) 0%, #1e40af 100%);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.section-cta-break h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}
.section-cta-break p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  margin-bottom: 24px;
  position: relative;
}
.section-cta-break .btn { position: relative; }
.section-cta-break .cta-break-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
  position: relative;
}
.section-cta-break .cta-break-badge {
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === 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: 36px 0; }
  .section-cta-break h3 { font-size: 1.2rem; }
  .section-cta-break .cta-break-badges { flex-direction: column; gap: 8px; }
}
@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, #0f172a 0%, #1e3a5f 100%);
}
.cta-break-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   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);
}

/* ======================================================
   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; }
}
