/* =============================================
   Web Graphic Design – wg-style.css
   Main Stylesheet
   ============================================= */

:root {
  --wg-color-primary: #0A1628;
  --wg-color-secondary: #1A3A6B;
  --wg-color-accent: #E84B3A;
  --wg-color-accent2: #F5A623;
  --wg-color-light: #F7F8FC;
  --wg-color-white: #FFFFFF;
  --wg-color-text: #1C2340;
  --wg-color-text-muted: #6B7280;
  --wg-color-border: #E2E8F0;
  --wg-color-card-bg: #FFFFFF;
  --wg-font-heading: 'Playfair Display', Georgia, serif;
  --wg-font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --wg-font-mono: 'JetBrains Mono', monospace;
  --wg-shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
  --wg-shadow-md: 0 4px 20px rgba(10,22,40,0.12);
  --wg-shadow-lg: 0 16px 48px rgba(10,22,40,0.16);
  --wg-radius-sm: 6px;
  --wg-radius-md: 12px;
  --wg-radius-lg: 24px;
  --wg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--wg-font-body);
  color: var(--wg-color-text);
  background: var(--wg-color-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--wg-font-heading);
  color: var(--wg-color-primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.wg-text-accent { color: var(--wg-color-accent); }
.wg-text-muted { color: var(--wg-color-text-muted); }

/* ── Utility ── */
.wg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.wg-section {
  padding: 96px 0;
}
.wg-section-sm {
  padding: 64px 0;
}
.wg-text-center { text-align: center; }
.wg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--wg-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--wg-transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--wg-font-body);
}
.wg-btn-primary {
  background: var(--wg-color-accent);
  color: var(--wg-color-white);
  border-color: var(--wg-color-accent);
}
.wg-btn-primary:hover {
  background: #c73828;
  border-color: #c73828;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,75,58,0.3);
}
.wg-btn-outline {
  background: transparent;
  color: var(--wg-color-primary);
  border-color: var(--wg-color-primary);
}
.wg-btn-outline:hover {
  background: var(--wg-color-primary);
  color: var(--wg-color-white);
  transform: translateY(-2px);
}
.wg-btn-white {
  background: var(--wg-color-white);
  color: var(--wg-color-accent);
  border-color: var(--wg-color-white);
}
.wg-btn-white:hover {
  background: var(--wg-color-light);
  transform: translateY(-2px);
}
.wg-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(232,75,58,0.1);
  color: var(--wg-color-accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.wg-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wg-color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.wg-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wg-color-accent);
}

/* ── Navbar ── */
.wg-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--wg-transition);
  background-color: #0A1628;
}
.wg-navbar.wg-navbar-scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.wg-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wg-navbar-logo {
  font-family: var(--wg-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wg-color-white);
}
.wg-navbar-logo span { color: var(--wg-color-accent); }
.wg-navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.wg-navbar-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--wg-transition);
}
.wg-navbar-nav a:hover { color: var(--wg-color-white); }
.wg-navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wg-navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.wg-navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wg-color-white);
  transition: var(--wg-transition);
}
@media (max-width: 992px) {
  .wg-navbar-nav, .wg-navbar-cta { display: none; }
  .wg-navbar-toggle { display: flex; }
}
.wg-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--wg-color-primary);
  z-index: 999;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 24px;
}
.wg-mobile-menu.wg-open { display: flex; }
.wg-mobile-menu a {
  color: var(--wg-color-white);
  font-size: 1.5rem;
  font-family: var(--wg-font-heading);
}
.wg-mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--wg-color-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero Section ── */
.wg-hero {
  min-height: 100vh;
  background: var(--wg-color-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.wg-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,58,107,0.8) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 80%, rgba(232,75,58,0.15) 0%, transparent 60%);
}
.wg-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.wg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.wg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  margin-bottom: 28px;
}
.wg-hero-badge i { color: var(--wg-color-accent2); }
.wg-hero h1 {
  color: var(--wg-color-white);
  margin-bottom: 24px;
}
.wg-hero h1 em {
  font-style: normal;
  color: var(--wg-color-accent);
}
.wg-hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 40px;
}
.wg-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.wg-hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.wg-hero-stat-num {
  font-family: var(--wg-font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--wg-color-white);
  line-height: 1;
}
.wg-hero-stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-top: 4px;
}
.wg-hero-image-side {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  height: 80%;
  border-radius: var(--wg-radius-lg) 0 0 var(--wg-radius-lg);
  overflow: hidden;
  opacity: 0.6;
}
.wg-hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .wg-hero-image-side { display: none; }
  .wg-hero-stats { gap: 24px; }
}

