/* ============================================================
   SoftWebLogic — Main Stylesheet
   Prefix: swl-
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Mono:wght@400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --swl-ink:       #0d0d12;
  --swl-ink-soft:  #1e1e2e;
  --swl-surface:   #f7f6f2;
  --swl-white:     #ffffff;
  --swl-accent:    #1d5cff;
  --swl-accent-2:  #00c9a7;
  --swl-accent-3:  #ff5f57;
  --swl-muted:     #6b7280;
  --swl-border:    #e5e4df;
  --swl-card-bg:   #ffffff;
  --swl-gradient-hero: linear-gradient(135deg, #0d0d12 0%, #1a1a2e 50%, #16213e 100%);
  --swl-font-display: 'Syne', sans-serif;
  --swl-font-body:    'DM Sans', sans-serif;
  --swl-font-mono:    'DM Mono', monospace;
  --swl-radius:    12px;
  --swl-radius-lg: 24px;
  --swl-shadow:    0 4px 24px rgba(13,13,18,0.08);
  --swl-shadow-lg: 0 16px 64px rgba(13,13,18,0.14);
  --swl-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--swl-font-body);
  background: var(--swl-surface);
  color: var(--swl-ink);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--swl-accent); text-decoration: none; transition: var(--swl-transition); }
a:hover { color: var(--swl-accent-2); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--swl-font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--swl-ink);
}

h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.05rem; color: var(--swl-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.swl-lead { font-size: 1.2rem; color: var(--swl-muted); font-weight: 400; }
.swl-display-tag {
  font-family: var(--swl-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--swl-accent);
  background: rgba(29,92,255,0.08);
  padding: 0.3em 0.8em;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* --- Navigation --- */
