/* =========================================================
   SWM LLC — shared stylesheet
   Palette:  ink #0B1F3A  slate #16324F  mist #E8EEF4
             signal #1D9BF0 (marketplace blue)  amber #F5A623
   Type:     Display "Sora", Body "Inter"
   ========================================================= */

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

:root {
  --ink:       #0B1F3A;
  --slate:     #16324F;
  --mist:      #E8EEF4;
  --signal:    #1D9BF0;
  --signal-dk: #1478BD;
  --amber:     #F5A623;
  --text:      #1B2A3D;
  --muted:     #5C6B7E;
  --line:      #DCE4EC;
  --white:     #FFFFFF;
  --radius:    14px;
  --wrap:      1160px;
  --shadow:    0 12px 40px rgba(11,31,58,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; color: var(--ink); line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { margin: 0 0 1rem; }
a  { color: var(--signal-dk); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--tint { background: var(--mist); }
.eyebrow {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--signal-dk);
  margin: 0 0 .8rem;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--signal); color: #fff; box-shadow: 0 8px 22px rgba(29,155,240,.32); }
.btn--primary:hover { background: var(--signal-dk); color:#fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--signal); color: var(--signal-dk); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora'; font-weight: 800;
  font-size: 1.25rem; color: var(--ink); letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--signal), var(--ink));
  display: grid; place-items: center; color: #fff; font-size: .95rem; font-weight: 800;
}
.brand .tag { color: var(--muted); font-weight: 600; font-size: .7rem; letter-spacing:.12em;
  text-transform: uppercase; border-left: 1px solid var(--line); padding-left: 10px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--signal-dk); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family:'Sora'; font-weight:600; font-size:.9rem; color:var(--ink); white-space:nowrap; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; transition:.2s; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px;
  }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1200px 500px at 80% -10%, rgba(29,155,240,.16), transparent 60%),
  linear-gradient(180deg, #fff 0%, var(--mist) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
  padding: 76px 0 84px; }
.hero h1 span { color: var(--signal-dk); }
.hero .lead { margin-top: 6px; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; color: var(--muted);
  font-size: .85rem; }
.hero-trust b { color: var(--ink); font-family:'Sora'; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px;
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-bottom: 14px; }
.channel-row { display:flex; align-items:center; justify-content:space-between; padding:12px 0;
  border-bottom:1px solid var(--line); font-size:.92rem; }
.channel-row:last-child { border-bottom:0; }
.channel-row .val { font-family:'Sora'; font-weight:700; color:var(--signal-dk); }
@media (max-width: 860px){ .hero-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- logo strip ---------- */
.marquee { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.marquee-inner { display:flex; gap:46px; align-items:center; justify-content:center; flex-wrap:wrap;
  padding: 22px 24px; color: var(--muted); font-family:'Sora'; font-weight:600; font-size:.95rem; }
.marquee-inner span { opacity:.7; }

/* ---------- cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px){ .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: border-color .18s, transform .18s, box-shadow .18s;
}
.card:hover { border-color: var(--signal); transform: translateY(-3px); box-shadow: var(--shadow); }
.card .ic { width: 46px; height: 46px; border-radius: 11px; display:grid; place-items:center;
  background: var(--mist); margin-bottom: 16px; font-size: 1.4rem; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- steps ---------- */
.steps { counter-reset: step; display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width:760px){ .steps { grid-template-columns:1fr; } }
.step { position: relative; padding-top: 14px; }
.step::before { counter-increment: step; content: "0" counter(step);
  font-family:'Sora'; font-weight:800; font-size:2rem; color: var(--signal);
  opacity:.35; display:block; margin-bottom: 6px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size:.95rem; margin:0; }

/* ---------- pricing ---------- */
.price-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items:start; }
@media (max-width:900px){ .price-grid { grid-template-columns:1fr; max-width:440px; margin-inline:auto; } }
.price {
  background:#fff; border:1px solid var(--line); border-radius: 16px; padding: 30px 26px;
  display:flex; flex-direction:column;
}
.price--featured { border-color: var(--signal); box-shadow: var(--shadow); position: relative; }
.price--featured::after { content:"Most popular"; position:absolute; top:-12px; left:50%;
  transform:translateX(-50%); background:var(--signal); color:#fff; font-family:'Sora';
  font-weight:600; font-size:.72rem; letter-spacing:.06em; padding:5px 14px; border-radius:999px; }
.price h3 { font-size:1.15rem; }
.price .amt { font-family:'Sora'; font-weight:800; font-size:2.2rem; color:var(--ink); margin:.2em 0; }
.price .amt small { font-size:.9rem; color:var(--muted); font-weight:600; }
.price ul { list-style:none; margin:16px 0 24px; padding:0; }
.price li { padding:8px 0 8px 26px; position:relative; font-size:.94rem; color:var(--text);
  border-bottom:1px solid var(--line); }
.price li:last-child{ border-bottom:0; }
.price li::before { content:"✓"; position:absolute; left:0; color:var(--signal); font-weight:700; }
.price .btn { margin-top:auto; justify-content:center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width:100%; text-align:left; background:none; border:0; cursor:pointer;
  font-family:'Sora'; font-weight:600; font-size:1.05rem; color:var(--ink);
  padding: 20px 40px 20px 0; position:relative; }
.faq-q::after { content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%);
  font-size:1.5rem; color:var(--signal); transition:.2s; }