/* ── Cards ── */
.wg-card {
  background: var(--wg-color-card-bg);
  border-radius: var(--wg-radius-md);
  box-shadow: var(--wg-shadow-sm);
  transition: var(--wg-transition);
  overflow: hidden;
}
.wg-card:hover {
  box-shadow: var(--wg-shadow-lg);
  transform: translateY(-4px);
}
.wg-card-body { padding: 32px; }

/* ── Services Grid ── */
.wg-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.wg-service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--wg-radius-sm);
  background: rgba(232,75,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--wg-color-accent);
  margin-bottom: 20px;
}

/* ── Process Steps ── */
.wg-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}
.wg-process-step {
  text-align: center;
  position: relative;
}
.wg-process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wg-color-primary);
  color: var(--wg-color-white);
  font-family: var(--wg-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ── Testimonials ── */
.wg-testimonial-card {
  background: var(--wg-color-white);
  border-radius: var(--wg-radius-md);
  padding: 36px;
  box-shadow: var(--wg-shadow-md);
}
.wg-testimonial-stars {
  color: var(--wg-color-accent2);
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.wg-testimonial-text {
  font-size: 1.05rem;
  color: var(--wg-color-text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.75;
}
.wg-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wg-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.wg-testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
}
.wg-testimonial-role {
  font-size: 0.8rem;
  color: var(--wg-color-text-muted);
}

/* ── Team Cards ── */
.wg-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.wg-team-card {
  background: var(--wg-color-white);
  border-radius: var(--wg-radius-md);
  overflow: hidden;
  box-shadow: var(--wg-shadow-sm);
  transition: var(--wg-transition);
}
.wg-team-card:hover { box-shadow: var(--wg-shadow-lg); transform: translateY(-6px); }
.wg-team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.wg-team-info { padding: 24px; }
.wg-team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.wg-team-role { color: var(--wg-color-accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.wg-team-bio { font-size: 0.88rem; color: var(--wg-color-text-muted); line-height: 1.65; }

/* ── FAQ Accordion ── */
.wg-faq-item {
  border-bottom: 1px solid var(--wg-color-border);
}
.wg-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--wg-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wg-color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.wg-faq-icon { font-size: 1.1rem; transition: var(--wg-transition); color: var(--wg-color-accent); }
.wg-faq-item.wg-active .wg-faq-icon { transform: rotate(45deg); }
.wg-faq-answer {
  display: none;
  padding-bottom: 24px;
  color: var(--wg-color-text-muted);
  line-height: 1.8;
}
.wg-faq-item.wg-active .wg-faq-answer { display: block; }

/* ── CTA Section ── */
.wg-cta-section {
  background: var(--wg-color-primary);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.wg-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,75,58,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.wg-cta-title {
  color: var(--wg-color-white);
  margin-bottom: 16px;
}
.wg-cta-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── Footer ── */
.wg-footer {
  background: #06101F;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.wg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .wg-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .wg-footer-grid { grid-template-columns: 1fr; }
}
.wg-footer-logo {
  font-family: var(--wg-font-heading);
  font-size: 1.4rem;
  color: var(--wg-color-white);
  margin-bottom: 16px;
}
.wg-footer-logo span { color: var(--wg-color-accent); }
.wg-footer-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.wg-footer-social {
  display: flex;
  gap: 12px;
}
.wg-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--wg-transition);
  color: rgba(255,255,255,0.7);
}
.wg-footer-social a:hover { background: var(--wg-color-accent); color: white; }
.wg-footer-col-title {
  color: var(--wg-color-white);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wg-footer-links { display: flex; flex-direction: column; gap: 10px; }
.wg-footer-links a {
  font-size: 0.88rem;
  transition: var(--wg-transition);
}
.wg-footer-links a:hover { color: var(--wg-color-white); }
.wg-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.wg-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.wg-footer-legal a { transition: var(--wg-transition); }
.wg-footer-legal a:hover { color: var(--wg-color-white); }

/* ── Page Hero ── */
.wg-page-hero {
  background: var(--wg-color-primary);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.wg-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--wg-color-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.wg-page-hero-title { color: var(--wg-color-white); margin-bottom: 16px; }
.wg-page-hero-desc { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 640px; }

/* ── Breadcrumb ── */
.wg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}
.wg-breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--wg-transition); }
.wg-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.wg-breadcrumb span { color: rgba(255,255,255,0.35); }
.wg-breadcrumb-current { color: rgba(255,255,255,0.8); }

/* ── Contact Form ── */
.wg-form-group { margin-bottom: 20px; }
.wg-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--wg-color-primary);
}
.wg-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--wg-color-border);
  border-radius: var(--wg-radius-sm);
  font-family: var(--wg-font-body);
  font-size: 0.95rem;
  color: var(--wg-color-text);
  background: var(--wg-color-white);
  transition: var(--wg-transition);
  outline: none;
}
.wg-form-control:focus {
  border-color: var(--wg-color-secondary);
  box-shadow: 0 0 0 4px rgba(26,58,107,0.1);
}
.wg-form-control.wg-error { border-color: var(--wg-color-accent); }
.wg-form-error-msg {
  display: none;
  font-size: 0.8rem;
  color: var(--wg-color-accent);
  margin-top: 4px;
}
.wg-form-control.wg-error + .wg-form-error-msg { display: block; }
textarea.wg-form-control { resize: vertical; min-height: 140px; }

