/* seoweblab.com -- style.css */
/* Design: Deep Indigo #2D1B69 + Electric Teal #00D4AA + Cream #FAFAF8 + Stone #5E5E7A */
/* CSS prefix: swl-  |  Space Grotesk (headings) + Lora (body serif) */
/* Navigation: MEGA MENU (top horizontal, hover service panels) */
/* Hero: OVERLAY HERO -- fullscreen bg image + centered glass card */
/* Unique from all 19 previous builds */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --swl-indigo:    #2D1B69;
  --swl-indigo2:   #3D2880;
  --swl-indigo3:   #4A3590;
  --swl-indigo-d:  rgba(45,27,105,.08);
  --swl-teal:      #00D4AA;
  --swl-teal2:     #00BF99;
  --swl-teal-d:    rgba(0,212,170,.1);
  --swl-cream:     #FAFAF8;
  --swl-white:     #FFFFFF;
  --swl-fog:       #F0F0EE;
  --swl-stone:     #5E5E7A;
  --swl-stone2:    #8B8B9F;
  --swl-rule:      rgba(45,27,105,.1);
  --swl-dark:      #1A0F45;

  --swl-head:   'Space Grotesk', system-ui, sans-serif;
  --swl-body:   'Lora', Georgia, serif;

  --swl-r:    4px;
  --swl-rmd:  8px;
  --swl-rlg:  12px;
  --swl-rxl:  18px;
  --swl-rxx:  28px;

  --swl-max:   1200px;
  --swl-ease:  0.22s cubic-bezier(.4,0,.2,1);
  --swl-sh:    0 6px 40px rgba(45,27,105,.14);
  --swl-sht:   0 4px 24px rgba(0,212,170,.22);
  --swl-nav-h: 76px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--swl-body); font-size: 1rem; line-height: 1.72; color: var(--swl-indigo); background: var(--swl-cream); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── MEGA MENU NAV (unique -- top horizontal with hover service panels) ── */
