/* =============================================
   VOXNIK ELEMENTOR WIDGETS CSS
   All brand styles for every custom widget
   ============================================= */

:root {
  --c-bg: #ffffff;
  --c-bg2: #f8f9fc;
  --c-bg3: #eef0f5;
  --c-text: #0f172a;
  --c-text2: #475569;
  --c-text3: #94a3b8;
  --c-accent: #2563eb;
  --c-accent2: #1d4ed8;
  --c-accent3: #3b82f6;
  --c-green: #10b981;
  --c-border: #e2e8f0;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --r: 12px;
  --r-lg: 20px;
  --maxw: 1280px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1);
}

/* ── SHARED ── */
.vox-container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.vox-section   { padding: 80px 24px; }
.vox-section--light { background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%); }
.vox-section--dark  { background: #0f172a; color: #fff; }

.vox-heading { text-align: center; margin-bottom: 56px; }
.vox-heading .vox-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-accent);
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(59,130,246,.1));
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.vox-heading h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -.5px;
}
.vox-heading p {
  font-size: 16px;
  color: var(--c-text2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-family: var(--font-body);
}

/* Buttons */
.vox-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  padding: 14px 28px; border-radius: var(--r);
  transition: all .3s; text-decoration: none;
  box-shadow: var(--shadow-lg); font-family: var(--font-body);
  border: none; cursor: pointer;
}
.vox-btn-primary:hover {
  background: linear-gradient(135deg, var(--c-accent2), var(--c-accent));
  box-shadow: var(--shadow-xl); transform: translateY(-2px); color: #fff;
}
.vox-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.3);
  padding: 13px 28px; border-radius: var(--r);
  transition: all .3s; text-decoration: none; backdrop-filter: blur(10px);
  font-family: var(--font-body); cursor: pointer;
}
.vox-btn-ghost:hover {
  background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5);
  transform: translateY(-2px); color: #fff;
}
.vox-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #25d366;
  border: 1.5px solid #25d366; padding: 8px 16px;
  border-radius: var(--r); transition: all .2s; text-decoration: none;
  font-family: var(--font-body);
}
.vox-btn-wa:hover { background: #25d366; color: #fff; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.vox-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--c-accent);
  border: 1.5px solid var(--c-accent); padding: 8px 16px;
  border-radius: var(--r); transition: all .2s; text-decoration: none;
  font-family: var(--font-body);
}
.vox-btn-outline:hover { background: var(--c-accent); color: #fff; border-color: transparent; transform: translateY(-1px); }

/* ── HERO ── */
.vox-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  color: #fff; padding: 80px 24px 60px;
  position: relative; overflow: hidden;
}
.vox-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37,99,235,.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(59,130,246,.15) 0%, transparent 50%);
  z-index: 1;
}
.vox-hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.vox-eyebrow-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #93c5fd; background: rgba(147,197,253,.15);
  border: 1px solid rgba(147,197,253,.3);
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 20px; font-family: var(--font-body);
}
.vox-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px; color: #fff; letter-spacing: -1px;
}
.vox-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #93c5fd, #c7d2fe);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vox-hero p {
  font-size: 17px; color: rgba(255,255,255,.8);
  margin-bottom: 32px; max-width: 500px; line-height: 1.7;
  font-family: var(--font-body);
}
.vox-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.vox-video-wrap {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: var(--r-lg); overflow: hidden;
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
.vox-video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.vox-hero--media-bg { background: #0f172a; }
.vox-hero-bg-media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.vox-hero-bg-media img,
.vox-hero-bg-media video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.vox-hero-bg-overlay { position: absolute; inset: 0; z-index: 1; }
.vox-hero--media-bg .vox-hero-inner { z-index: 2; }
.vox-hero--media-bg::before { display: none; }

/* ── SERVICES ── */
.vox-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vox-service-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .3s; position: relative;
}
.vox-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent3));
  opacity: 0; transition: opacity .3s;
}
.vox-service-card:hover::before { opacity: 1; }
.vox-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--c-accent3); }
.vox-service-card__thumb {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  display: flex; align-items: center; justify-content: center;
}
.vox-service-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.vox-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent3));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.vox-icon-wrap svg { width: 32px; height: 32px; fill: #fff; }
.vox-service-card__body { padding: 24px; }
.vox-service-card h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin-bottom: 10px; color: var(--c-text); letter-spacing: -.3px;
}
.vox-service-card p { font-size: 14px; color: var(--c-text2); line-height: 1.6; margin-bottom: 16px; font-family: var(--font-body); }
.vox-service-card__actions { display: flex; gap: 10px; padding: 0 24px 24px; flex-wrap: wrap; }

