:root{
  --wl-cyan:#4FC3D9;
  --wl-purple:#6C63FF;
  --wl-ink:#101828;
  --wl-navy:#12225C;
  --wl-navy-2:#0A1638;
  --wl-gradient: linear-gradient(90deg, var(--wl-cyan) 0%, var(--wl-purple) 100%);
  --wl-radius: 16px;
}

body{
  font-family:'Inter', system-ui, sans-serif;
  color: var(--wl-ink);
  background:#fff;
  scroll-behavior:smooth;
}
h1,h2,h3,h4,h5,.wl-heading{
  font-family:'Poppins', system-ui, sans-serif;
  font-weight:700;
}
::selection{ background:var(--wl-purple); color:#fff; }

/* ===== Navbar ===== */
.wl-navbar{ box-shadow:0 1px 0 rgba(16,24,40,.06); padding-top:.6rem; padding-bottom:.6rem; }
.wl-brand{ font-family:'Poppins',sans-serif; font-weight:800; font-size:1.35rem; color:var(--wl-ink); display:flex; align-items:center; gap:.5rem; text-decoration:none; }
.wl-brand-mark{
  width:34px;height:34px;border-radius:9px;background:var(--wl-gradient);
  color:#fff; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0;
}
.wl-accent{ color:var(--wl-purple); }
.wl-accent-light{ color:var(--wl-cyan); }
.wl-navbar .nav-link{ color:#344054; font-weight:500; position:relative; padding-bottom:.35rem; }
.wl-navbar .nav-link.active,.wl-navbar .nav-link:hover{ color:var(--wl-purple); }
.wl-navbar .nav-link.active::after{
  content:''; position:absolute; left:.5rem; right:.5rem; bottom:0; height:2px; background:var(--wl-gradient); border-radius:2px;
}

.wl-btn-cta{
  background:var(--wl-gradient); color:#fff !important; border:none; font-weight:600;
  border-radius:999px; transition:opacity .2s, transform .2s, box-shadow .2s;
  box-shadow:0 4px 14px rgba(108,99,255,.28);
}
.wl-btn-cta:hover{ opacity:.94; transform:translateY(-1px); color:#fff; box-shadow:0 8px 20px rgba(108,99,255,.35); }
.wl-btn-outline{
  border:2px solid var(--wl-ink); color:var(--wl-ink); border-radius:999px; font-weight:600; background:#fff; transition:background .18s, color .18s;
}
.wl-btn-outline:hover{ background:var(--wl-ink); color:#fff; }
.wl-btn-accent{
  background:var(--wl-purple); color:#fff; border:none; border-radius:999px; font-weight:600; transition:background .18s, transform .18s;
}
.wl-btn-accent:hover{ background:#5a52e0; color:#fff; transform:translateY(-1px); }

/* ===== Hero / Banner slider ===== */
.wl-hero{
  position:relative; overflow:hidden; min-height:520px; display:flex; align-items:center;
  background:radial-gradient(120% 140% at 15% 20%, #1A2E7A 0%, var(--wl-navy) 45%, var(--wl-navy-2) 100%);
}
.wl-hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transition:opacity .8s ease; display:flex; align-items:center;
}
.wl-hero-slide.active{ opacity:1; }
.wl-hero-slide::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(10,22,56,.88) 0%, rgba(10,22,56,.55) 60%, rgba(10,22,56,.25) 100%);
}
.wl-hero-content{ position:relative; z-index:2; color:#fff; padding:80px 0; }
.wl-hero-content h1{ font-size:clamp(2rem,4vw,3.25rem); line-height:1.15; }
.wl-hero-content p.lead{ color:rgba(255,255,255,.8); font-size:1.15rem; }
.wl-hero-dots{ position:absolute; bottom:24px; left:0; right:0; z-index:3; display:flex; justify-content:center; gap:8px; }
.wl-hero-dots button{
  width:9px; height:9px; border-radius:50%; border:none; background:rgba(255,255,255,.4); padding:0; cursor:pointer;
}
.wl-hero-dots button.active{ background:#fff; width:24px; border-radius:6px; transition:width .3s; }

.wl-page-hero{
  background: linear-gradient(120deg, #eef6f8 0%, #eeecff 100%);
  padding:64px 0;
}
.wl-page-hero h1{ font-size:clamp(1.75rem,3vw,2.5rem); }

/* ===== Sections & cards ===== */
.wl-section{ padding:72px 0; }
.wl-section-alt{ background:#F8F9FC; }
.wl-eyebrow{ color:var(--wl-purple); font-weight:700; letter-spacing:.06em; text-transform:uppercase; font-size:.8rem; }

.wl-card{
  border:1px solid #EAECF0; border-radius:var(--wl-radius); background:#fff; height:100%;
  transition:transform .2s, box-shadow .2s; padding:28px;
}
.wl-card:hover{ transform:translateY(-4px); box-shadow:0 12px 24px rgba(16,24,40,.08); }
.wl-icon-badge{
  width:52px;height:52px;border-radius:12px;background:linear-gradient(135deg, #4FC3D91a, #6C63FF1a);
  color:var(--wl-purple); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:16px;
}

.wl-usp{ display:flex; gap:14px; align-items:flex-start; }
.wl-usp i{ color:var(--wl-cyan); font-size:1.6rem; }

.wl-logo-strip{ filter:grayscale(1); opacity:.6; }
.wl-logo-strip img{ max-height:36px; }

.wl-project-card img{ border-radius:var(--wl-radius) var(--wl-radius) 0 0; aspect-ratio:16/10; object-fit:cover; width:100%; }
.wl-tag{
  font-size:.75rem; border:1px solid var(--wl-cyan); color:var(--wl-cyan); border-radius:999px; padding:3px 12px; display:inline-block;
  transition:background .18s, color .18s;
}
a.wl-tag:hover, span.wl-tag[role]:hover{ background:var(--wl-cyan); color:#fff; text-decoration:none; }
.wl-filter-btn{ border-radius:999px; border:1px solid #D0D5DD; background:#fff; padding:6px 16px; font-size:.9rem; }
.wl-filter-btn.active,.wl-filter-btn:hover{ background:var(--wl-ink); color:#fff; border-color:var(--wl-ink); }

.wl-pricing-card{ border:2px solid #EAECF0; border-radius:var(--wl-radius); padding:32px; height:100%; background:#fff; transition:transform .2s, box-shadow .2s; }
.wl-pricing-card:hover{ transform:translateY(-4px); }
.wl-pricing-card.wl-popular{ border-color:var(--wl-purple); box-shadow:0 16px 32px rgba(108,99,255,.15); position:relative; }
.wl-pricing-card .price{ font-size:2.5rem; font-weight:800; }

.wl-stars{ color:#F5A524; }

.wl-faq-item .accordion-button{ font-weight:600; }
.wl-faq-item .accordion-button:not(.collapsed){ color:var(--wl-purple); background:#F5F3FF; }

.wl-job-row{ border:1px solid #EAECF0; border-radius:12px; padding:18px 24px; }

/* ===== Footer ===== */
.wl-footer{ background:linear-gradient(180deg, var(--wl-navy) 0%, var(--wl-navy-2) 100%); }
.wl-footer-links li{ margin-bottom:8px; color:rgba(255,255,255,.65); }
.wl-footer-links a{ color:rgba(255,255,255,.65); text-decoration:none; }
.wl-footer-links a:hover{ color:#fff; }




.wl-newsletter-input{ border-radius:999px 0 0 999px; }
.wl-footer form .wl-btn-accent{ border-radius:0 999px 999px 0; }

/* ===== WhatsApp FAB ===== */
.wl-whatsapp-fab{
  position:fixed; bottom:24px; right:24px; width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; box-shadow:0 8px 20px rgba(37,211,102,.4); z-index:999;
}
.wl-whatsapp-fab:hover{ color:#fff; transform:scale(1.06); }

/* ===== Legal pages ===== */
.wl-legal-content h2{ font-size:1.25rem; margin-top:2rem; }
.wl-legal-content p, .wl-legal-content li{ color:#475467; }

/* ===== Dark mode ===== */
[data-bs-theme="dark"] body{ background:#0F1424; color:#E5E7EB; }
[data-bs-theme="dark"] .wl-navbar{ background:#12162A !important; box-shadow:0 1px 0 rgba(255,255,255,.06); }
[data-bs-theme="dark"] .wl-navbar .nav-link{ color:#CBD2E1; }
[data-bs-theme="dark"] .wl-brand{ color:#fff; }
[data-bs-theme="dark"] .wl-section-alt{ background:#151A2E; }
[data-bs-theme="dark"] .wl-card{ background:#1B2036; border-color:#262C46; color:#E5E7EB; }
[data-bs-theme="dark"] .wl-page-hero{ background:linear-gradient(120deg,#151A2E,#1B1E3A); }
[data-bs-theme="dark"] .wl-pricing-card{ background:#1B2036; border-color:#262C46; color:#E5E7EB; }
[data-bs-theme="dark"] .form-control, [data-bs-theme="dark"] .form-select{ background:#1B2036; color:#E5E7EB; border-color:#262C46; }
[data-bs-theme="dark"] .text-secondary{ color:#9AA3B8 !important; }
[data-bs-theme="dark"] .wl-filter-btn{ background:#1B2036; border-color:#262C46; color:#E5E7EB; }

/* Buttons — .wl-btn-outline hardcodes ink-colored text/border, which is
   nearly invisible on the dark background unless explicitly overridden. */
[data-bs-theme="dark"] .wl-btn-outline{ border-color:#E5E7EB; color:#E5E7EB; background:transparent; }
[data-bs-theme="dark"] .wl-btn-outline:hover{ background:#E5E7EB; color:var(--wl-ink); }

/* Body copy inside legal pages / case studies hardcodes a light-mode gray
   that reads as near-invisible dark-on-dark once the page background flips. */
[data-bs-theme="dark"] .wl-legal-content p,
[data-bs-theme="dark"] .wl-legal-content li{ color:#B4BCD0; }
[data-bs-theme="dark"] .wl-legal-content h2{ color:#F1F2F6; }

[data-bs-theme="dark"] .wl-job-row{ background:#1B2036; border-color:#262C46; }
[data-bs-theme="dark"] .wl-whatsapp-fab{ box-shadow:0 8px 20px rgba(0,0,0,.5); }
[data-bs-theme="dark"] .wl-logo-strip{ opacity:.75; filter:grayscale(1) brightness(1.6); }
[data-bs-theme="dark"] hr{ border-color:#262C46; opacity:1; }
[data-bs-theme="dark"] .table{ color:#E5E7EB; }
[data-bs-theme="dark"] .accordion-item{ background:#1B2036; border-color:#262C46; color:#E5E7EB; }
[data-bs-theme="dark"] .accordion-button{ background:#1B2036; color:#E5E7EB; }
[data-bs-theme="dark"] .accordion-button:not(.collapsed){ background:#221B3D; color:#B9AEFF; }
[data-bs-theme="dark"] .accordion-button::after{ filter:invert(1); }