.swl-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--swl-nav-h);
  background: rgba(250,250,248,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--swl-rule);
  z-index: 900;
  transition: box-shadow var(--swl-ease), background var(--swl-ease);
}
.swl-nav.swl-nav-dark {
  background: rgba(26,15,69,.96);
  border-bottom-color: rgba(255,255,255,.08);
}
.swl-nav.swl-nav-scrolled { box-shadow: var(--swl-sh); }
.swl-nav-inner {
  max-width: var(--swl-max);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
/* Logo */
.swl-logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; flex-shrink: 0; }
.swl-logo-mark { width: 34px; height: 34px; background: var(--swl-indigo); border-radius: var(--swl-rmd); display: flex; align-items: center; justify-content: center; }
.swl-logo-mark svg { width: 18px; height: 18px; color: var(--swl-teal); }
.swl-logo-text { font-family: var(--swl-head); font-size: 1.1rem; font-weight: 700; color: var(--swl-indigo); letter-spacing: -.02em; }
.swl-logo-text em { color: var(--swl-teal); font-style: normal; }
.swl-nav-dark .swl-logo-text { color: #fff; }
/* Nav items */
.swl-nav-links { display: flex; align-items: center; margin-left: 3rem; flex: 1; }
.swl-nav-item { position: relative; }
.swl-nav-lnk {
  display: flex; align-items: center; gap: .22rem;
  font-family: var(--swl-head); font-size: .97rem; font-weight: 600;
  color: var(--swl-stone); padding: 0 1rem;
  height: var(--swl-nav-h); cursor: pointer; border: none; background: none;
  text-decoration: none; transition: color var(--swl-ease); letter-spacing: -.01em;
}
.swl-nav-lnk:hover, .swl-nav-lnk.swl-active { color: var(--swl-indigo); }
.swl-nav-dark .swl-nav-lnk { color: rgba(255,255,255,.4); }
.swl-nav-dark .swl-nav-lnk:hover, .swl-nav-dark .swl-nav-lnk.swl-active { color: #fff; }
.swl-nav-chev { width: 12px; height: 12px; transition: transform .18s; }
.swl-nav-item:hover .swl-nav-chev { transform: rotate(180deg); }

/* MEGA PANEL */
.swl-mega {
  position: absolute; top: var(--swl-nav-h); left: 50%; transform: translateX(-50%);
  background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl);
  box-shadow: var(--swl-sh); padding: 2rem;
  min-width: 720px;
  display: grid; grid-template-columns: 1.2fr 1fr 200px; gap: 1.5rem;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(8px);
  transition: opacity .18s, transform .18s;
}
.swl-nav-item:hover .swl-mega { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.swl-mega-col h4 { font-family: var(--swl-head); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--swl-stone2); margin-bottom: .85rem; }
.swl-mega-svc { display: flex; align-items: flex-start; gap: .65rem; padding: .62rem .75rem; border-radius: var(--swl-rlg); transition: background var(--swl-ease); cursor: pointer; text-decoration: none; }
.swl-mega-svc:hover { background: var(--swl-indigo-d); }
.swl-mega-svc-ico { width: 32px; height: 32px; border-radius: var(--swl-rmd); background: var(--swl-teal-d); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.swl-mega-svc-ico svg { width: 14px; height: 14px; color: var(--swl-teal2); }
.swl-mega-svc-nm { font-family: var(--swl-head); font-size: .87rem; font-weight: 600; color: var(--swl-indigo); line-height: 1.2; }
.swl-mega-svc-sm { font-family: var(--swl-body); font-size: .75rem; color: var(--swl-stone2); line-height: 1.4; margin-top: .1rem; }
.swl-mega-feat { background: var(--swl-indigo); border-radius: var(--swl-rlg); padding: 1.25rem; }
.swl-mega-feat h4 { color: rgba(255,255,255,.3); }
.swl-mega-feat-n { font-family: var(--swl-head); font-size: 2.2rem; font-weight: 700; color: var(--swl-teal); line-height: 1; letter-spacing: -.03em; margin-bottom: .3rem; }
.swl-mega-feat-l { font-family: var(--swl-body); font-size: .76rem; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.swl-mega-feat-cta { display: block; padding: .52rem .85rem; background: var(--swl-teal); color: var(--swl-indigo); border-radius: var(--swl-rmd); font-family: var(--swl-head); font-size: .8rem; font-weight: 600; text-align: center; transition: background var(--swl-ease); }
.swl-mega-feat-cta:hover { background: var(--swl-teal2); }

/* Nav right */
.swl-nav-right { display: flex; align-items: center; gap: 1rem; margin-left: auto; flex-shrink: 0; }
.swl-lang-sw { display: flex; gap: .2rem; }
.swl-lang-sw a { font-family: var(--swl-head); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .22rem .5rem; border-radius: 100px; color: var(--swl-stone2); border: 1px solid var(--swl-rule); transition: var(--swl-ease); }
.swl-lang-sw a.swl-lng-on, .swl-lang-sw a:hover { color: var(--swl-teal); border-color: rgba(0,212,170,.3); background: var(--swl-teal-d); }
.swl-nav-cta-btn { font-family: var(--swl-head); font-size: .87rem; font-weight: 600; padding: .58rem 1.4rem; background: var(--swl-indigo); color: #fff; border-radius: var(--swl-rmd); transition: var(--swl-ease); }
.swl-nav-cta-btn:hover { background: var(--swl-indigo2); transform: translateY(-1px); }

/* Mobile nav toggle */
.swl-mob-tog { display: none; flex-direction: column; gap: 4.5px; align-items: center; justify-content: center; width: 36px; height: 36px; }
.swl-mob-tog span { display: block; width: 18px; height: 1.5px; background: var(--swl-indigo); border-radius: 2px; transition: transform .2s, opacity .2s; }
.swl-nav-dark .swl-mob-tog span { background: rgba(255,255,255,.7); }
.swl-mob-tog.swl-tog-x span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.swl-mob-tog.swl-tog-x span:nth-child(2) { opacity: 0; }
.swl-mob-tog.swl-tog-x span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.swl-mob-drawer { display: none; position: fixed; top: var(--swl-nav-h); left: 0; right: 0; bottom: 0; background: var(--swl-indigo); z-index: 850; overflow-y: auto; padding: 2rem 1.5rem; }
.swl-mob-drawer.swl-mob-on { display: block; }
.swl-mob-lnk { display: block; font-family: var(--swl-head); font-size: 1.4rem; font-weight: 600; color: rgba(255,255,255,.5); padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08); transition: color var(--swl-ease); }
.swl-mob-lnk:hover { color: var(--swl-teal); }

/* ── MAIN OFFSET ─────────────────────────────────────────── */
.swl-page { padding-top: var(--swl-nav-h); }

/* ── SHELL ───────────────────────────────────────────────── */
.swl-shell { max-width: var(--swl-max); margin: 0 auto; padding: 0 2.5rem; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2 { font-family: var(--swl-head); font-weight: 700; }
h1 { font-size: clamp(2.8rem, 5vw, 6rem); line-height: 1.02; letter-spacing: -.03em; }
h2 { font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.08; letter-spacing: -.025em; }
h3 { font-family: var(--swl-head); font-size: 1.05rem; font-weight: 600; }
p { color: var(--swl-stone); line-height: 1.76; font-family: var(--swl-body); }

.swl-eyebrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--swl-head); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--swl-teal); background: var(--swl-teal-d);
  padding: .22rem .75rem; border-radius: 100px;
  border: 1px solid rgba(0,212,170,.22);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.swl-bt-teal, .swl-bt-indigo, .swl-bt-out, .swl-bt-ghost {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--swl-head); font-size: .92rem; font-weight: 600;
  padding: .8rem 2rem; border-radius: var(--swl-rmd);
  cursor: pointer; transition: var(--swl-ease); white-space: nowrap; letter-spacing: -.01em;
}
.swl-bt-teal   { background: var(--swl-teal); color: var(--swl-indigo); border: 2px solid var(--swl-teal); }
.swl-bt-teal:hover { background: var(--swl-teal2); transform: translateY(-2px); box-shadow: var(--swl-sht); }
.swl-bt-indigo { background: var(--swl-indigo); color: #fff; border: 2px solid var(--swl-indigo); }
.swl-bt-indigo:hover { background: var(--swl-indigo2); transform: translateY(-2px); box-shadow: var(--swl-sh); }
.swl-bt-out    { background: transparent; color: var(--swl-indigo); border: 2px solid var(--swl-rule); }
.swl-bt-out:hover { border-color: var(--swl-teal); color: var(--swl-indigo); transform: translateY(-2px); }
.swl-bt-ghost  { background: transparent; color: rgba(255,255,255,.55); border: 2px solid rgba(255,255,255,.18); }
.swl-bt-ghost:hover { border-color: rgba(255,255,255,.45); color: #fff; transform: translateY(-2px); }

/* ── OVERLAY HERO (unique -- fullscreen bg + centered glass card) ─── */
.swl-hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--swl-dark);
}
.swl-hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/swl-hero-bg.webp');
  background-size: cover; background-position: center;
  opacity: .28;
}
/* Indigo gradient overlay */
.swl-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,27,105,.85) 0%, rgba(26,15,69,.6) 50%, rgba(0,212,170,.15) 100%);
}
/* Subtle grid decoration */
.swl-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.swl-hero-card {
  position: relative; z-index: 2;
  max-width: 780px; width: 90%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--swl-rxx);
  padding: 4rem 4.5rem;
  text-align: center;
}
.swl-hero-eyebrow { color: var(--swl-teal); background: rgba(0,212,170,.15); border-color: rgba(0,212,170,.25); margin-bottom: 1.75rem; }
.swl-hero-h1 { color: #fff; margin-bottom: 1.25rem; }
.swl-hero-h1 em { color: var(--swl-teal); font-style: normal; }
.swl-hero-p { color: rgba(255,255,255,.5); max-width: 52ch; margin: 0 auto 2.5rem; font-size: 1.05rem; font-family: var(--swl-body); font-style: italic; }
.swl-hero-acts { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.swl-hero-trust { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.swl-trust-item { display: flex; align-items: center; gap: .4rem; }
.swl-trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--swl-teal); opacity: .5; }
.swl-trust-txt { font-family: var(--swl-head); font-size: .68rem; color: rgba(255,255,255,.25); letter-spacing: .05em; text-transform: uppercase; }
/* Scroll indicator */
.swl-scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: swlBob 2.2s ease-in-out infinite;
}
.swl-scroll-cue span { font-family: var(--swl-head); font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.2); }
.swl-scroll-cue svg { width: 16px; height: 16px; color: rgba(255,255,255,.2); }
@keyframes swlBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(5px)} }