/* ── ABOUT ── */
.vox-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.vox-about-video { border-radius: var(--r-lg); overflow: hidden; position: relative; padding-top: 56.25%; }
.vox-about-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.vox-about-content .vox-small-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--c-accent); background: #eef2ff;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
  font-family: var(--font-body);
}
.vox-about-content h2 {
  font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--c-text);
}
.vox-about-content p { color: var(--c-text2); margin-bottom: 16px; line-height: 1.75; font-family: var(--font-body); }
.vox-trust-list { margin: 28px 0; display: flex; flex-direction: column; gap: 10px; }
.vox-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--c-text);
  font-family: var(--font-body);
}
.vox-trust-item::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--c-green); color: #fff;
  border-radius: 50%; font-size: 11px; font-weight: 800; flex-shrink: 0;
}

/* ── STATS ── */
.vox-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vox-stat-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 28px 24px; text-align: center;
  transition: all .3s; position: relative; overflow: hidden;
}
.vox-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent3));
  opacity: 0; transition: opacity .3s;
}
.vox-stat-card:hover::before { opacity: 1; }
.vox-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vox-stat-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(59,130,246,.1));
  border-radius: 14px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.vox-stat-icon svg { width: 26px; height: 26px; stroke: var(--c-accent); fill: none; }
.vox-stat-num {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: var(--c-text); line-height: 1; letter-spacing: -1px;
}
.vox-stat-label { font-size: 14px; color: var(--c-text2); margin-top: 8px; font-weight: 600; font-family: var(--font-body); }

/* ── PORTFOLIO ── */
.vox-portfolio-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.vox-tab-btn {
  font-size: 13px; font-weight: 700; padding: 10px 20px;
  border-radius: 100px; border: 1.5px solid var(--c-border);
  background: #fff; color: var(--c-text2); cursor: pointer;
  transition: all .2s; font-family: var(--font-body);
}
.vox-tab-btn.active, .vox-tab-btn:hover {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  border-color: transparent; color: #fff;
  box-shadow: var(--shadow-md); transform: translateY(-1px);
}
.vox-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vox-portfolio-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .3s; position: relative;
}
.vox-portfolio-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent3));
  opacity: 0; transition: opacity .3s;
}
.vox-portfolio-card:hover::before { opacity: 1; }
.vox-portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.vox-portfolio-card__img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #f0f4ff, #dde3f8);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--c-accent);
}
.vox-portfolio-card__img img { width: 100%; height: 180px; object-fit: cover; }
.vox-portfolio-card__body { padding: 20px; }
.vox-portfolio-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.3px; }
.vox-portfolio-card p { font-size: 13px; color: var(--c-text2); margin-bottom: 14px; font-family: var(--font-body); }
.vox-portfolio-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.vox-tag {
  font-size: 12px; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; background: rgba(37,99,235,.08);
  color: var(--c-accent); font-family: var(--font-body);
}
.vox-portfolio-card__actions { display: flex; gap: 8px; }
.vox-portfolio-cta { text-align: center; margin-top: 40px; }

