/* ==========================================================================
   Tēls — sociālo mediju aģentūra
   Warm & editorial theme · coral/orange accent
   ========================================================================== */

:root {
  --bg:         #FAF5EC; /* warm cream */
  --bg-2:       #F3E9D8; /* deeper cream for alternating sections */
  --surface:    #FFFDF8; /* cards */
  --ink:        #241F1A; /* near-black, warm */
  --ink-2:      #5E554A; /* muted body */
  --ink-3:      #8A8073; /* faint */
  --line:       #E7DCC9; /* warm hairline */
  --accent:     #EC5B36; /* coral / orange */
  --accent-ink: #B23C1C; /* darker coral for text on cream */
  --accent-soft:#FBE3D9; /* coral tint */
  --amber:      #F4A24C; /* warm secondary */
  --shadow-sm:  0 1px 2px rgba(50,35,20,.05);
  --shadow:     0 2px 6px rgba(50,35,20,.05), 0 18px 40px -22px rgba(70,45,25,.30);
  --radius:     20px;
  --radius-sm:  12px;
  --maxw:       1120px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 1.4rem + 3.6vw, 3.9rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); }
p  { margin: 0 0 1rem; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--alt { background: var(--bg-2); }
.section--accent { background: var(--ink); color: #F4ECDF; }
.section--accent h2, .section--accent h3 { color: #FFF; }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--ink-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: .9rem;
}
.section--accent .eyebrow { color: var(--amber); }

.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px -10px rgba(236,91,54,.7); }
.btn--primary:hover { background: #d94e2c; color:#fff; box-shadow: 0 14px 26px -10px rgba(236,91,54,.8); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn--light { background:#fff; color: var(--ink); }
.btn--light:hover { background:#fff; color: var(--accent-ink); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,245,236,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 34px; height: 34px; flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: .98rem; padding: .5rem .7rem; border-radius: 8px; }
.nav-links a:hover { color: var(--ink); background: rgba(236,91,54,.08); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; inset: 70px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1.1rem,4vw,2rem) 1.4rem;
    box-shadow: var(--shadow);
    transform: translateY(-130%); opacity: 0; pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .8rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn--ghost { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; top: -22%; right: -12%;
  width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle at 50% 50%, rgba(244,162,76,.30), rgba(236,91,54,.18) 45%, transparent 70%);
  border-radius: 50%; filter: blur(8px); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { max-width: 16ch; }
.hero .lead { margin-top: 1.1rem; }
.hero .btn-row { margin-top: 2rem; }
.hero-note { margin-top: 1rem; font-size: .95rem; color: var(--ink-3); display: flex; align-items: center; gap: .5rem; }
.hero-note svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }

/* ---------- problem / solution band ---------- */
.band { display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px){ .band { grid-template-columns: 1fr; } }
.band .card { padding: clamp(1.5rem, 3vw, 2.3rem); border-radius: var(--radius); }
.card-problem { background: var(--surface); border: 1px solid var(--line); }
.card-solution { background: var(--accent-soft); border: 1px solid #f3cdbd; }
.card .tag { font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); display: block; margin-bottom: .6rem; }
.card-problem .quote { font-family: var(--font-display); font-size: clamp(1.2rem,1.05rem+.8vw,1.7rem); line-height: 1.3; color: var(--ink); }

/* ---------- generic card grid ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){ .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem,2.5vw,1.9rem);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d8c8ad; }
.feature .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-ink); margin-bottom: 1rem;
}
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: .4rem; }
.feature p { color: var(--ink-2); margin-bottom: 0; font-size: 1rem; }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.step .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--accent); line-height: 1; display: block; margin-bottom: .6rem; }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--ink-2); margin: 0; font-size: 1rem; }

/* ---------- pricing ---------- */
.pricing { display: grid; gap: 1.3rem; grid-template-columns: repeat(3,1fr); align-items: stretch; }
@media (max-width: 900px){ .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem,3vw,2.2rem); display: flex; flex-direction: column;
}
.plan--featured { border: 2px solid var(--accent); box-shadow: var(--shadow); position: relative; }
.plan__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .05em; padding: .35rem .9rem; border-radius: 999px; white-space: nowrap; }
.plan h3 { margin-bottom: .25rem; }
.plan .price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--ink); line-height: 1; margin: .6rem 0 .2rem; }
.plan .price span { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--ink-3); }
.plan .plan-desc { color: var(--ink-2); font-size: .98rem; min-height: 2.6em; }
.plan ul { list-style: none; margin: 1.1rem 0 1.6rem; padding: 0; display: grid; gap: .6rem; }
.plan li { display: flex; gap: .6rem; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.plan li svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; margin-top: .15rem; }
.plan .btn { margin-top: auto; justify-content: center; }