.swl-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--swl-transition);
  background: transparent;
}
.swl-navbar.swl-scrolled {
  background: rgba(13,13,18,0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.swl-navbar-brand {
  font-family: var(--swl-font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff !important;
  letter-spacing: -0.02em;
}
.swl-navbar-brand span { color: var(--swl-accent); }
.swl-nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem !important;
  border-radius: 6px;
  transition: var(--swl-transition);
}
.swl-nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}
.swl-nav-cta {
  background: var(--swl-accent) !important;
  color: #fff !important;
  padding: 0.4rem 1.2rem !important;
  border-radius: 8px;
}
.swl-nav-cta:hover { background: #1347d4 !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler-icon { filter: invert(1); }

/* --- Buttons --- */
.swl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--swl-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--swl-transition);
  white-space: nowrap;
  text-decoration: none;
}
.swl-btn-primary {
  background: var(--swl-accent);
  color: #fff;
  border-color: var(--swl-accent);
}
.swl-btn-primary:hover {
  background: #1347d4;
  border-color: #1347d4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,92,255,0.35);
}
.swl-btn-outline {
  background: transparent;
  color: var(--swl-accent);
  border-color: var(--swl-accent);
}
.swl-btn-outline:hover {
  background: var(--swl-accent);
  color: #fff;
  transform: translateY(-2px);
}
.swl-btn-white {
  background: #fff;
  color: var(--swl-ink);
  border-color: #fff;
}
.swl-btn-white:hover {
  background: var(--swl-surface);
  color: var(--swl-ink);
  transform: translateY(-2px);
}
.swl-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.swl-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.swl-btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* --- Section Basics --- */
.swl-section { padding: 6rem 0; }
.swl-section-sm { padding: 3rem 0; }
.swl-section-dark {
  background: var(--swl-ink);
  color: #fff;
}
.swl-section-dark h1,
.swl-section-dark h2,
.swl-section-dark h3,
.swl-section-dark h4 { color: #fff; }
.swl-section-dark p { color: rgba(255,255,255,0.65); }
.swl-section-alt { background: var(--swl-white); }
.swl-section-ink { background: var(--swl-ink-soft); }

.swl-section-header { text-align: center; margin-bottom: 3.5rem; }
.swl-section-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* --- Hero Section --- */
.swl-hero {
  position: relative;
  min-height: 100vh;
  background: var(--swl-gradient-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.swl-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.swl-hero-content { position: relative; z-index: 2; }
.swl-hero-eyebrow {
  font-family: var(--swl-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--swl-accent-2);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.swl-hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--swl-accent-2);
}
.swl-hero h1 { color: #fff; letter-spacing: -0.03em; }
.swl-hero h1 .swl-hero-highlight {
  background: linear-gradient(90deg, var(--swl-accent), var(--swl-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.swl-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin: 1.5rem 0 2.5rem;
  max-width: 520px;
}
.swl-hero-image-wrap {
  position: relative;
  border-radius: var(--swl-radius-lg);
  overflow: hidden;
  box-shadow: var(--swl-shadow-lg);
}
.swl-hero-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--swl-radius-lg);
}
.swl-hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(13,13,18,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.85rem;
}
.swl-hero-badge .swl-badge-dot {
  width: 8px; height: 8px;
  background: var(--swl-accent-2);
  border-radius: 50%;
  animation: swl-pulse 2s infinite;
}

/* --- Stats Strip --- */
.swl-stats-strip {
  background: var(--swl-white);
  border-bottom: 1px solid var(--swl-border);
  padding: 2rem 0;
}
.swl-stat-item { text-align: center; padding: 0.5rem; }
.swl-stat-number {
  font-family: var(--swl-font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--swl-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.swl-stat-label { font-size: 0.85rem; color: var(--swl-muted); font-weight: 500; }

/* --- Cards --- */
.swl-card {
  background: var(--swl-card-bg);
  border-radius: var(--swl-radius-lg);
  border: 1px solid var(--swl-border);
  overflow: hidden;
  transition: var(--swl-transition);
}
.swl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--swl-shadow-lg);
  border-color: rgba(29,92,255,0.2);
}
.swl-card-body { padding: 1.75rem; }
.swl-card-img { width: 100%; height: 200px; object-fit: cover; }
.swl-card-icon {
  width: 52px; height: 52px;
  background: rgba(29,92,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--swl-accent);
  font-size: 1.3rem;
}

/* --- Quiz Section --- */
.swl-quiz-section {
  background: linear-gradient(135deg, #0d0d12 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}
.swl-quiz-container {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--swl-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  max-width: 720px;
  margin: 0 auto;
}
.swl-quiz-step { display: none; }
.swl-quiz-step.swl-quiz-active { display: block; }
.swl-quiz-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.swl-quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--swl-accent), var(--swl-accent-2));
  border-radius: 999px;
  transition: width 0.4s ease;
}
.swl-quiz-question {
  font-family: var(--swl-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.swl-quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--swl-radius);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--swl-transition);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.swl-quiz-option:hover {
  border-color: var(--swl-accent);
  background: rgba(29,92,255,0.1);
  color: #fff;
}
.swl-quiz-option.swl-selected {
  border-color: var(--swl-accent);
  background: rgba(29,92,255,0.15);
  color: #fff;
}
.swl-quiz-option-radio {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--swl-transition);
}
.swl-quiz-option.swl-selected .swl-quiz-option-radio {
  border-color: var(--swl-accent);
  background: var(--swl-accent);
  box-shadow: 0 0 0 4px rgba(29,92,255,0.2);
}
.swl-quiz-result {
  text-align: center;
  padding: 1rem;
}
.swl-quiz-result-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(90deg, var(--swl-accent), var(--swl-accent-2));
  border-radius: 999px;
  font-family: var(--swl-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.swl-step-counter {
  font-family: var(--swl-font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

/* --- Use Case Explorer --- */
.swl-usecase-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.swl-usecase-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--swl-border);
  background: transparent;
  font-family: var(--swl-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--swl-muted);
  cursor: pointer;
  transition: var(--swl-transition);
}
.swl-usecase-tab:hover,
.swl-usecase-tab.swl-tab-active {
  background: var(--swl-accent);
  border-color: var(--swl-accent);
  color: #fff;
}
.swl-usecase-panel { display: none; }
.swl-usecase-panel.swl-panel-active { display: flex; }
.swl-usecase-panel-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--swl-radius-lg);
}