/* ── TESTIMONIALS ── */
.vox-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vox-testi-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 28px;
  transition: all .3s; position: relative;
}
.vox-testi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent3));
  opacity: 0; transition: opacity .3s;
}
.vox-testi-card:hover::before { opacity: 1; }
.vox-testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vox-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.vox-testi-card blockquote {
  font-size: 15px; color: var(--c-text); line-height: 1.7;
  margin-bottom: 20px; font-style: italic; font-weight: 500;
  font-family: var(--font-body);
}
.vox-testi-card blockquote::before { content: '\201C'; }
.vox-testi-card blockquote::after  { content: '\201D'; }
.vox-testi-author { display: flex; align-items: center; gap: 14px; }
.vox-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent3));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
  flex-shrink: 0; box-shadow: var(--shadow-md); font-family: var(--font-head);
}
.vox-testi-name { font-size: 15px; font-weight: 700; color: var(--c-text); font-family: var(--font-head); }
.vox-testi-role { font-size: 13px; color: var(--c-text3); margin-top: 4px; font-weight: 500; font-family: var(--font-body); }

/* ── FAQ ── */
.vox-faq-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details.vox-faq-item {
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  background: #fff; overflow: hidden; transition: all .2s;
}
details.vox-faq-item:hover { border-color: var(--c-accent3); }
details.vox-faq-item summary {
  padding: 20px 24px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; list-style: none; color: var(--c-text);
  transition: background .2s; font-family: var(--font-body);
}
details.vox-faq-item summary:hover { background: rgba(37,99,235,.04); }
details.vox-faq-item summary::-webkit-details-marker { display: none; }
details.vox-faq-item summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--c-accent); flex-shrink: 0; }
details[open].vox-faq-item summary::after { content: '−'; }
details[open].vox-faq-item summary { background: rgba(37,99,235,.04); }
.vox-faq-answer {
  padding: 20px 24px; color: var(--c-text2); font-size: 15px;
  line-height: 1.7; border-top: 1px solid var(--c-border);
  font-family: var(--font-body);
}

/* ── CTA BANNER ── */
.vox-cta-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  color: #fff; padding: 80px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.vox-cta-banner h2 {
  font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; margin-bottom: 20px; line-height: 1.2;
}
.vox-cta-banner p {
  font-size: 17px; opacity: .85; margin-bottom: 36px;
  max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7;
  font-family: var(--font-body);
}
.vox-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.vox-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--c-accent);
  background: #fff; padding: 14px 32px; border-radius: var(--r);
  transition: all .2s; text-decoration: none; font-family: var(--font-body);
  box-shadow: var(--shadow-lg);
}
.vox-btn-white:hover { opacity: .92; transform: translateY(-2px); color: var(--c-accent); }

/* ── CONTACT FORM ── */
.vox-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.vox-contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.vox-contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(37,99,235,.08); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.vox-contact-icon svg { width: 22px; height: 22px; stroke: var(--c-accent); fill: none; stroke-width: 2; }
.vox-contact-info-item strong {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--c-text3); text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 4px; font-family: var(--font-body);
}
.vox-contact-info-item a, .vox-contact-info-item span {
  font-size: 15px; color: var(--c-text); font-weight: 500; text-decoration: none; font-family: var(--font-body);
}
.vox-social-links { display: flex; gap: 10px; margin-top: 28px; }
.vox-social-link {
  width: 42px; height: 42px; border-radius: 10px;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text2); transition: all .2s; text-decoration: none;
}
.vox-social-link svg { width: 18px; height: 18px; }
.vox-social-link:hover { border-color: var(--c-accent); background: rgba(37,99,235,.08); color: var(--c-accent); }
.vox-contact-form {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.vox-contact-form h3 {
  font-family: var(--font-head); font-size: 24px; font-weight: 800;
  margin-bottom: 24px; color: var(--c-text);
}
.vox-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vox-form-group { margin-bottom: 20px; }
.vox-form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--c-text2); margin-bottom: 8px; font-family: var(--font-body);
}
.vox-form-group input, .vox-form-group textarea, .vox-form-group select {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid var(--c-border); border-radius: var(--r);
  font-family: var(--font-body); font-size: 15px; color: var(--c-text);
  background: #fff; transition: border-color .15s; outline: none;
}
.vox-form-group input:focus, .vox-form-group textarea:focus, .vox-form-group select:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.vox-form-group textarea { resize: vertical; min-height: 140px; }
.vox-form-status { margin-top: 12px; font-size: 14px; font-weight: 600; font-family: var(--font-body); }