/* ---------- portfolio ---------- */
.work { display: grid; gap: 1.3rem; grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px){ .work { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .work { grid-template-columns: 1fr; } }
.work-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .2s ease; }
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.work-thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--accent-soft), #f7ddc4); display: grid; place-items: center; color: var(--accent-ink); }
.work-thumb svg { width: 46px; height: 46px; opacity: .7; }
.work-body { padding: 1.3rem; }
.work-body .meta { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-ink); }
.work-body h3 { margin: .35rem 0 .5rem; }
.work-body p { color: var(--ink-2); font-size: .98rem; margin-bottom: .6rem; }
.work-body .result { font-weight: 600; color: var(--ink); font-size: .95rem; }

/* ---------- proof / testimonials ---------- */
.quotes { display: grid; gap: 1.2rem; grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px){ .quotes { grid-template-columns: 1fr; } }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; }
.quote-card .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: .7rem; }
.quote-card blockquote { margin: 0 0 1rem; font-size: 1.05rem; color: var(--ink); }
.quote-card .who { font-size: .92rem; color: var(--ink-3); }
.logos { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: center; margin-top: 2.2rem; opacity: .7; }
.logos .logo-chip { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink-3); border: 1px dashed var(--line); border-radius: 10px; padding: .5rem 1.1rem; }