/* ── Quiz ── */
.wg-quiz-wrapper {
  background: var(--wg-color-white);
  border-radius: var(--wg-radius-lg);
  padding: 48px;
  box-shadow: var(--wg-shadow-md);
  max-width: 700px;
  margin: 0 auto;
}
.wg-quiz-progress {
  background: var(--wg-color-border);
  border-radius: 100px;
  height: 6px;
  margin-bottom: 40px;
  overflow: hidden;
}
.wg-quiz-progress-bar {
  height: 100%;
  background: var(--wg-color-accent);
  border-radius: 100px;
  transition: width 0.4s ease;
}
.wg-quiz-question {
  font-family: var(--wg-font-heading);
  font-size: 1.4rem;
  margin-bottom: 28px;
}
.wg-quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 500px) { .wg-quiz-options { grid-template-columns: 1fr; } }
.wg-quiz-option {
  padding: 16px 20px;
  border: 2px solid var(--wg-color-border);
  border-radius: var(--wg-radius-sm);
  cursor: pointer;
  transition: var(--wg-transition);
  font-size: 0.92rem;
  font-weight: 500;
  background: var(--wg-color-white);
  text-align: left;
  font-family: var(--wg-font-body);
}
.wg-quiz-option:hover { border-color: var(--wg-color-accent); background: rgba(232,75,58,0.04); }
.wg-quiz-option.wg-selected { border-color: var(--wg-color-accent); background: rgba(232,75,58,0.08); color: var(--wg-color-accent); }
.wg-quiz-result {
  display: none;
  text-align: center;
  padding: 16px;
}
.wg-quiz-result.wg-visible { display: block; }
.wg-quiz-result-icon { font-size: 3rem; color: var(--wg-color-accent); margin-bottom: 16px; }
.wg-quiz-result-title { font-size: 1.6rem; margin-bottom: 12px; }
.wg-quiz-result-desc { color: var(--wg-color-text-muted); line-height: 1.8; }