/* --- Flow Diagram --- */
.swl-flow-diagram {
  position: relative;
  padding: 2rem 0;
}
.swl-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.swl-flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 56px;
  width: 2px;
  height: calc(100% - 8px);
  background: linear-gradient(180deg, var(--swl-accent), transparent);
}
.swl-flow-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--swl-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--swl-font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(29,92,255,0.35);
}
.swl-flow-content h4 { margin-bottom: 0.4rem; }
.swl-flow-content p { font-size: 0.95rem; margin: 0; }

/* --- Testimonials --- */
.swl-testimonial-slider {
  position: relative;
  overflow: hidden;
}
.swl-testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.swl-testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.swl-testimonial-card {
  background: var(--swl-white);
  border: 1px solid var(--swl-border);
  border-radius: var(--swl-radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.swl-testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--swl-ink);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.swl-testimonial-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--swl-accent);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 0.25rem;
}
.swl-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.swl-testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--swl-border);
}
.swl-testimonial-name {
  font-family: var(--swl-font-display);
  font-weight: 700;
  color: var(--swl-ink);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
.swl-testimonial-role { font-size: 0.82rem; color: var(--swl-muted); }
.swl-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.swl-slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--swl-border);
  background: var(--swl-white);
  color: var(--swl-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--swl-transition);
}
.swl-slider-btn:hover {
  background: var(--swl-accent);
  border-color: var(--swl-accent);
  color: #fff;
}
.swl-slider-dots { display: flex; gap: 0.4rem; }
.swl-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--swl-border);
  cursor: pointer;
  transition: var(--swl-transition);
}
.swl-slider-dot.swl-dot-active {
  background: var(--swl-accent);
  width: 24px;
  border-radius: 4px;
}

/* --- Team Grid --- */
.swl-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.swl-team-card {
  background: var(--swl-white);
  border: 1px solid var(--swl-border);
  border-radius: var(--swl-radius-lg);
  overflow: hidden;
  transition: var(--swl-transition);
}
.swl-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--swl-shadow-lg);
}
.swl-team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}
.swl-team-info { padding: 1.25rem; }
.swl-team-name {
  font-family: var(--swl-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--swl-ink);
  margin-bottom: 0.2rem;
}
.swl-team-role {
  font-size: 0.82rem;
  color: var(--swl-accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.swl-team-bio { font-size: 0.88rem; color: var(--swl-muted); }
.swl-team-links { margin-top: 0.75rem; display: flex; gap: 0.5rem; }
.swl-team-link {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: var(--swl-surface);
  color: var(--swl-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--swl-transition);
}
.swl-team-link:hover { background: var(--swl-accent); color: #fff; }

/* --- Interactive Tools --- */
.swl-tool-tabs {
  display: flex;
  border-bottom: 2px solid var(--swl-border);
  margin-bottom: 2rem;
  gap: 0;
}
.swl-tool-tab {
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  font-family: var(--swl-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--swl-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--swl-transition);
}
.swl-tool-tab:hover { color: var(--swl-ink); }
.swl-tool-tab.swl-tool-active {
  color: var(--swl-accent);
  border-bottom-color: var(--swl-accent);
}
.swl-tool-panel { display: none; }
.swl-tool-panel.swl-tool-panel-active { display: block; }

.swl-roi-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.swl-form-group { margin-bottom: 1.25rem; }
.swl-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--swl-ink);
  margin-bottom: 0.4rem;
}
.swl-input, .swl-select, .swl-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--swl-border);
  border-radius: var(--swl-radius);
  background: var(--swl-white);
  font-family: var(--swl-font-body);
  font-size: 0.95rem;
  color: var(--swl-ink);
  transition: var(--swl-transition);
  outline: none;
}
.swl-input:focus, .swl-select:focus, .swl-textarea:focus {
  border-color: var(--swl-accent);
  box-shadow: 0 0 0 3px rgba(29,92,255,0.1);
}
.swl-textarea { min-height: 120px; resize: vertical; }