/* ── TICKER STRIP (unique -- animated horizontal marquee) ── */
.swl-ticker { background: var(--swl-indigo); overflow: hidden; padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.swl-ticker-track { display: flex; gap: 3rem; white-space: nowrap; animation: swlTick 28s linear infinite; }
.swl-ticker-track:hover { animation-play-state: paused; }
.swl-tick-item { display: flex; align-items: center; gap: .65rem; font-family: var(--swl-head); font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.3); letter-spacing: .04em; text-transform: uppercase; flex-shrink: 0; }
.swl-tick-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--swl-teal); opacity: .5; flex-shrink: 0; }
@keyframes swlTick { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── BENTO GRID SERVICES (unique homepage section) ─────────── */
.swl-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 4rem; }
.swl-bento-card {
  background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl);
  padding: 2rem; cursor: pointer; text-decoration: none; color: inherit;
  transition: transform var(--swl-ease), box-shadow var(--swl-ease), border-color var(--swl-ease);
  position: relative; overflow: hidden;
}
.swl-bento-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--swl-teal); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.swl-bento-card:hover { transform: translateY(-4px); box-shadow: var(--swl-sh); border-color: rgba(0,212,170,.3); }
.swl-bento-card:hover::before { transform: scaleX(1); }
.swl-bento-card--wide { grid-column: span 2; }
.swl-bento-ico { width: 40px; height: 40px; border-radius: var(--swl-rlg); background: var(--swl-teal-d); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.swl-bento-ico svg { width: 18px; height: 18px; color: var(--swl-teal2); }
.swl-bento-n { font-family: var(--swl-head); font-size: 1.08rem; font-weight: 700; color: var(--swl-indigo); margin-bottom: .45rem; letter-spacing: -.015em; }
.swl-bento-p { font-family: var(--swl-body); font-size: .84rem; color: var(--swl-stone); line-height: 1.6; }
.swl-bento-price { font-family: var(--swl-head); font-size: .78rem; font-weight: 600; color: var(--swl-teal2); margin-top: 1rem; }
.swl-bento-arr { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--swl-stone2); transition: transform var(--swl-ease), color var(--swl-ease); }
.swl-bento-card:hover .swl-bento-arr { transform: translate(3px, -3px); color: var(--swl-teal); }

/* ── NUMBER STRIP ───────────────────────────────────────── */
.swl-numstrip { background: var(--swl-indigo); padding: 5rem 0; }
.swl-numgrid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.swl-numcell { padding: 2.5rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.swl-numcell:last-child { border-right: none; }
.swl-numval { font-family: var(--swl-head); font-size: 3.2rem; font-weight: 700; color: var(--swl-teal); line-height: 1; letter-spacing: -.03em; margin-bottom: .25rem; }
.swl-numlbl { font-family: var(--swl-head); font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.25); }

/* ── MAGAZINE CASE STUDIES (unique -- asymmetric 2-col grid) ── */
.swl-mag-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; margin-top: 4rem; }
.swl-mag-lead {
  background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl); overflow: hidden;
  display: grid; grid-template-rows: 280px 1fr;
  transition: box-shadow var(--swl-ease), transform var(--swl-ease);
}
.swl-mag-lead:hover { transform: translateY(-4px); box-shadow: var(--swl-sh); }
.swl-mag-side { display: flex; flex-direction: column; gap: 1.5rem; }
.swl-mag-sm-card { background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl); overflow: hidden; flex: 1; transition: box-shadow var(--swl-ease), transform var(--swl-ease); }
.swl-mag-sm-card:hover { transform: translateY(-3px); box-shadow: var(--swl-sh); }
.swl-case-img { overflow: hidden; background: var(--swl-fog); position: relative; }
.swl-case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.swl-mag-lead:hover .swl-case-img img { transform: scale(1.04); }
.swl-case-tag { position: absolute; bottom: .75rem; left: .75rem; background: var(--swl-teal); color: var(--swl-indigo); font-family: var(--swl-head); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .58rem; border-radius: 100px; }
.swl-case-bd { padding: 1.75rem; }
.swl-mag-sm-card .swl-case-bd { padding: 1.25rem; }
.swl-case-ttl { font-family: var(--swl-head); font-size: .98rem; font-weight: 700; color: var(--swl-indigo); line-height: 1.35; margin-bottom: .6rem; letter-spacing: -.01em; }
.swl-mag-lead .swl-case-ttl { font-size: 1.15rem; }
.swl-case-desc { font-family: var(--swl-body); font-size: .8rem; color: var(--swl-stone); line-height: 1.68; margin-bottom: 1rem; }
.swl-case-kpis { display: flex; gap: 1.25rem; padding-top: .85rem; border-top: 1px solid var(--swl-rule); }
.swl-cknum { font-family: var(--swl-head); font-size: 1.4rem; font-weight: 700; color: var(--swl-teal); line-height: 1; letter-spacing: -.02em; }
.swl-cklbl { font-family: var(--swl-head); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--swl-stone2); margin-top: .2rem; }

