@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Header / Nav ── */
.ww-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.ww-header.scrolled {
  box-shadow: 0 1px 24px rgba(26,42,94,0.08);
}
.ww-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  gap: 40px;
  position: relative;
}
.ww-header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: #1a2a5e;
  letter-spacing: -0.02em;
  z-index: 2;
}
.ww-header-logo svg {
  width: 36px;
  height: 36px;
}
.ww-header-nav {
  display: flex;
  align-items: center;
  position: absolute;
}
.ww-header-nav--left {
  left: 24px;
  gap: 28px;
}
.ww-header-nav--right {
  right: 24px;
  gap: 16px;
}
.ww-header-nav a {
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  font-weight: 500;
  color: #475569;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.ww-header-nav a:hover {
  color: #7c3aed;
}
.ww-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1a2a5e 0%, #7c3aed 100%);
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.ww-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.3);
  color: #fff;
}
.ww-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 200;
}
.ww-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2a5e;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ── Hero ── */
.ww-hero {
  position: relative;
  padding: clamp(60px, 12vw, 140px) 0 clamp(50px, 10vw, 110px);
  overflow: hidden;
  background: linear-gradient(175deg, #f8faff 0%, #ede9fe 40%, #e0f2fe 100%);
}
.ww-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ww-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,42,94,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ww-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ww-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px 6px 8px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7c3aed;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 50px;
}
.ww-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #7c3aed;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ww-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1a2a5e;
  letter-spacing: -0.035em;
  max-width: 800px;
  margin-bottom: 20px;
}
.ww-hero-title .ww-hero-accent {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ww-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.ww-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 50px;
}
.ww-hero-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 20px;
}
.ww-hero-visual-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(26,42,94,0.15), 0 8px 30px rgba(124,58,237,0.1);
  overflow: hidden;
}
.ww-hero-visual-image img {
  width: 100%;
  display: block;
}

/* ── Buttons ── */
.ww-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1a2a5e 0%, #5b21b6 50%, #7c3aed 100%);
  background-size: 200% 200%;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.5s ease;
  white-space: nowrap;
}
.ww-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124,58,237,0.35);
  background-position: 100% 0;
  color: #fff;
}
.ww-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2a5e;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.ww-btn-secondary:hover {
  border-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  color: #1a2a5e;
}
.ww-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #7c3aed;
  border-radius: 50px;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.ww-btn-ghost:hover {
  background: rgba(124,58,237,0.06);
  color: #7c3aed;
}

/* ── Sections ── */
.ww-section {
  padding: clamp(60px, 10vw, 120px) 0;
}
.ww-section--alt {
  background: #f8faff;
}
.ww-section--gradient {
  background: linear-gradient(175deg, #1a2a5e 0%, #2e1065 100%);
  color: #fff;
}
.ww-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ww-section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c3aed;
  margin-bottom: 12px;
}
.ww-section--gradient .ww-section-eyebrow {
  color: #a78bfa;
}
.ww-section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1a2a5e;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ww-section--gradient .ww-section-heading {
  color: #fff;
}
.ww-section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #64748b;
  max-width: 600px;
  line-height: 1.7;
}
.ww-section--gradient .ww-section-subtitle {
  color: #c4b5fd;
}
.ww-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.ww-section-header .ww-section-subtitle {
  margin: 0 auto;
}

/* ── Cards ── */
.ww-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ww-card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.ww-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.ww-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a2a5e, #7c3aed);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ww-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,42,94,0.1);
  border-color: rgba(124,58,237,0.15);
}
.ww-card:hover::before {
  opacity: 1;
}
.ww-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ede9fe, #dbeafe);
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.ww-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2a5e;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ww-card-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
}
.ww-card--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.ww-card--dark .ww-card-icon {
  background: rgba(124,58,237,0.2);
}
.ww-card--dark .ww-card-title {
  color: #fff;
}
.ww-card--dark .ww-card-text {
  color: #c4b5fd;
}
.ww-card--dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(124,58,237,0.3);
}