.swl-roi-result {
  background: linear-gradient(135deg, rgba(29,92,255,0.05), rgba(0,201,167,0.05));
  border: 1px solid rgba(29,92,255,0.15);
  border-radius: var(--swl-radius-lg);
  padding: 1.5rem;
  display: none;
}
.swl-roi-result.swl-visible { display: block; }
.swl-roi-number {
  font-family: var(--swl-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--swl-accent);
}

/* --- Article Cards --- */
.swl-article-card {
  background: var(--swl-white);
  border: 1px solid var(--swl-border);
  border-radius: var(--swl-radius-lg);
  overflow: hidden;
  transition: var(--swl-transition);
  height: 100%;
}
.swl-article-card:hover { transform: translateY(-5px); box-shadow: var(--swl-shadow-lg); }
.swl-article-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.swl-article-body { padding: 1.5rem; }
.swl-article-category {
  font-family: var(--swl-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--swl-accent);
  margin-bottom: 0.6rem;
}
.swl-article-title {
  font-family: var(--swl-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--swl-ink);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.swl-article-excerpt { font-size: 0.88rem; color: var(--swl-muted); }
.swl-article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--swl-muted);
  margin-top: 1rem;
}

/* --- CTA Section --- */
.swl-cta-section {
  background: var(--swl-ink);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.swl-cta-content { position: relative; z-index: 2; text-align: center; }
.swl-cta-content h2 { color: #fff; margin-bottom: 1rem; }
.swl-cta-content p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 2rem; }

/* --- Footer --- */
.swl-footer {
  background: #07070d;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.swl-footer-brand {
  font-family: var(--swl-font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.swl-footer-brand span { color: var(--swl-accent); }
.swl-footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; }
.swl-footer-heading {
  font-family: var(--swl-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.swl-footer-links { list-style: none; padding: 0; }
.swl-footer-links li { margin-bottom: 0.5rem; }
.swl-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--swl-transition);
}
.swl-footer-links a:hover { color: #fff; }
.swl-footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2.5rem 0 1.5rem;
}
.swl-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.swl-footer-social { display: flex; gap: 0.5rem; }
.swl-social-link {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--swl-transition);
}
.swl-social-link:hover { background: var(--swl-accent); border-color: var(--swl-accent); color: #fff; }

/* --- Cookie Banner --- */
.swl-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 800px;
  background: var(--swl-ink);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--swl-radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  box-shadow: var(--swl-shadow-lg);
  flex-wrap: wrap;
}
.swl-cookie-banner.swl-hidden { display: none; }
.swl-cookie-text { font-size: 0.88rem; color: rgba(255,255,255,0.75); flex: 1; }
.swl-cookie-text a { color: var(--swl-accent-2); }
.swl-cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* --- Page Hero (inner pages) --- */
.swl-page-hero {
  background: var(--swl-gradient-hero);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.swl-page-hero h1 { color: #fff; }
.swl-page-hero p { color: rgba(255,255,255,0.65); font-size: 1.15rem; }
.swl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.swl-breadcrumb a { color: rgba(255,255,255,0.5); }
.swl-breadcrumb a:hover { color: #fff; }
.swl-breadcrumb .swl-sep { color: rgba(255,255,255,0.3); }
.swl-breadcrumb .swl-current { color: rgba(255,255,255,0.85); }

/* --- Service Cards (Services Page) --- */
.swl-service-card {
  background: var(--swl-white);
  border: 1px solid var(--swl-border);
  border-radius: var(--swl-radius-lg);
  overflow: hidden;
  transition: var(--swl-transition);
  margin-bottom: 2.5rem;
}
.swl-service-card:hover { box-shadow: var(--swl-shadow-lg); }
.swl-service-card-img { width: 100%; height: 260px; object-fit: cover; }
.swl-service-card-body { padding: 2rem; }
.swl-service-number {
  font-family: var(--swl-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--swl-muted);
  margin-bottom: 0.5rem;
}
.swl-service-tag {
  display: inline-block;
  padding: 0.25em 0.75em;
  border-radius: 999px;
  background: rgba(29,92,255,0.08);
  color: var(--swl-accent);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.swl-service-card h3 { margin-bottom: 0.75rem; }
.swl-limitation-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--swl-muted);
  background: var(--swl-surface);
  padding: 0.3em 0.75em;
  border-radius: 6px;
  margin: 0.25rem;
}

/* --- Contact Form --- */
.swl-contact-card {
  background: var(--swl-white);
  border: 1px solid var(--swl-border);
  border-radius: var(--swl-radius-lg);
  padding: 2.5rem;
}
.swl-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.swl-contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(29,92,255,0.08);
  color: var(--swl-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.swl-contact-info-label { font-size: 0.8rem; color: var(--swl-muted); margin-bottom: 0.2rem; }
.swl-contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--swl-ink); }

/* --- Article Page --- */
.swl-article-page { max-width: 780px; margin: 0 auto; }
.swl-article-page h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.swl-article-page h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.5rem; }
.swl-article-page p { font-size: 1.05rem; color: #444; margin-bottom: 1.25rem; }
.swl-article-page ul, .swl-article-page ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.swl-article-page li { font-size: 1.02rem; color: #444; margin-bottom: 0.5rem; }
.swl-article-page blockquote {
  border-left: 4px solid var(--swl-accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(29,92,255,0.04);
  border-radius: 0 var(--swl-radius) var(--swl-radius) 0;
  font-style: italic;
  color: #555;
}
.swl-article-feature-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--swl-radius-lg);
  margin: 2rem 0;
}

/* --- Timeline --- */
.swl-timeline { position: relative; padding-left: 2rem; }
.swl-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--swl-accent), var(--swl-accent-2));
}
.swl-timeline-item { position: relative; margin-bottom: 2.5rem; }
.swl-timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--swl-accent);
  box-shadow: 0 0 0 4px rgba(29,92,255,0.15);
}
.swl-timeline-year {
  font-family: var(--swl-font-mono);
  font-size: 0.78rem;
  color: var(--swl-accent);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.swl-timeline-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.swl-timeline-desc { font-size: 0.92rem; color: var(--swl-muted); }

/* --- Legal Pages --- */
.swl-legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--swl-border); padding-bottom: 0.5rem; }
.swl-legal-content h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.4rem; }
.swl-legal-content p { font-size: 0.97rem; color: #4a4a60; }
.swl-legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.swl-legal-content li { font-size: 0.97rem; color: #4a4a60; margin-bottom: 0.35rem; }
.swl-legal-updated {
  font-family: var(--swl-font-mono);
  font-size: 0.78rem;
  color: var(--swl-muted);
  margin-bottom: 2rem;
}

/* --- Thank You Page --- */
.swl-thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--swl-gradient-hero);
}
.swl-thankyou-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(0,201,167,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--swl-accent-2);
  margin: 0 auto 1.5rem;
}