/* ── PROCESS -- VERTICAL TIMELINE (unique) ────────────────── */
.swl-timeline { position: relative; padding-left: 3rem; margin-top: 4rem; }
.swl-timeline::before { content: ''; position: absolute; left: .8rem; top: 0; bottom: 0; width: 1px; background: var(--swl-rule); }
.swl-tl-item { position: relative; margin-bottom: 3.5rem; }
.swl-tl-item:last-child { margin-bottom: 0; }
.swl-tl-dot { position: absolute; left: -2.45rem; top: .3rem; width: 18px; height: 18px; border-radius: 50%; background: var(--swl-white); border: 2px solid var(--swl-teal); display: flex; align-items: center; justify-content: center; }
.swl-tl-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--swl-teal); }
.swl-tl-n { font-family: var(--swl-head); font-size: .62rem; font-weight: 700; color: var(--swl-teal); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.swl-tl-h { font-family: var(--swl-head); font-size: 1.15rem; font-weight: 700; color: var(--swl-indigo); margin-bottom: .5rem; letter-spacing: -.01em; }
.swl-tl-p { font-family: var(--swl-body); font-size: .88rem; color: var(--swl-stone); line-height: 1.72; max-width: 62ch; }

/* ── TESTIMONIAL STRIP -- HORIZONTAL CARDS (unique) ─────── */
.swl-testi-strip { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1.5rem; margin-top: 4rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--swl-teal) var(--swl-fog); }
.swl-testi-strip::-webkit-scrollbar { height: 3px; }
.swl-testi-strip::-webkit-scrollbar-thumb { background: var(--swl-teal); border-radius: 100px; }
.swl-testi-card { min-width: 380px; flex-shrink: 0; background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl); padding: 2rem; scroll-snap-align: start; position: relative; }
.swl-testi-card::before { content: '"'; font-family: Georgia, serif; font-size: 5rem; color: var(--swl-teal); opacity: .12; position: absolute; top: 1rem; left: 1.5rem; line-height: 1; }
.swl-testi-txt { font-family: var(--swl-body); font-size: .9rem; color: var(--swl-stone); line-height: 1.72; font-style: italic; margin-bottom: 1.5rem; }
.swl-testi-by { display: flex; align-items: center; gap: .65rem; }
.swl-testi-av { width: 34px; height: 34px; border-radius: 50%; background: var(--swl-indigo-d); border: 2px solid var(--swl-rule); display: flex; align-items: center; justify-content: center; font-family: var(--swl-head); font-size: .72rem; font-weight: 700; color: var(--swl-indigo); flex-shrink: 0; }
.swl-testi-who { font-family: var(--swl-head); font-size: .84rem; font-weight: 700; color: var(--swl-indigo); }
.swl-testi-org { font-family: var(--swl-body); font-size: .72rem; color: var(--swl-stone2); }
.swl-testi-city { font-family: var(--swl-head); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--swl-teal); margin-left: auto; }