/* ---------- about / team ---------- */
.about-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px){ .about-grid { grid-template-columns: 1fr; } }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2rem); }
.person .avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 1rem; }
.person h3 { margin-bottom: .15rem; }
.person .role { color: var(--accent-ink); font-weight: 600; font-size: .92rem; margin-bottom: .8rem; }
.person p { color: var(--ink-2); font-size: 1rem; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.3rem; transition: border-color .2s ease; }
.faq details[open] { border-color: #d8c8ad; }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 0; font-weight: 600; font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: 0 0 auto; transition: transform .2s ease; color: var(--accent); }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .answer { padding: 0 0 1.2rem; color: var(--ink-2); }
.faq .answer p { margin: 0; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr 1.1fr; align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: center; }
.contact-list .ci { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; flex: 0 0 auto; }
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list .label { font-size: .82rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.contact-list a, .contact-list span { font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--accent-ink); }
.region-note { margin-top: 1.6rem; padding: 1rem 1.2rem; background: var(--bg-2); border-radius: var(--radius-sm); font-size: .96rem; color: var(--ink-2); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2.2rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(236,91,54,.15); }
.field textarea { resize: vertical; min-height: 110px; }
.form .btn-row { margin-top: 1.3rem; }
.form-hint { font-size: .88rem; color: var(--ink-3); margin-top: .9rem; }
.form-status { margin-top: 1rem; font-size: .95rem; font-weight: 600; color: var(--accent-ink); display: none; }
.form-status.show { display: block; }

/* ---------- final CTA ---------- */
.cta-band { background: var(--ink); color: #F4ECDF; border-radius: var(--radius); padding: clamp(2.2rem,5vw,3.6rem); text-align: center; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: #d8cdba; max-width: 56ch; margin: 1rem auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 1.8rem; }

/* ---------- footer ---------- */
.site-footer { background: #1C1813; color: #C9BEAD; padding-block: clamp(2.5rem,5vw,3.5rem) 1.6rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #8A8073; margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: #C9BEAD; font-size: .96rem; }
.site-footer a:hover { color: #fff; }
.footer-about { font-size: .95rem; color: #9b9081; max-width: 38ch; margin-top: 1rem; }
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #C9BEAD; }
.socials a:hover { background: var(--accent); color: #fff; }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .85rem; color: #8A8073; }
.footer-bottom .reqs { max-width: 60ch; }

/* ---------- page hero (subpages) ---------- */
.page-hero { padding-block: clamp(2.8rem,5vw,4.5rem) clamp(1rem,2vw,2rem); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 1rem; }
.breadcrumb { font-size: .9rem; color: var(--ink-3); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--accent-ink); }

/* service detail rows */
.svc { display: grid; gap: 1.6rem; grid-template-columns: 56px 1fr; padding: clamp(1.4rem,3vw,2rem) 0; border-bottom: 1px solid var(--line); }
.svc:last-child { border-bottom: 0; }
.svc .ico { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; }
.svc .ico svg { width: 28px; height: 28px; }
.svc h3 { margin-bottom: .4rem; }
.svc p { color: var(--ink-2); margin: 0; }
@media (max-width: 560px){ .svc { grid-template-columns: 1fr; gap: .9rem; } }

/* utilities */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .feature:hover, .work-card:hover { transform: none; }
}
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* ---------- web-agency carousel (partner integration) ---------- */
.wa-intro { display:flex; align-items:flex-start; gap:.8rem; max-width:70ch; }
.wa-intro .wa-badge { flex:0 0 auto; font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#fff; background:var(--accent); border-radius:999px; padding:.4rem .8rem; margin-top:.2rem; }
.wa-carousel { position: relative; margin-top: 1.8rem; }
.wa-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; gap: 0;
}
.wa-track::-webkit-scrollbar { display: none; }
.wa-slide { flex: 0 0 100%; scroll-snap-align: center; display: flex; flex-direction: column; align-items: center; padding-inline: .3rem; }
.wa-card { width: 100%; max-width: 800px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.wa-chrome { display: flex; align-items: center; gap: 7px; padding: 9px 14px; background: #F1E8DA; border-bottom: 1px solid var(--line); }
.wa-chrome i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.wa-chrome i:nth-child(1){ background:#E69079; } .wa-chrome i:nth-child(2){ background:#E9C271; } .wa-chrome i:nth-child(3){ background:#AFC98A; }
.wa-url { margin-left: 12px; font-size: .78rem; color: var(--ink-3); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 3px 14px; max-width: 70%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wa-shot { aspect-ratio: 16 / 10; background: var(--bg-2); }
.wa-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.wa-info { max-width: 640px; text-align: center; margin-top: 1.5rem; }
.wa-info-head { display: flex; align-items: center; justify-content: center; gap: .7rem; margin-bottom: .5rem; min-height: 34px; }
.wa-info-head img { height: 30px; width: auto; max-width: 130px; object-fit: contain; border-radius: 6px; }
.wa-info h3 { margin: 0; }
.wa-info p { color: var(--ink-2); margin: 0 0 1.1rem; }
.wa-visit { display:inline-flex; align-items:center; gap:.45rem; }
.wa-visit svg { width: 16px; height: 16px; }
.wa-controls { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 1.6rem; }
.wa-nav { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: transform .18s ease, border-color .18s ease, color .18s ease; flex: 0 0 auto; }
.wa-nav:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.wa-nav svg { width: 22px; height: 22px; }
.wa-dots { display: flex; gap: .5rem; }
.wa-dot-btn { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: transform .2s ease, background .2s ease; }
.wa-dot-btn.active { background: var(--accent); transform: scale(1.35); }
@media (max-width: 560px){ .wa-info-head { flex-direction: column; gap: .4rem; } }

/* ---------- problem → solution journey ---------- */
.journey { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(1rem, 3vw, 2.4rem); }
.j-card { border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.3rem); }
.j-problem { background: rgba(255,255,255,.38); border: 1.5px dashed #d6c4a6; }
.j-solution { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.j-solution::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 5px; background: linear-gradient(var(--accent), var(--amber)); }
.j-tag { display: inline-block; font-weight: 700; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 1.1rem; }
.j-tag--muted { color: var(--ink-3); }

.j-bubble { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem 1.35rem; box-shadow: var(--shadow-sm); }
.j-bubble::after { content: ""; position: absolute; left: 32px; bottom: -9px; width: 18px; height: 18px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(45deg); }
.j-bubble p { font-family: var(--font-display); font-size: clamp(1.1rem, 1rem + .7vw, 1.5rem); line-height: 1.32; margin: 0; color: var(--ink); }
.j-note { color: var(--ink-2); margin: 1.4rem 0 0; }

.j-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.j-chips span { font-size: .8rem; color: var(--ink-3); border: 1px dashed var(--line); border-radius: 999px; padding: .3rem .8rem; background: rgba(255,255,255,.5); }
.j-chips span:nth-child(2n) { transform: rotate(-2.5deg); }
.j-chips span:nth-child(3n) { transform: rotate(2deg); }

.j-lead { color: var(--ink-2); margin: 0 0 1.3rem; }
.j-sorted { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.j-sorted li { display: flex; align-items: center; gap: .65rem; font-weight: 500; color: var(--ink); }
.j-sorted svg { width: 22px; height: 22px; color: #fff; background: var(--accent); border-radius: 50%; padding: 4px; flex: 0 0 auto; }

.j-connector { display: flex; flex-direction: column; align-items: center; gap: .65rem; color: var(--accent); }
.j-badge { font-family: var(--font-display); font-weight: 600; color: #fff; background: var(--accent); border-radius: 999px; padding: .35rem 1rem; font-size: .98rem; box-shadow: 0 10px 22px -10px rgba(236,91,54,.8); }
.j-arrow { width: 46px; height: 24px; }

@media (max-width: 860px) {
  .journey { grid-template-columns: 1fr; gap: 0; }
  .j-connector { padding: 1.1rem 0; }
  .j-arrow { transform: rotate(90deg); }
}