/* --- Comparison Toggle --- */
.swl-compare-toggle {
  display: flex;
  background: var(--swl-surface);
  border: 1px solid var(--swl-border);
  border-radius: var(--swl-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  width: fit-content;
}
.swl-compare-option {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--swl-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--swl-muted);
  cursor: pointer;
  transition: var(--swl-transition);
}
.swl-compare-option.swl-compare-active {
  background: var(--swl-accent);
  color: #fff;
}

/* --- Utility --- */
.swl-text-accent { color: var(--swl-accent); }
.swl-text-accent2 { color: var(--swl-accent-2); }
.swl-bg-accent { background: var(--swl-accent); }
.swl-border-accent { border-color: var(--swl-accent); }
.swl-separator {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--swl-accent), var(--swl-accent-2));
  border-radius: 999px;
  margin: 1rem 0 1.5rem;
}
.swl-separator-center { margin-left: auto; margin-right: auto; }
.swl-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3em 0.8em;
  border-radius: 999px;
  background: rgba(29,92,255,0.08);
  color: var(--swl-accent);
  font-size: 0.8rem;
  font-weight: 500;
}
.swl-icon-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(29,92,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swl-accent);
  font-size: 1.4rem;
}
.swl-map-wrap {
  border-radius: var(--swl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--swl-border);
}
.swl-captcha-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--swl-surface);
  border: 1.5px solid var(--swl-border);
  border-radius: var(--swl-radius);
  margin-bottom: 1.25rem;
}
.swl-captcha-question { font-weight: 600; color: var(--swl-ink); font-size: 0.95rem; }
.swl-captcha-input {
  width: 80px !important;
  text-align: center;
}
.swl-error-msg { font-size: 0.82rem; color: var(--swl-accent-3); margin-top: 0.25rem; display: none; }
.swl-error-msg.swl-show { display: block; }
.swl-success-msg { font-size: 0.88rem; color: var(--swl-accent-2); margin-top: 0.25rem; display: none; }
.swl-success-msg.swl-show { display: block; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .swl-hero-image-wrap { margin-top: 3rem; }
  .swl-roi-input { grid-template-columns: 1fr; }
  .swl-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .swl-section { padding: 4rem 0; }
  .swl-tool-tab { padding: 0.5rem 0.8rem; font-size: 0.82rem; }
  .swl-team-grid { grid-template-columns: 1fr; }
  .swl-footer-bottom { flex-direction: column; text-align: center; }
  .swl-cookie-banner { flex-direction: column; gap: 1rem; }
  .swl-usecase-panel { flex-direction: column; }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.swl-about-hero {
  background: var(--swl-ink);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.swl-about-img-stack {
  position: relative;
  height: 480px;
}
.swl-img-main {
  width: 80%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  top: 0; right: 0;
}
.swl-img-accent {
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  bottom: 0; left: 0;
  border: 4px solid var(--swl-ink);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.swl-img-rounded {
  border-radius: 20px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.swl-value-chip {
  background: rgba(29,92,255,0.08);
  border: 1px solid rgba(29,92,255,0.2);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--swl-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.swl-mission-section { background: var(--swl-white); }
.swl-philosophy-section { background: var(--swl-surface); }
.swl-philosophy-card {
  background: var(--swl-white);
  border: 1px solid var(--swl-border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.swl-philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.swl-phil-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(29,92,255,0.1), rgba(0,201,167,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swl-accent);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.swl-philosophy-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--swl-ink);
  margin-bottom: 0.75rem;
}
.swl-philosophy-card p {
  font-size: 0.9rem;
  color: rgba(13,13,18,0.7);
  line-height: 1.7;
  margin: 0;
}
/* Timeline */
.swl-timeline-section { background: var(--swl-white); }
.swl-timeline {
  position: relative;
  padding-left: 2rem;
}
.swl-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--swl-accent), var(--swl-accent-2));
}
.swl-timeline-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
}
.swl-timeline-item:last-child { padding-bottom: 0; }
.swl-timeline-dot {
  position: absolute;
  left: -0.55rem;
  top: 0.25rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--swl-accent);
  border: 3px solid var(--swl-white);
  box-shadow: 0 0 0 2px var(--swl-accent);
}
.swl-timeline-year {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--swl-accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.swl-timeline-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--swl-ink);
  margin-bottom: 0.5rem;
}
.swl-timeline-content p {
  font-size: 0.92rem;
  color: rgba(13,13,18,0.7);
  line-height: 1.75;
  margin: 0;
}
.swl-values-strip { background: var(--swl-ink); }

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.swl-page-hero {
  background: var(--swl-ink);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.swl-contact-section { background: var(--swl-white); padding: 5rem 0; }
.swl-contact-form-wrap {
  background: var(--swl-surface);
  border-radius: 24px;
  padding: 2.5rem;
}
.swl-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--swl-ink);
  margin-bottom: 0.5rem;
}
.swl-form-sub {
  font-size: 0.9rem;
  color: rgba(13,13,18,0.6);
  margin-bottom: 2rem;
}
.swl-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--swl-ink);
  margin-bottom: 0.4rem;
  display: block;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.swl-form-label span { color: var(--swl-accent-3); }