/* ── MARQUEE ── */
.vox-marquee-section { padding: 48px 24px; background: #fff; border-bottom: 1px solid var(--c-border); overflow: hidden; }
.vox-marquee-title { text-align: center; font-size: 13px; font-weight: 600; color: var(--c-text3); letter-spacing: .6px; text-transform: uppercase; margin-bottom: 28px; font-family: var(--font-body); }
.vox-marquee-wrap { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent); mask: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent); }
.vox-marquee-track { display: flex; align-items: center; gap: var(--vox-logo-gap, 64px); width: max-content; animation: voxMarquee var(--vox-logo-speed, 30s) linear infinite; }
.vox-marquee-track:hover { animation-play-state: paused; }
@keyframes voxMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Base logo */
.vox-client-logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 1; filter: none; transition: opacity .25s, transform .25s, filter .25s; }
.vox-client-logo img { height: var(--vox-logo-h, 48px); max-height: var(--vox-logo-h, 48px); width: auto; max-width: var(--vox-logo-w, 140px); object-fit: contain; display: block; }
.vox-client-logo:hover { opacity: .9; transform: scale(1.07); }

/* Grayscale on hover (hover restores color) */
.vox-logo--gs-hover { filter: grayscale(1); opacity: .55; }
.vox-logo--gs-hover:hover { filter: none; opacity: 1; }

/* Always grayscale, no hover change */
.vox-logo--gs-always { filter: grayscale(1); opacity: .5; }
.vox-logo--gs-always:hover { filter: grayscale(1); opacity: .65; transform: none; }

.vox-client-name { font-size: 16px; font-weight: 800; color: var(--c-text); white-space: nowrap; font-family: var(--font-head); letter-spacing: -.5px; }

/* ── PAGE HEADER ── */
.vox-page-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e2a4a 60%, #0f172a 100%);
  color: #fff; padding: 120px 24px 80px; text-align: center;
}
.vox-page-header h1 {
  font-family: var(--font-head); font-size: clamp(36px, 4vw, 54px);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.vox-page-header p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 700px; margin: 0 auto; font-family: var(--font-body); }
.vox-breadcrumb { margin-bottom: 30px; font-size: 14px; color: rgba(255,255,255,.6); font-family: var(--font-body); }
.vox-breadcrumb a { color: rgba(255,255,255,.8); }
.vox-breadcrumb a:hover { color: #fff; }

/* ── PRICING ── */
.vox-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vox-pricing-card {
  background: #fff; border: 2px solid var(--c-border);
  border-radius: var(--r-lg); padding: 36px 28px; position: relative;
  transition: all .3s;
}
.vox-pricing-card.featured {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,.08);
  transform: scale(1.03);
}
.vox-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.vox-pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.vox-pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  color: #fff; font-size: 12px; font-weight: 700; padding: 6px 20px;
  border-radius: 100px; white-space: nowrap; font-family: var(--font-body);
}
.vox-pricing-plan { font-size: 13px; font-weight: 700; color: var(--c-accent); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; font-family: var(--font-body); }
.vox-pricing-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.vox-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.vox-price-currency { font-size: 20px; font-weight: 700; color: var(--c-text2); font-family: var(--font-head); }
.vox-price-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--c-text); letter-spacing: -2px; line-height: 1; }
.vox-price-period { font-size: 14px; color: var(--c-text3); font-family: var(--font-body); }
.vox-pricing-desc { font-size: 14px; color: var(--c-text2); margin-bottom: 24px; line-height: 1.6; font-family: var(--font-body); }
.vox-pricing-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.vox-pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--c-text); font-family: var(--font-body);
}
.vox-pricing-feature::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(16,185,129,.12); color: var(--c-green);
  font-size: 11px; font-weight: 800; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── TRUST SECTION ── */