/* ── PRICING CARDS (3-col) ───────────────────────────────── */
.swl-price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 4rem; }
.swl-pcard { background: var(--swl-white); border: 2px solid var(--swl-rule); border-radius: var(--swl-rxl); padding: 2.25rem; position: relative; transition: box-shadow var(--swl-ease), transform var(--swl-ease); }
.swl-pcard:hover { transform: translateY(-4px); box-shadow: var(--swl-sh); }
.swl-pcard--feat { border-color: var(--swl-indigo); background: var(--swl-indigo); }
.swl-pcard-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--swl-teal); color: var(--swl-indigo); font-family: var(--swl-head); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .75rem; border-radius: 0 0 var(--swl-rmd) var(--swl-rmd); }
.swl-pcard-name { font-family: var(--swl-head); font-size: 1.05rem; font-weight: 700; color: var(--swl-indigo); letter-spacing: -.01em; margin-bottom: .35rem; }
.swl-pcard--feat .swl-pcard-name { color: #fff; }
.swl-pcard-desc { font-family: var(--swl-body); font-size: .82rem; color: var(--swl-stone); margin-bottom: 1.5rem; line-height: 1.55; }
.swl-pcard--feat .swl-pcard-desc { color: rgba(255,255,255,.4); }
.swl-pcard-price { font-family: var(--swl-head); font-size: 2.8rem; font-weight: 700; color: var(--swl-indigo); letter-spacing: -.04em; line-height: 1; margin-bottom: 1.5rem; }
.swl-pcard--feat .swl-pcard-price { color: var(--swl-teal); }
.swl-pcard-feats { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.swl-pcard-feat { display: flex; align-items: flex-start; gap: .55rem; font-family: var(--swl-head); font-size: .83rem; color: var(--swl-indigo); }
.swl-pcard--feat .swl-pcard-feat { color: rgba(255,255,255,.7); }
.swl-pcard-feat-chk { color: var(--swl-teal); font-size: .8rem; flex-shrink: 0; margin-top: .05rem; }
.swl-pcard-go { display: block; width: 100%; padding: .78rem; text-align: center; background: var(--swl-indigo); color: #fff; border-radius: var(--swl-rmd); font-family: var(--swl-head); font-size: .88rem; font-weight: 600; transition: var(--swl-ease); cursor: pointer; }
.swl-pcard-go:hover { background: var(--swl-indigo2); transform: translateY(-1px); }
.swl-pcard--feat .swl-pcard-go { background: var(--swl-teal); color: var(--swl-indigo); }
.swl-pcard--feat .swl-pcard-go:hover { background: var(--swl-teal2); }

/* ── BUILDER ─────────────────────────────────────────────── */
.swl-bld-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; margin-top: 3.5rem; }
.swl-bld-section { background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl); padding: 1.75rem; margin-bottom: 1.25rem; }
.swl-bld-head { font-family: var(--swl-head); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--swl-stone2); margin-bottom: 1.25rem; padding-bottom: .85rem; border-bottom: 1px solid var(--swl-rule); display: flex; align-items: center; gap: .6rem; }
.swl-step-badge { width: 20px; height: 20px; border-radius: 50%; background: var(--swl-indigo); color: #fff; font-family: var(--swl-head); font-size: .62rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.swl-opt { display: flex; align-items: center; gap: .85rem; padding: .78rem 1rem; border: 1.5px solid var(--swl-rule); border-radius: var(--swl-rlg); cursor: pointer; margin-bottom: .4rem; transition: var(--swl-ease); }
.swl-opt:hover { border-color: rgba(0,212,170,.35); }
.swl-opt.swl-opt-on { border-color: var(--swl-teal); background: var(--swl-teal-d); }
.swl-opt input[type="radio"] { accent-color: var(--swl-teal); flex-shrink: 0; cursor: pointer; }
.swl-opt-bd { flex: 1; }
.swl-opt-nm { font-family: var(--swl-head); font-size: .88rem; font-weight: 600; color: var(--swl-indigo); }
.swl-opt-sm { font-family: var(--swl-body); font-size: .72rem; color: var(--swl-stone); }
.swl-opt-pr { font-family: var(--swl-head); font-size: .92rem; font-weight: 700; color: var(--swl-indigo); white-space: nowrap; }
.swl-add { display: flex; align-items: center; gap: .85rem; padding: .72rem 1rem; border: 1.5px solid var(--swl-rule); border-radius: var(--swl-rlg); cursor: pointer; margin-bottom: .4rem; transition: var(--swl-ease); }
.swl-add:hover { border-color: rgba(0,212,170,.3); }
.swl-add.swl-add-on { border-color: var(--swl-teal); background: var(--swl-teal-d); }
.swl-add input[type="checkbox"] { accent-color: var(--swl-teal); flex-shrink: 0; cursor: pointer; }
.swl-add-lbl { flex: 1; font-family: var(--swl-head); font-size: .84rem; font-weight: 500; color: var(--swl-indigo); }
.swl-add-amt { font-family: var(--swl-head); font-size: .84rem; font-weight: 700; color: var(--swl-indigo); white-space: nowrap; }
.swl-hrs-band { display: flex; align-items: center; gap: 1.25rem; margin-top: .65rem; }
.swl-hrs-range { flex: 1; accent-color: var(--swl-teal); cursor: pointer; }
.swl-hrs-disp { font-family: var(--swl-head); font-size: .86rem; font-weight: 600; color: var(--swl-indigo); min-width: 130px; text-align: right; }

/* Summary panel */
.swl-sum { position: sticky; top: calc(var(--swl-nav-h) + 16px); background: var(--swl-indigo); border-radius: var(--swl-rxl); padding: 2rem; }
.swl-sum-hd { font-family: var(--swl-head); font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 1.25rem; padding-bottom: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.swl-sum-lines { min-height: 50px; display: flex; flex-direction: column; gap: .45rem; margin-bottom: .75rem; }
.swl-sum-line { display: flex; justify-content: space-between; gap: .75rem; font-size: .82rem; }
.swl-sum-key { color: rgba(255,255,255,.3); font-family: var(--swl-head); }
.swl-sum-val { font-family: var(--swl-head); color: rgba(255,255,255,.7); text-align: right; font-weight: 500; }
.swl-sum-divider { height: 1px; background: rgba(255,255,255,.08); margin: .75rem 0; }
.swl-sum-total-row { display: flex; justify-content: space-between; align-items: baseline; }
.swl-sum-tl { font-family: var(--swl-head); font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.2); }
.swl-sum-tv { font-family: var(--swl-head); font-size: 2.4rem; font-weight: 700; color: var(--swl-teal); letter-spacing: -.03em; }
.swl-sum-btn { display: block; width: 100%; margin-top: 1.5rem; padding: .85rem; background: var(--swl-teal); color: var(--swl-indigo); border: none; border-radius: var(--swl-rmd); font-family: var(--swl-head); font-size: .88rem; font-weight: 700; cursor: pointer; transition: var(--swl-ease); text-align: center; }
.swl-sum-btn:hover { background: var(--swl-teal2); transform: translateY(-1px); }
.swl-sum-btn:disabled { opacity: .2; cursor: not-allowed; transform: none; }
.swl-sum-note { font-family: var(--swl-head); font-size: .62rem; color: rgba(255,255,255,.18); text-align: center; margin-top: .65rem; }

/* ── FAQ -- CATEGORIES STYLE (unique) ──────────────────────── */
.swl-faq-list { max-width: 820px; margin: 3.5rem auto 0; }
.swl-faq-entry { border-bottom: 1px solid var(--swl-rule); }
.swl-faq-entry:first-child { border-top: 1px solid var(--swl-rule); }
.swl-faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left; }
.swl-faq-qtext { font-family: var(--swl-head); font-size: .95rem; font-weight: 600; color: var(--swl-indigo); line-height: 1.3; }
.swl-faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--swl-rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--swl-ease); }
.swl-faq-icon svg { width: 10px; height: 10px; color: var(--swl-indigo); transition: transform .22s; }
.swl-faq-entry.swl-fq-open .swl-faq-icon { background: var(--swl-teal); border-color: var(--swl-teal); }
.swl-faq-entry.swl-fq-open .swl-faq-icon svg { color: var(--swl-indigo); transform: rotate(45deg); }
.swl-faq-ans { display: none; padding-bottom: 1.25rem; }
.swl-faq-ans p { font-family: var(--swl-body); font-size: .9rem; color: var(--swl-stone); line-height: 1.74; }
.swl-faq-entry.swl-fq-open .swl-faq-ans { display: block; }