.swl-form-input {
  width: 100%;
  background: var(--swl-white);
  border: 1.5px solid var(--swl-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--swl-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.swl-form-input:focus {
  border-color: var(--swl-accent);
  box-shadow: 0 0 0 3px rgba(29,92,255,0.12);
}
.swl-form-select { appearance: none; cursor: pointer; }
.swl-form-textarea { resize: vertical; min-height: 120px; }
.swl-field-error {
  font-size: 0.8rem;
  color: var(--swl-accent-3);
  margin-top: 0.3rem;
  min-height: 1.1rem;
}
.swl-captcha-wrap { background: var(--swl-white); border: 1.5px solid var(--swl-border); border-radius: 10px; padding: 1rem; }
.swl-captcha-wrap .swl-form-label { margin-bottom: 0.75rem; }
.swl-captcha-question { display: flex; align-items: center; gap: 1rem; }
.swl-captcha-question span { font-size: 0.95rem; color: var(--swl-ink); }
.swl-captcha-input { width: 80px !important; text-align: center; }
.swl-form-disclaimer {
  font-size: 0.82rem;
  color: rgba(13,13,18,0.55);
  padding: 0.75rem 1rem;
  background: rgba(29,92,255,0.04);
  border-radius: 8px;
}
.swl-form-disclaimer a { color: var(--swl-accent); text-decoration: none; }
.swl-contact-info-panel {
  background: var(--swl-ink);
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--swl-white);
  height: 100%;
}
.swl-contact-info-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--swl-white);
  margin-bottom: 2rem;
}
.swl-contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.swl-contact-icon {
  width: 40px; height: 40px;
  background: rgba(29,92,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--swl-accent);
  flex-shrink: 0;
}
.swl-contact-detail strong { font-size: 0.78rem; font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); display: block; margin-bottom: 0.25rem; }
.swl-contact-detail p, .swl-contact-detail a { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; text-decoration: none; }
.swl-contact-detail a:hover { color: var(--swl-accent); }
.swl-contact-faq h4 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--swl-white); margin-bottom: 1rem; margin-top: 2rem; }
.swl-faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.swl-faq-q {
  background: none; border: none; width: 100%;
  text-align: left; padding: 0.75rem 0;
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer;
  position: relative;
  padding-right: 1.5rem;
}
.swl-faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--swl-accent); font-size: 1.2rem; transition: transform 0.3s; }
.swl-faq-item.swl-open .swl-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.swl-faq-a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  padding-bottom: 0.75rem;
  display: none;
}
.swl-faq-item.swl-open .swl-faq-a { display: block; }
.swl-map-section { }
.swl-map-title { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--swl-ink); margin-bottom: 1.25rem; }
.swl-map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--swl-border); }

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */
.swl-article-hero {
  background: var(--swl-ink);
  padding: 8rem 0 3rem;
  position: relative;
  overflow: hidden;
}
/* .swl-article-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--swl-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
} */
.swl-article-meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-family: 'DM Mono', monospace;
}
.swl-article-image-full {
  max-height: 480px;
  overflow: hidden;
}
.swl-article-image-full img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.swl-article-body {
  padding: 20px 10px;
  background: var(--swl-white);
}
.swl-article-lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(13,13,18,0.85);
  margin-bottom: 2rem;
}
.swl-article-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--swl-ink);
  margin: 2.5rem 0 1rem;
}
.swl-article-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--swl-ink);
  margin: 2rem 0 0.75rem;
}
.swl-article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(13,13,18,0.78);
  margin-bottom: 1.25rem;
}
.swl-article-body strong { color: var(--swl-ink); font-weight: 600; }
.swl-article-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  margin: 2rem 0 0.5rem;
}
.swl-img-caption {
  font-size: 0.82rem;
  color: rgba(13,13,18,0.45);
  font-style: italic;
  margin-bottom: 2rem;
}
.swl-article-disclaimer {
  background: rgba(29,92,255,0.05);
  border: 1px solid rgba(29,92,255,0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: rgba(13,13,18,0.6);
  line-height: 1.7;
  margin-top: 3rem;
}
.swl-related-articles h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--swl-ink);
  margin-bottom: 1rem;
}
.swl-related-card {
  display: block;
  background: var(--swl-surface);
  border: 1px solid var(--swl-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}
.swl-related-card:hover {
  border-color: var(--swl-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(29,92,255,0.1);
}
.swl-related-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--swl-accent);
  display: block;
  margin-bottom: 0.5rem;
}
.swl-related-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--swl-ink);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.swl-related-card span { font-size: 0.85rem; color: var(--swl-accent); font-weight: 600; }
.swl-article-cta {
  background: linear-gradient(135deg, rgba(29,92,255,0.06), rgba(0,201,167,0.06));
  border: 1px solid rgba(29,92,255,0.15);
  border-radius: 20px;
  padding: 2.5rem;
}
.swl-article-cta h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--swl-ink);
  margin-bottom: 0.75rem;
}
.swl-article-cta p {
  color: rgba(13,13,18,0.65);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ============================================
   LEGAL PAGE STYLES
   ============================================ */
.swl-legal-hero {
  background: var(--swl-ink);
  padding: 8rem 0 3rem;
  position: relative;
}
.swl-legal-body {
  padding: 4rem 0 6rem;
  background: var(--swl-white);
}
.swl-legal-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--swl-ink);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--swl-border);
}
.swl-legal-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--swl-ink);
  margin: 1.75rem 0 0.75rem;
}
.swl-legal-body p, .swl-legal-body li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(13,13,18,0.72);
  margin-bottom: 0.75rem;
}
.swl-legal-body ul { padding-left: 1.5rem; }
.swl-legal-body li { margin-bottom: 0.5rem; }
.swl-legal-body a { color: var(--swl-accent); text-decoration: none; }
.swl-legal-body a:hover { text-decoration: underline; }
.swl-legal-body address { font-style: normal; line-height: 2; }
.swl-legal-toc {
  background: var(--swl-surface);
  border: 1px solid var(--swl-border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.swl-legal-toc h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(13,13,18,0.5);
  margin-bottom: 0.75rem;
}
.swl-legal-toc ol { padding-left: 1.25rem; margin: 0; }
.swl-legal-toc li { font-size: 0.9rem; margin-bottom: 0.3rem; }
.swl-article-meta-text { color: rgba(255,255,255,0.5); font-size: 0.85rem; font-family: 'DM Mono', monospace; }
.swl-legal-table { overflow-x: auto; margin: 1.5rem 0; }
.swl-legal-table table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.swl-legal-table th { background: var(--swl-surface); padding: 0.75rem 1rem; text-align: left; font-weight: 700; color: var(--swl-ink); border: 1px solid var(--swl-border); }
.swl-legal-table td { padding: 0.75rem 1rem; border: 1px solid var(--swl-border); color: rgba(13,13,18,0.7); vertical-align: top; }
.swl-legal-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--swl-border);
}
.swl-legal-nav a {
  color: var(--swl-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.swl-legal-nav a:hover { text-decoration: underline; }
.swl-btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.swl-btn-outline:hover {
  border-color: var(--swl-accent);
  color: var(--swl-accent);
}


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

html{
  overflow-x: hidden;
}

.swl-article-hero .swl-article-title{
  color: #fff;
}

.swl-legal-hero .swl-article-title, .swl-legal-hero .swl-label-tag{
  color: #fff;
}