/* ── Stats Bar ── */
.ww-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: clamp(40px, 6vw, 70px) 0;
}
.ww-stat {
  text-align: center;
}
.ww-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1a2a5e, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.ww-stat-label {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

/* ── Logos ── */
.ww-logos {
  text-align: center;
  padding: 40px 0;
}
.ww-logos-text {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 24px;
}
.ww-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  opacity: 0.45;
}

/* ── Feature Rows ── */
.ww-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.ww-feature-row:nth-child(even) .ww-feature-row-content {
  order: 2;
}
.ww-feature-row:nth-child(even) .ww-feature-row-visual {
  order: 1;
}
.ww-feature-row-content {
  max-width: 480px;
}
.ww-feature-row-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c3aed;
  margin-bottom: 10px;
}
.ww-feature-row-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a2a5e;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.ww-feature-row-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ww-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ww-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #475569;
}
.ww-feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.ww-feature-row-visual {
  position: relative;
}
.ww-feature-row-visual img {
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(26,42,94,0.12);
  width: 100%;
}

/* ── Testimonial ── */
.ww-testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}
.ww-testimonial-quote {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #334155;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.ww-testimonial-author {
  font-weight: 700;
  color: #1a2a5e;
  font-size: 0.95rem;
}
.ww-testimonial-role {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* ── CTA Section ── */
.ww-cta {
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 0;
  background: linear-gradient(175deg, #ede9fe 0%, #e0f2fe 50%, #f8faff 100%);
}
.ww-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1a2a5e;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ww-cta-text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #64748b;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.ww-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Footer ── */
.ww-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 0;
}
.ww-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ww-footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ww-footer-brand {
  max-width: 280px;
}
.ww-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}
.ww-footer-logo svg {
  width: 32px;
  height: 32px;
}
.ww-footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #64748b;
}
.ww-footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e2e8f0;
  margin-bottom: 18px;
}
.ww-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ww-footer-links a {
  font-size: 0.9rem;
  color: #64748b;
  transition: color 0.2s ease;
}
.ww-footer-links a:hover {
  color: #a78bfa;
}
.ww-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.82rem;
  color: #475569;
}
.ww-footer-bottom-links {
  display: flex;
  gap: 24px;
}
.ww-footer-bottom-links a {
  color: #475569;
  transition: color 0.2s ease;
}
.ww-footer-bottom-links a:hover {
  color: #a78bfa;
}

/* ── Image Placeholder ── */
.ww-image {
  display: block;
  width: 100%;
  border-radius: 12px;
}
.ww-image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 50%, #dbeafe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
}

/* ── Lead Paragraph ── */
.ww-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #475569;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 32px;
}

/* ── Body Text ── */
.ww-body-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.75;
}

/* ── Eyebrow / Label ── */
.ww-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c3aed;
  margin-bottom: 10px;
}

/* ── Animations ── */
.ww-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ww-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .ww-header-nav {
    display: none;
  }
  .ww-header-cta {
    display: none !important;
  }
  .ww-mobile-toggle {
    display: flex;
    position: absolute;
    right: 24px;
  }
  .ww-header-inner {
    justify-content: center;
  }
  .ww-header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 50;
  }
  .ww-header-nav.open {
    display: flex;
  }
  .ww-header-nav--left,
  .ww-header-nav--right {
    position: static;
  }
  .ww-header-nav a {
    font-size: 1.2rem;
  }
  .ww-feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ww-feature-row:nth-child(even) .ww-feature-row-content {
    order: 0;
  }
  .ww-feature-row:nth-child(even) .ww-feature-row-visual {
    order: 0;
  }
  .ww-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .ww-footer-top {
    grid-template-columns: 1fr;
  }
  .ww-card-grid {
    grid-template-columns: 1fr;
  }
  .ww-card-grid--3 {
    grid-template-columns: 1fr;
  }
  .ww-stats {
    grid-template-columns: 1fr 1fr;
  }
  .ww-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