.vox-trust-section { background: #0f172a; color: #fff; padding: 80px 24px; }
.vox-trust-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; max-width: var(--maxw); margin: 0 auto;
}
.vox-trust-inner h2 { font-family: var(--font-head); font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin-bottom: 20px; line-height: 1.25; }
.vox-trust-inner p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.75; margin-bottom: 24px; font-family: var(--font-body); }
.vox-trust-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.vox-trust-tag {
  font-size: 13px; font-weight: 600; padding: 8px 16px;
  border-radius: 100px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.85);
  font-family: var(--font-body);
}

/* ── PAGE HEADER: CTA BUTTON ── */
.vox-page-header__btn { margin-top: 28px; }
.vox-btn-header-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--c-text); font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: var(--r); text-decoration: none;
  transition: all .3s; font-family: var(--font-body); box-shadow: var(--shadow-lg);
}
.vox-btn-header-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }

/* ── ICON FEATURE GRID ── */
.vox-icon-grid { display: grid; gap: 24px; }
.vox-icon-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.vox-icon-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.vox-icon-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.vox-icon-card {
  display: block; background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 28px 24px; text-decoration: none;
  transition: all .3s; color: inherit;
}
.vox-icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vox-icon-grid--plain .vox-icon-card {
  background: transparent; border: none; padding: 16px 12px; text-align: center;
}
.vox-icon-grid--plain .vox-icon-card:hover { transform: translateY(-2px); box-shadow: none; }
.vox-icon-card__icon {
  width: 52px; height: 52px; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(59,130,246,.1));
  border-radius: 14px; margin-bottom: 16px;
}
.vox-icon-grid--plain .vox-icon-card__icon { margin: 0 auto 12px; }
.vox-icon-card h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--c-text); margin-bottom: 8px;
}
.vox-icon-grid--plain .vox-icon-card h3 { font-size: 15px; }
.vox-icon-card p { font-size: 14px; color: var(--c-text2); line-height: 1.65; font-family: var(--font-body); }
.vox-icon-card__link { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--c-accent); font-family: var(--font-body); }

/* ── PROCESS STEPS ── */
.vox-process-list { max-width: 760px; margin: 0 auto; position: relative; }
.vox-process-step { display: flex; gap: 24px; position: relative; padding-bottom: 36px; }
.vox-process-step:last-child { padding-bottom: 0; }
.vox-process-step::before {
  content: ''; position: absolute; left: 20px; top: 44px; bottom: 0;
  width: 2px; background: var(--c-border);
}
.vox-process-step:last-child::before { display: none; }
.vox-process-num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  box-shadow: var(--shadow-md); position: relative; z-index: 1;
}
.vox-process-body { padding-top: 6px; }
.vox-process-body h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--c-text); margin-bottom: 6px; }
.vox-process-body p { font-size: 14px; color: var(--c-text2); line-height: 1.7; font-family: var(--font-body); }