/* ── Estimator ── */
.wg-estimator {
  background: var(--wg-color-white);
  border-radius: var(--wg-radius-lg);
  padding: 48px;
  box-shadow: var(--wg-shadow-md);
}
.wg-estimator-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--wg-color-border);
  flex-wrap: wrap;
  gap: 12px;
}
.wg-estimator-label { font-weight: 600; font-size: 0.95rem; }
.wg-estimator-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wg-estimator-total {
  background: var(--wg-color-primary);
  color: var(--wg-color-white);
  border-radius: var(--wg-radius-md);
  padding: 28px 32px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wg-estimator-price {
  font-family: var(--wg-font-heading);
  font-size: 2.4rem;
  font-weight: 700;
}

/* ── Before/After Slider ── */
.wg-ba-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--wg-radius-md);
  cursor: ew-resize;
  user-select: none;
  max-width: 800px;
  margin: 0 auto;
}
.wg-ba-container img {
  width: 100%;
  display: block;
}
.wg-ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  overflow: hidden;
  height: 100%;
}
.wg-ba-after img {
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  max-width: none;
}
.wg-ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--wg-color-white);
  transform: translateX(-50%);
  cursor: ew-resize;
}
.wg-ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wg-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: var(--wg-color-primary);
  font-size: 0.9rem;
}
.wg-ba-label {
  position: absolute;
  top: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.wg-ba-label-before { left: 16px; background: rgba(0,0,0,0.5); color: white; }
.wg-ba-label-after { right: 16px; background: var(--wg-color-accent); color: white; }

/* ── Tab Component ── */
.wg-tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--wg-color-border);
  margin-bottom: 32px;
  overflow-x: auto;
}
.wg-tab-btn {
  padding: 12px 24px;
  border: none;
  background: none;
  font-family: var(--wg-font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wg-color-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--wg-transition);
}
.wg-tab-btn.wg-active {
  color: var(--wg-color-accent);
  border-bottom-color: var(--wg-color-accent);
}
.wg-tab-pane { display: none; }
.wg-tab-pane.wg-active { display: block; }

/* ── Cookie Banner ── */
.wg-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--wg-color-primary);
  color: rgba(255,255,255,0.85);
  border-radius: var(--wg-radius-md);
  padding: 24px;
  box-shadow: var(--wg-shadow-lg);
  z-index: 9999;
  font-size: 0.88rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.wg-cookie-banner.wg-hidden { transform: translateY(20px); opacity: 0; pointer-events: none; }
.wg-cookie-title { color: white; font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.wg-cookie-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.wg-cookie-accept {
  padding: 8px 20px;
  background: var(--wg-color-accent);
  color: white;
  border: none;
  border-radius: var(--wg-radius-sm);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--wg-font-body);
}
.wg-cookie-decline {
  padding: 8px 20px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--wg-radius-sm);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--wg-font-body);
}