/* ── CHECKOUT ────────────────────────────────────────────── */
.swl-chk-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; margin-top: 3rem; }
.swl-chk-form-wrap { background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl); padding: 2.5rem; }
.swl-chk-sum { position: sticky; top: calc(var(--swl-nav-h) + 16px); background: var(--swl-indigo); border-radius: var(--swl-rxl); padding: 2rem; }
.swl-chk-sum-hd { font-family: var(--swl-head); font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 1.25rem; padding-bottom: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.swl-chk-ln { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: .5rem; }
.swl-chk-lk { color: rgba(255,255,255,.3); font-family: var(--swl-head); }
.swl-chk-lv { font-family: var(--swl-head); color: rgba(255,255,255,.7); font-weight: 500; }
.swl-chk-tot { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(255,255,255,.08); padding-top: .85rem; margin-top: .85rem; }
.swl-chk-totk { font-family: var(--swl-head); font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.2); }
.swl-chk-totv { font-family: var(--swl-head); font-size: 2rem; font-weight: 700; color: var(--swl-teal); letter-spacing: -.02em; }

/* ── FORMS ───────────────────────────────────────────────── */
.swl-field { margin-bottom: 1.1rem; }
.swl-label { display: block; font-family: var(--swl-head); font-size: .62rem; font-weight: 700; color: var(--swl-indigo); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .38rem; }
.swl-input { width: 100%; padding: .78rem 1rem; border: 1.5px solid var(--swl-rule); border-radius: var(--swl-rlg); font-family: var(--swl-body); font-size: .95rem; color: var(--swl-indigo); background: var(--swl-cream); transition: border-color var(--swl-ease), box-shadow var(--swl-ease); }
.swl-input:focus { border-color: var(--swl-teal); box-shadow: 0 0 0 3px var(--swl-teal-d); }
.swl-input::placeholder { color: rgba(94,94,122,.3); }
.swl-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.swl-agree { display: flex; align-items: flex-start; gap: .65rem; margin-top: 1rem; }
.swl-agree input { width: 14px; height: 14px; margin-top: 3px; accent-color: var(--swl-teal); flex-shrink: 0; cursor: pointer; }
.swl-agree label { font-family: var(--swl-body); font-size: .86rem; color: var(--swl-stone); cursor: pointer; line-height: 1.5; }
.swl-agree label a { color: var(--swl-teal2); }
.swl-submit-btn { display: block; width: 100%; margin-top: 1.75rem; padding: .92rem; background: var(--swl-indigo); color: #fff; border: none; border-radius: var(--swl-rmd); font-family: var(--swl-head); font-size: .92rem; font-weight: 700; cursor: pointer; transition: var(--swl-ease); }
.swl-submit-btn:hover { background: var(--swl-indigo2); transform: translateY(-1px); }

/* ── SECTIONS ────────────────────────────────────────────── */
.swl-section { padding: 7rem 0; }
.swl-section--cream { padding: 7rem 0; background: var(--swl-cream); border-top: 1px solid var(--swl-rule); border-bottom: 1px solid var(--swl-rule); }
.swl-section--indigo { padding: 7rem 0; background: var(--swl-indigo); }
.swl-section--dark { padding: 7rem 0; background: var(--swl-dark); }

/* ── PAGE BANNER ─────────────────────────────────────────── */
.swl-page-banner { background: var(--swl-indigo); padding: 7rem 0 4rem; text-align: center; border-bottom: 3px solid var(--swl-teal); }
.swl-page-banner h1 { color: #fff; text-align: center; margin-bottom: .75rem; }
.swl-page-banner p { color: rgba(255,255,255,.38); max-width: 54ch; margin: 0 auto; text-align: center; font-family: var(--swl-body); font-style: italic; }
.swl-breadcrumb { display: flex; align-items: center; justify-content: center; gap: .4rem; font-family: var(--swl-head); font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.22); margin-bottom: 1.5rem; }
.swl-breadcrumb a { color: rgba(255,255,255,.22); transition: color var(--swl-ease); }
.swl-breadcrumb a:hover { color: var(--swl-teal); }

/* ── SERVICE SINGLE ──────────────────────────────────────── */
.swl-svc-layout { display: grid; grid-template-columns: 1fr 290px; gap: 4.5rem; align-items: start; margin-top: 4rem; }
.swl-svc-body h2 { font-family: var(--swl-head); font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 .85rem; letter-spacing: -.015em; color: var(--swl-indigo); }
.swl-svc-body p { margin-bottom: .9rem; font-size: .9rem; font-family: var(--swl-body); }
.swl-svc-body ul { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.swl-svc-body li { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--swl-body); font-size: .88rem; color: var(--swl-stone); }
.swl-svc-body li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--swl-teal); flex-shrink: 0; margin-top: .7rem; }
.swl-svc-aside { position: sticky; top: calc(var(--swl-nav-h) + 16px); background: var(--swl-indigo); border-radius: var(--swl-rxl); overflow: hidden; }
.swl-aside-hero { padding: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.swl-aside-from { font-family: var(--swl-head); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: .2rem; }
.swl-aside-price { font-family: var(--swl-head); font-size: 2.8rem; font-weight: 700; color: var(--swl-teal); line-height: 1; letter-spacing: -.03em; }
.swl-aside-unit { font-family: var(--swl-head); font-size: .75rem; color: rgba(255,255,255,.25); margin-top: .2rem; }
.swl-aside-rows { padding: 1.5rem; }
.swl-aside-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .82rem; }
.swl-aside-row:last-child { border-bottom: none; }
.swl-aside-rk { color: rgba(255,255,255,.25); font-family: var(--swl-head); }
.swl-aside-rv { font-family: var(--swl-head); color: rgba(255,255,255,.65); text-align: right; font-weight: 500; }
.swl-aside-cta { display: block; margin: 0 1.5rem 1.5rem; text-align: center; padding: .82rem; background: var(--swl-teal); color: var(--swl-indigo); border-radius: var(--swl-rmd); font-family: var(--swl-head); font-size: .82rem; font-weight: 700; transition: background var(--swl-ease); }
.swl-aside-cta:hover { background: var(--swl-teal2); }