/* ── QUICK CONNECT SIDEBAR ── */
.vox-quick-connect {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-md);
}
.vox-quick-connect--sticky { position: sticky; top: 100px; }
.vox-quick-connect h3 { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--c-text); margin-bottom: 18px; }
.vox-quick-connect h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--c-text); margin-bottom: 14px; }
.vox-btn-wa-solid, .vox-btn-call-solid {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 20px; border-radius: var(--r);
  font-weight: 700; font-size: 14px; text-decoration: none;
  font-family: var(--font-body); margin-bottom: 10px; transition: all .2s;
}
.vox-btn-wa-solid { background: #25d366; color: #fff; }
.vox-btn-wa-solid:hover { background: #1ebe5a; transform: translateY(-1px); color: #fff; }
.vox-btn-call-solid { background: var(--c-accent); color: #fff; }
.vox-btn-call-solid:hover { background: var(--c-accent2); transform: translateY(-1px); color: #fff; }
.vox-quick-connect__form { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--c-border); }

/* ── CONTENT + CHECKLIST ── */
.vox-checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.vox-checklist-grid--reverse { direction: rtl; }
.vox-checklist-grid--reverse > * { direction: ltr; }
.vox-checklist-image img { width: 100%; border-radius: var(--r-lg); display: block; box-shadow: var(--shadow-lg); }
.vox-checklist-content .vox-small-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--c-accent); background: #eef2ff;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
  font-family: var(--font-body);
}
.vox-checklist-content h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--c-text); margin-bottom: 14px; line-height: 1.25; }
.vox-checklist-meta { font-size: 13px; font-weight: 700; color: var(--c-text2); margin-bottom: 10px !important; }
.vox-checklist-content p { color: var(--c-text2); line-height: 1.75; margin-bottom: 16px; font-family: var(--font-body); }
.vox-checklist-subhead { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--c-text); margin: 20px 0 12px; }
.vox-checklist { display: flex; flex-direction: column; gap: 10px; margin: 0 0 20px; list-style: none; padding: 0; }
.vox-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--c-text); font-family: var(--font-body); line-height: 1.5;
}
.vox-checklist li::before {
  content: '✓'; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-green); color: #fff; border-radius: 50%;
  font-size: 10px; font-weight: 800;
}
.vox-result-box {
  background: var(--c-bg2); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 24px; margin-top: 8px;
}
.vox-result-box h4 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--c-text); margin-bottom: 14px; }
.vox-result-box .vox-checklist { margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .vox-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .vox-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vox-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .vox-pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .vox-pricing-card.featured { transform: none; }
  .vox-trust-inner { grid-template-columns: 1fr; }
  .vox-icon-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
  .vox-icon-grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
  .vox-quick-connect--sticky { position: static; }
  .vox-about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* General sections */
  .vox-section { padding: 56px 16px; }
  .vox-container { padding: 0 16px; }
  .vox-heading { margin-bottom: 36px; }
  .vox-heading h2 { font-size: clamp(22px, 6vw, 32px); }

  /* Hero */
  .vox-hero { padding: 80px 16px 56px; }
  .vox-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .vox-hero-media { order: -1; }
  .vox-hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .vox-hero p { font-size: 15px; }
  .vox-hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .vox-hero-actions a { width: 100%; text-align: center; justify-content: center; }

  /* Page header */
  .vox-page-header { padding: 72px 16px 52px; }
  .vox-breadcrumb { font-size: 12px; }
  .vox-page-header h1 { font-size: clamp(24px, 7vw, 40px); }

  /* Stats */
  .vox-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .vox-stat-card { padding: 20px 14px; }
  .vox-stat-num { font-size: 28px; }
  .vox-stat-label { font-size: 12px; }
  .vox-stat-icon { width: 44px; height: 44px; margin-bottom: 14px; }

  /* Services / cards */
  .vox-cards-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Portfolio */
  .vox-portfolio-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .vox-testi-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About */
  .vox-about-grid { grid-template-columns: 1fr; }
  .vox-about-video { border-radius: var(--r); }

  /* Contact */
  .vox-contact-grid { grid-template-columns: 1fr; }
  .vox-form-row { grid-template-columns: 1fr; }

  /* Icon grid */
  .vox-icon-grid--cols-2,
  .vox-icon-grid--cols-3,
  .vox-icon-grid--cols-4 { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Process steps */
  .vox-process-step { gap: 14px; }
  .vox-process-num { width: 36px; height: 36px; font-size: 15px; }

  /* Content + checklist */
  .vox-checklist-grid,
  .vox-checklist-grid--reverse { grid-template-columns: 1fr; direction: ltr; }

  /* Quick connect */
  .vox-quick-connect--sticky { position: static; }

  /* Trust section */
  .vox-trust-inner { grid-template-columns: 1fr; gap: 36px; }

  /* CTA / pricing */
  .vox-pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .vox-pricing-card.featured { transform: none; }

  /* FAQ */
  .vox-faq-item summary { font-size: 15px; padding: 16px; }

  /* Footer */
  .voxnik-footer { padding: 56px 16px 24px; }
  .voxnik-footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .voxnik-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .vox-stats-grid { grid-template-columns: 1fr 1fr; }
  .vox-icon-grid--cols-2,
  .vox-icon-grid--cols-3,
  .vox-icon-grid--cols-4 { grid-template-columns: 1fr; }
  .vox-hero-actions a { font-size: 14px; padding: 12px 20px; }
  .vox-btn-primary,
  .vox-btn-ghost { font-size: 14px; padding: 11px 20px; }
}

/* ── PORTFOLIO DETAIL PAGE ── */
.vpd-root { overflow: hidden; }
.vpd-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.vpd-detail-image img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); margin-bottom: 24px; display: block; }
.vpd-block-title { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--c-text); margin-bottom: 6px; line-height: 1.3; }
.vpd-meta { font-size: 14px; color: var(--c-text2); margin-bottom: 18px; font-family: var(--font-body); }
.vpd-paragraph { color: var(--c-text2); line-height: 1.75; margin-bottom: 14px; font-family: var(--font-body); font-size: 15px; }