.faq-item.open .faq-q::after { transform:translateY(-50%) rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease; color:var(--muted); }
.faq-item.open .faq-a { max-height:340px; }
.faq-a p { padding: 0 0 20px; margin:0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--ink), var(--slate)); color:#fff;
  border-radius: 20px; padding: 52px; text-align:center; }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 52ch; margin: 0 auto 26px; }
.cta-band .btn--primary { background:#fff; color:var(--ink); }
.cta-band .btn--primary:hover { background: var(--mist); color:var(--ink); }

/* ---------- forms ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius:16px; padding:32px;
  box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display:block; font-family:'Sora'; font-weight:600; font-size:.85rem;
  color:var(--ink); margin-bottom:6px; }
.field input, .field textarea, .field select {
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:10px;
  font-family:inherit; font-size:.98rem; color:var(--text); background:#fff;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline:none; border-color:var(--signal); box-shadow:0 0 0 3px rgba(29,155,240,.15); }
.hp { position:absolute; left:-9999px; top:-9999px; }

/* ---------- doc pages (policies) ---------- */
.doc { max-width: 820px; margin: 0 auto; }
.doc h2 { margin-top: 2em; }
.doc h3 { margin-top: 1.6em; }
.doc p, .doc li { color: var(--text); }
.doc ul { padding-left: 1.2em; }
.doc .updated { color: var(--muted); font-size:.9rem; }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: #C4D2E0; padding: 60px 0 30px; }
.foot-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width:820px){ .foot-grid { grid-template-columns: 1fr 1fr; gap:26px; } }
.site-foot h4 { color:#fff; font-size:.9rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; }
.site-foot a { color:#C4D2E0; font-size:.92rem; display:block; margin-bottom:9px; }
.site-foot a:hover { color:#fff; text-decoration:none; }
.foot-brand .brand { color:#fff; margin-bottom:14px; }
.foot-brand p { font-size:.9rem; color:#9FB2C6; max-width: 30ch; }
.foot-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:40px; padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.85rem; color:#9FB2C6; }
.pay-row { display:flex; gap:14px; align-items:center; font-family:'Sora'; font-weight:600; }

/* reveal on scroll */
.reveal { opacity:0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto;} }

/* ---------- image-backed hero ---------- */
.hero--img { background:
  linear-gradient(180deg, rgba(11,31,58,.82), rgba(22,50,79,.90)),
  url('../img/hero-bg.jpg') center/cover no-repeat; }
.hero--img .eyebrow { color:#8FD0FF; }
.hero--img h1, .hero--img h3 { color:#fff; }
.hero--img h1 span { color:#8FD0FF; }
.hero--img .lead { color: rgba(255,255,255,.85); }
.hero--img .hero-trust { color: rgba(255,255,255,.75); }
.hero--img .hero-trust b { color:#fff; }
.hero--img .btn--ghost { color:#fff; border-color: rgba(255,255,255,.5); }
.hero--img .btn--ghost:hover { border-color:#fff; color:#fff; }
.hero--img .hero-card { background: rgba(255,255,255,.97); }

/* ---------- portfolio ---------- */
.work-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
@media (max-width:880px){ .work-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .work-grid{ grid-template-columns:1fr; } }
.work {
  border:1px solid var(--line); border-radius:14px; overflow:hidden; background:#fff;
  box-shadow: 0 4px 18px rgba(11,31,58,.06); transition: transform .18s, box-shadow .18s;
}
.work:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work-thumb { height:210px; overflow:hidden; background:var(--mist); }
.work-thumb img { width:100%; height:auto; display:block; }
.work-meta { padding:16px 18px; }
.work-meta h3 { font-size:1.02rem; margin:0 0 4px; }
.work-meta p { font-size:.88rem; color:var(--muted); margin:0; }

/* ---------- image CTA band ---------- */
.cta-band--img { background:
  linear-gradient(120deg, rgba(11,31,58,.92), rgba(22,50,79,.86)),
  url('../img/cta-bg.jpg') center/cover no-repeat; }

/* ---------- real logo mark ---------- */
.brand { gap: 12px; }
.brand-mark { height: 46px; width: auto; display:block; border-radius: 4px; }
.brand-name { font-family:'Sora'; font-weight:800; font-size:1.35rem; color:var(--ink); letter-spacing:-.01em; line-height:1; }
.brand-name .tag { color:var(--muted); font-weight:600; font-size:.72rem; letter-spacing:.14em;
  text-transform:uppercase; margin-left:3px; }
.site-foot .brand-mark { height: 50px; }

/* footer trust badges */
.foot-badges { display:flex; gap:12px; align-items:center; margin-top:16px; flex-wrap:wrap; }
.foot-badges img { height:34px; width:auto; background:#fff; border-radius:6px; padding:3px 6px; }
/* payment card icons */
.card-ic { height:22px; width:auto; vertical-align:middle; margin-left:2px;
  background:#fff; border-radius:3px; padding:1px 2px; }
.pay-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }

/* ---------- service package blocks ---------- */
.pack-block { margin-bottom: 44px; }
.pack-block:last-child { margin-bottom: 0; }
.pack-title { font-size: 1.15rem; padding-bottom: 12px; margin-bottom: 22px;
  border-bottom: 2px solid var(--mist); color: var(--ink); }
.pack-block .price-grid { grid-template-columns: repeat(3,1fr); }
@media (max-width:900px){ .pack-block .price-grid { grid-template-columns:1fr; max-width:440px; margin-inline:auto; } }