/* ── CONTACT ─────────────────────────────────────────────── */
.swl-contact-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.swl-ci-row { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.5rem; }
.swl-ci-ico { width: 38px; height: 38px; border-radius: var(--swl-rlg); background: var(--swl-teal-d); border: 1px solid rgba(0,212,170,.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.swl-ci-ico svg { width: 16px; height: 16px; color: var(--swl-teal2); }
.swl-ci-l { font-family: var(--swl-head); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--swl-stone2); margin-bottom: .12rem; }
.swl-ci-v { font-family: var(--swl-body); font-size: .9rem; color: var(--swl-indigo); }
.swl-ci-v a { color: var(--swl-teal2); }

/* ── LEGAL ───────────────────────────────────────────────── */
.swl-legal { max-width: 820px; margin: 4rem auto; }
.swl-legal h2 { font-family: var(--swl-head); font-size: 1.4rem; font-weight: 700; margin: 2.5rem 0 .75rem; letter-spacing: -.01em; }
.swl-legal h3 { font-family: var(--swl-head); font-size: .95rem; font-weight: 600; margin: 1.5rem 0 .45rem; }
.swl-legal p, .swl-legal li { font-family: var(--swl-body); font-size: .9rem; color: var(--swl-stone); line-height: 1.76; margin-bottom: .85rem; }
.swl-legal ul, .swl-legal ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.swl-legal a { color: var(--swl-teal2); }
.swl-legal-stamp { display: inline-block; font-family: var(--swl-head); font-size: .68rem; color: var(--swl-stone2); background: var(--swl-fog); border: 1px solid var(--swl-rule); padding: .22rem .75rem; border-radius: 100px; margin-bottom: 1.5rem; }

/* ── RESULT PAGES ─────────────────────────────────────────── */
.swl-result-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem; }
.swl-result-card { max-width: 460px; width: 100%; text-align: center; background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl); padding: 3rem; box-shadow: var(--swl-sh); }
.swl-res-ico { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.swl-res-ok  { background: var(--swl-teal-d); border: 1px solid rgba(0,212,170,.3); }
.swl-res-no  { background: var(--swl-fog); border: 1px solid var(--swl-rule); }
.swl-res-ico svg { width: 28px; height: 28px; color: var(--swl-teal); }

/* ── FOOTER ──────────────────────────────────────────────── */
.swl-footer { background: var(--swl-dark); padding: 5.5rem 0 2.5rem; }
.swl-foot-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.swl-foot-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.swl-foot-mark { width: 28px; height: 28px; background: var(--swl-indigo); border-radius: var(--swl-rmd); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.swl-foot-mark svg { width: 14px; height: 14px; color: var(--swl-teal); }
.swl-foot-wm { font-family: var(--swl-head); font-size: 1rem; font-weight: 700; color: #fff; }
.swl-foot-wm em { color: var(--swl-teal); font-style: normal; }
.swl-foot-tag { font-family: var(--swl-body); font-size: .84rem; color: rgba(255,255,255,.2); line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
.swl-foot-addr { font-family: var(--swl-body); font-size: .76rem; color: rgba(255,255,255,.12); line-height: 1.9; }
.swl-foot-addr a { color: rgba(255,255,255,.12); transition: color var(--swl-ease); }
.swl-foot-addr a:hover { color: var(--swl-teal); }
.swl-foot-socials { display: flex; gap: .45rem; margin-top: 1.25rem; }
.swl-fsoc { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); transition: var(--swl-ease); }
.swl-fsoc:hover { border-color: rgba(0,212,170,.4); color: var(--swl-teal); background: rgba(0,212,170,.06); }
.swl-fsoc svg { width: 13px; height: 13px; }
.swl-foot-col h4 { font-family: var(--swl-head); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: .9rem; }
.swl-foot-col ul { display: flex; flex-direction: column; gap: .45rem; }
.swl-foot-col li a { font-family: var(--swl-body); font-size: .8rem; color: rgba(255,255,255,.15); transition: color var(--swl-ease); }
.swl-foot-col li a:hover { color: var(--swl-teal); }
.swl-foot-base { padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.swl-foot-copy { font-family: var(--swl-head); font-size: .68rem; color: rgba(255,255,255,.1); }
.swl-foot-dig { font-family: var(--swl-body); font-size: .68rem; color: rgba(255,255,255,.1); display: flex; align-items: center; gap: .35rem; font-style: italic; }
.swl-foot-dig::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--swl-teal); opacity: .4; }
.swl-foot-legal { display: flex; gap: 1.5rem; }
.swl-foot-legal a { font-family: var(--swl-head); font-size: .68rem; color: rgba(255,255,255,.1); transition: color var(--swl-ease); }
.swl-foot-legal a:hover { color: var(--swl-teal); }

/* ── COOKIE ──────────────────────────────────────────────── */
.swl-cookie { position: fixed; bottom: 1.5rem; left: 1.5rem; width: 310px; background: var(--swl-indigo); border: 1px solid rgba(255,255,255,.12); border-radius: var(--swl-rxl); padding: 1.5rem; box-shadow: var(--swl-sh); z-index: 9999; transition: opacity .3s; }
.swl-cookie.swl-ck-hidden { opacity: 0; pointer-events: none; }
.swl-ck-txt { font-family: var(--swl-body); font-size: .82rem; color: rgba(255,255,255,.38); line-height: 1.6; margin-bottom: 1rem; }
.swl-ck-acts { display: flex; gap: .6rem; }
.swl-ck-ok { flex: 1; padding: .55rem; background: var(--swl-teal); color: var(--swl-indigo); border: none; border-radius: var(--swl-rmd); font-family: var(--swl-head); font-size: .78rem; font-weight: 700; cursor: pointer; transition: background var(--swl-ease); }
.swl-ck-ok:hover { background: var(--swl-teal2); }
.swl-ck-no { flex: 1; padding: .55rem; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.38); background: none; border-radius: var(--swl-rmd); font-size: .78rem; font-family: var(--swl-head); cursor: pointer; transition: var(--swl-ease); }
.swl-ck-no:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* ── CHAT ────────────────────────────────────────────────── */
.swl-chat-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; border-radius: 50%; background: var(--swl-teal); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--swl-sht); z-index: 800; border: none; transition: var(--swl-ease); }
.swl-chat-fab:hover { transform: scale(1.08); background: var(--swl-teal2); }
.swl-chat-fab svg { width: 20px; height: 20px; color: var(--swl-indigo); }
.swl-chat-box { position: fixed; bottom: calc(1.5rem + 50px + .75rem); right: 1.5rem; width: 300px; background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rxl); box-shadow: var(--swl-sh); z-index: 800; overflow: hidden; transform: translateY(12px) scale(.96); opacity: 0; pointer-events: none; transition: transform .22s, opacity .22s; }
.swl-chat-box.swl-chat-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.swl-chat-hdr { background: var(--swl-indigo); padding: 1.1rem 1.25rem; display: flex; align-items: center; gap: .65rem; }
.swl-chat-av { width: 30px; height: 30px; border-radius: 50%; background: var(--swl-teal); display: flex; align-items: center; justify-content: center; font-family: var(--swl-head); font-size: .72rem; font-weight: 700; color: var(--swl-indigo); }
.swl-chat-hdr h4 { font-family: var(--swl-head); font-size: .84rem; font-weight: 700; color: #fff; }
.swl-chat-hdr span { font-family: var(--swl-body); font-size: .7rem; color: rgba(255,255,255,.38); }
.swl-chat-body { padding: 1.25rem; }
.swl-chat-msg { font-family: var(--swl-body); font-size: .82rem; color: var(--swl-stone); margin-bottom: .85rem; line-height: 1.55; font-style: italic; }
.swl-chat-inp, .swl-chat-area { width: 100%; padding: .55rem .85rem; border: 1px solid var(--swl-rule); border-radius: var(--swl-rlg); font-family: var(--swl-body); font-size: .82rem; color: var(--swl-indigo); background: var(--swl-cream); margin-bottom: .5rem; }
.swl-chat-area { resize: none; height: 64px; }
.swl-chat-inp:focus, .swl-chat-area:focus { border-color: var(--swl-teal); outline: none; }
.swl-chat-send { width: 100%; padding: .58rem; background: var(--swl-indigo); color: #fff; border: none; border-radius: var(--swl-rmd); font-family: var(--swl-head); font-size: .8rem; font-weight: 700; cursor: pointer; transition: background var(--swl-ease); }
.swl-chat-send:hover { background: var(--swl-indigo2); }
.swl-chat-done { display: none; text-align: center; padding: .85rem; font-family: var(--swl-head); font-size: .84rem; color: var(--swl-teal); }

/* ── FADE ────────────────────────────────────────────────── */
.swl-fade { opacity: 0; transform: translateY(16px); transition: opacity .44s ease, transform .44s ease; }
.swl-fade.swl-in { opacity: 1; transform: none; }
.swl-d1 { transition-delay: .08s; }
.swl-d2 { transition-delay: .16s; }
.swl-d3 { transition-delay: .24s; }

/* ── ABOUT ───────────────────────────────────────────────── */
.swl-about-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: start; margin-top: 4rem; }
.swl-about-img { border-radius: var(--swl-rxx); overflow: hidden; background: var(--swl-fog); aspect-ratio: 4/3; }
.swl-about-img img { width: 100%; height: 100%; object-fit: cover; }
.swl-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.swl-value-cell { background: var(--swl-white); border: 1px solid var(--swl-rule); border-radius: var(--swl-rlg); padding: 1.25rem; }
.swl-value-cell h4 { font-family: var(--swl-head); font-size: .88rem; font-weight: 700; color: var(--swl-indigo); margin-bottom: .3rem; }
.swl-value-cell p { font-size: .78rem; margin: 0; line-height: 1.55; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .swl-mag-grid { grid-template-columns: 1fr; }
  .swl-mag-side { flex-direction: row; }
  .swl-price-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .swl-bld-wrap { grid-template-columns: 1fr; }
  .swl-sum { position: static; }
  .swl-chk-grid { grid-template-columns: 1fr; }
  .swl-chk-sum { position: static; }
  .swl-svc-layout { grid-template-columns: 1fr; }
  .swl-svc-aside { position: static; }
  .swl-contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .swl-about-split { grid-template-columns: 1fr; }
  .swl-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .swl-nav-links, .swl-lang-sw { display: none; }
  .swl-mob-tog { display: flex; }
  .swl-shell { padding: 0 1.25rem; }
  .swl-section, .swl-section--cream, .swl-section--indigo, .swl-section--dark { padding: 5rem 0; }
  .swl-hero-card { padding: 2.5rem 1.75rem; }
  .swl-bento { grid-template-columns: 1fr; }
  .swl-bento-card--wide { grid-column: span 1; }
  .swl-numgrid { grid-template-columns: 1fr 1fr; }
  .swl-testi-card { min-width: 280px; }
  .swl-foot-grid { grid-template-columns: 1fr; }
  .swl-foot-base { flex-direction: column; align-items: flex-start; }
  .swl-row2 { grid-template-columns: 1fr; }
  .swl-mag-side { flex-direction: column; }
  .swl-values-grid { grid-template-columns: 1fr; }
}