/* ── Article ── */
.wg-article-hero {
  background: var(--wg-color-primary);
  padding: 160px 0 80px;
  position: relative;
}
.wg-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 0.85rem;
}
.wg-article-meta-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); }
.wg-article-title { color: var(--wg-color-white); margin-bottom: 20px; }
.wg-article-lead { color: rgba(255,255,255,0.75); font-size: 1.15rem; line-height: 1.75; max-width: 680px; }
.wg-article-body { max-width: 780px; margin: 0 auto; padding: 64px 24px; }
.wg-article-body h2 { margin: 48px 0 16px; font-size: 1.8rem; }
.wg-article-body h3 { margin: 32px 0 12px; font-size: 1.3rem; }
.wg-article-body p { color: #374151; line-height: 1.85; margin-bottom: 1.2rem; }
.wg-article-body ul, .wg-article-body ol {
  padding-left: 24px;
  margin-bottom: 1.2rem;
  color: #374151;
  line-height: 1.8;
}
.wg-article-body li { margin-bottom: 8px; }
.wg-article-body img {
  width: 100%;
  border-radius: var(--wg-radius-md);
  margin: 40px 0;
  box-shadow: var(--wg-shadow-md);
}
.wg-article-body blockquote {
  border-left: 4px solid var(--wg-color-accent);
  padding: 20px 24px;
  margin: 32px 0;
  background: rgba(232,75,58,0.04);
  border-radius: 0 var(--wg-radius-sm) var(--wg-radius-sm) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wg-color-secondary);
  line-height: 1.75;
}
.wg-article-pullquote {
  font-family: var(--wg-font-heading);
  font-size: 1.5rem;
  color: var(--wg-color-primary);
  border-top: 3px solid var(--wg-color-accent);
  border-bottom: 3px solid var(--wg-color-accent);
  padding: 28px 0;
  margin: 48px 0;
  line-height: 1.45;
}
.wg-article-stat-box {
  background: var(--wg-color-primary);
  color: white;
  border-radius: var(--wg-radius-md);
  padding: 32px;
  margin: 40px 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.wg-article-stat-num {
  font-family: var(--wg-font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--wg-color-accent);
  line-height: 1;
}
.wg-article-stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 4px; }

/* ── Thank You ── */
.wg-thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wg-color-primary);
}
.wg-thankyou-card {
  background: var(--wg-color-white);
  border-radius: var(--wg-radius-lg);
  padding: 64px 48px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  margin: 24px;
}
.wg-thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232,75,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--wg-color-accent);
  margin: 0 auto 28px;
}

/* ── Legal Pages ── */
.wg-legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.wg-legal-body h2 { margin: 40px 0 12px; }
.wg-legal-body h3 { margin: 28px 0 10px; }
.wg-legal-body p, .wg-legal-body li { color: #374151; line-height: 1.85; }
.wg-legal-body ul { padding-left: 20px; margin-bottom: 1rem; }
.wg-legal-body li { margin-bottom: 8px; }

/* ── Scroll Reveal ── */
.wg-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.wg-reveal.wg-revealed {
  opacity: 1;
  transform: none;
}
.wg-reveal-delay-1 { transition-delay: 0.1s; }
.wg-reveal-delay-2 { transition-delay: 0.2s; }
.wg-reveal-delay-3 { transition-delay: 0.3s; }
.wg-reveal-delay-4 { transition-delay: 0.4s; }

/* ── Counter ── */
.wg-counter-section { background: var(--wg-color-white); }
.wg-counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.wg-counter-item {
  text-align: center;
  padding: 48px 32px;
  border-right: 1px solid var(--wg-color-border);
}
.wg-counter-item:last-child { border-right: none; }
.wg-counter-num {
  font-family: var(--wg-font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--wg-color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.wg-counter-suffix { color: var(--wg-color-accent); }
.wg-counter-label { color: var(--wg-color-text-muted); font-size: 0.88rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .wg-section { padding: 64px 0; }
  .wg-quiz-wrapper, .wg-estimator { padding: 28px 20px; }
  .wg-counter-grid { grid-template-columns: 1fr 1fr; }
  .wg-counter-item { border-right: none; border-bottom: 1px solid var(--wg-color-border); }
  .wg-estimator-row { flex-direction: column; align-items: flex-start; }
}


.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}

.wg-footer-social{
  display: none!important;
}

.advertorial-bar {
    background: #fff;
    border-bottom: 1px solid #c73828;
    padding: 10px 24px;
    font-family: var(--font-ui);
    font-size: .78rem;
    color: #c73828;
    text-align: center;
    line-height: 1.55;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
}