.vpd-sidebar-sub { font-size: 13px; color: var(--c-text2); margin: -8px 0 18px; line-height: 1.6; font-family: var(--font-body); }
.vpd-divider { text-align: center; font-size: 12px; color: var(--c-text3); font-weight: 600; margin: 18px 0 12px; font-family: var(--font-body); }

.vpd-social-block { margin-top: 56px; }
.vpd-social-heading { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--c-text); margin-bottom: 16px; }
.vpd-social-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.vpd-social-pill {
  display: inline-flex; align-items: center; padding: 10px 22px;
  border-radius: 100px; font-size: 14px; font-weight: 700;
  font-family: var(--font-body); border: 1.5px solid transparent; transition: all .2s;
}
.vpd-social-pill--facebook  { background: rgba(37,99,235,.08); color: var(--c-accent); }
.vpd-social-pill--facebook:hover  { background: var(--c-accent); color: #fff; }
.vpd-social-pill--instagram { background: rgba(236,72,153,.08); color: #ec4899; }
.vpd-social-pill--instagram:hover { background: #ec4899; color: #fff; }
.vpd-social-pill--neutral   { background: var(--c-bg2); color: var(--c-text2); border-color: var(--c-border); }
.vpd-social-pill--neutral:hover   { background: var(--c-text2); color: #fff; }

.vpd-midcta {
  background: var(--c-bg2); border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 44px 24px; text-align: center;
}
.vpd-midcta h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--c-text); margin-bottom: 10px; }
.vpd-midcta p { color: var(--c-text2); font-family: var(--font-body); margin-bottom: 24px; }
.vpd-midcta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.vpd-midcta-actions .vox-btn-call-solid,
.vpd-midcta-actions .vox-btn-wa-solid { width: auto; margin-bottom: 0; padding: 13px 28px; }

.vpd-similar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vpd-similar-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  overflow: hidden; transition: all .3s;
}
.vpd-similar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vpd-similar-card__img {
  width: 100%; height: 160px; background: linear-gradient(135deg, #f0f4ff, #dde3f8);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--c-accent);
}
.vpd-similar-card__img img { width: 100%; height: 160px; object-fit: cover; }
.vpd-similar-card__body { padding: 18px; }
.vpd-similar-card__body h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--c-text); margin-bottom: 14px; }
.vpd-similar-card__actions { display: flex; gap: 8px; }
.vpd-btn-view, .vpd-btn-visit {
  flex: 1; text-align: center; padding: 9px 12px; border-radius: var(--r);
  font-size: 13px; font-weight: 700; font-family: var(--font-body); transition: all .2s;
}
.vpd-btn-view {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2)); color: #fff;
}
.vpd-btn-view:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.vpd-btn-visit { background: #fff; color: var(--c-text2); border: 1.5px solid var(--c-border); }
.vpd-btn-visit:hover { border-color: var(--c-text2); }

@media (max-width: 1024px) {
  .vpd-detail-grid { grid-template-columns: 1fr; }
  .vpd-similar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vpd-similar-grid { grid-template-columns: 1fr; }
  .vpd-midcta-actions { flex-direction: column; align-items: stretch; }
}
