/* =====================================================
   STELLARPULSE — style.css
   Brand system per spec:
   - Font: Space Grotesk, wide letter-spacing on headings + labels
   - Light/thin weights; ONE bold element per section
   - Indigo→Violet gradient #312880 → #4a3fa8
   - Teal accent #1D9E75
   - Lavender #AFA9EC, Periwinkle #7F77DD (secondary text)
   - Charcoals: #1a1a1a / #1f1f1f / #2a2a2a
   ===================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --indigo: #312880;
  --violet: #4a3fa8;
  --teal: #1D9E75;
  --teal-bright: #25c995;
  --lavender: #AFA9EC;
  --periwinkle: #7F77DD;

  --bg: #1a1a1a;
  --bg-alt: #1f1f1f;
  --surface: #2a2a2a;

  --text: #ECECF1;
  --text-dim: var(--lavender);
  --text-soft: var(--periwinkle);

  --gradient: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;

  --shadow-soft: 0 10px 40px -10px rgba(74, 63, 168, 0.35);
  --shadow-card: 0 10px 30px -15px rgba(0, 0, 0, 0.5);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- BASE RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }

/* ---------- A11Y ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--teal);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 500;
  letter-spacing: .05em;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

*:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 300;          /* thin/light by default */
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal-bright); }
ul { padding: 0; list-style: none; margin: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-weight: 300;           /* thin headings */
  letter-spacing: -0.01em;    /* tighter on big titles */
  line-height: 1.15;
  margin: 0 0 .5rem;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

/* The ONE bold element per section */
h1 strong, h2 strong, h3 strong { font-weight: 700; }

/* Eyebrow / uppercase labels — wide tracking */
.eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lavender);
  margin: 0 0 1rem;
}

p { margin: 0 0 1rem; color: var(--text); }
code { background: var(--surface); padding: 2px 6px; border-radius: 4px; font-size: .9em; color: var(--lavender); }

/* Decorative underline accent (teal) */
a.underline,
.section__sub a,
.contact__email a {
  position: relative;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(29, 158, 117, 0.6);
}
.btn--accent:hover { background: var(--teal-bright); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(175, 169, 236, .35);
}
.btn--ghost:hover { border-color: var(--lavender); color: var(--lavender); }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- STICKY NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(175, 169, 236, .08);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled {
  background: rgba(26, 26, 26, 0.92);
  border-color: rgba(175, 169, 236, .15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .9rem;
  padding-bottom: .9rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--text);
  font-weight: 300;
  letter-spacing: .22em;
  font-size: .85rem;
  text-transform: uppercase;
}
.nav__brand strong { font-weight: 700; }
.nav__brand:hover { color: var(--text); }
.nav__logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(127, 119, 221, .8);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: .75; }
}

.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  color: var(--text);
  font-size: .9rem;
  letter-spacing: .08em;
  position: relative;
  padding: .25rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--lavender); }
.nav__links a:hover::after { transform: scaleX(1); }

/* Mobile menu */
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.75rem;
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(175,169,236,.1);
}
.nav__drawer a {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav__drawer.open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 12vw, 9rem) 0 clamp(4rem, 10vw, 7rem);
  background: radial-gradient(ellipse at 20% 0%, rgba(74,63,168,.4) 0%, transparent 55%),
              radial-gradient(ellipse at 100% 100%, rgba(49,40,128,.35) 0%, transparent 55%),
              var(--bg);
}
.hero__blob {
  position: absolute;
  top: -150px;
  right: -180px;
  width: 520px; height: 520px;
  background: var(--gradient);
  filter: blur(100px);
  opacity: .55;
  border-radius: 50%;
  animation: float 14s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.06); }
}

.hero__inner { position: relative; z-index: 1; max-width: 880px; }
.hero__title {
  margin: .5rem 0 1.25rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--lavender);
  margin: 0 0 2rem;
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(29,158,117,.6);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(29,158,117,.55); }
  70% { box-shadow: 0 0 0 14px rgba(29,158,117,0); }
  100% { box-shadow: 0 0 0 0 rgba(29,158,117,0); }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.hero__chips li {
  padding: .35rem .9rem;
  border: 1px solid rgba(175,169,236,.25);
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--periwinkle);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section__sub {
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* ---------- SERVICE CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--surface);
  border: 1px solid rgba(175,169,236,.08);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(127,119,221,.45);
  box-shadow: var(--shadow-soft);
}
.card:hover::before { opacity: 0.07; }
.card__icon {
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 1rem;
  line-height: 1;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-dim); font-size: .95rem; margin: 0; }

/* ---------- WHY GRID ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.why-item {
  padding: 1.5rem 1rem 1.5rem 0;
  border-top: 1px solid rgba(175,169,236,.18);
}
.why-item__num {
  display: block;
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--teal);
  margin-bottom: .75rem;
  font-weight: 500;
}
.why-item h3 { margin-bottom: .5rem; }
.why-item p { color: var(--text-dim); margin: 0; font-size: .95rem; }

/* ---------- WORK / PORTFOLIO ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.work-card {
  background: var(--surface);
  border: 1px solid rgba(175,169,236,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(127,119,221,.4);
}
.work-card__image {
  aspect-ratio: 4/3;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  text-align: center;
  letter-spacing: .22em;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  position: relative;
}
.work-card__image small {
  display: block;
  margin-top: .5rem;
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: none;
  color: rgba(255,255,255,.7);
}
.work-card__body { padding: 1.5rem; }
.work-card__body h3 { margin-bottom: .5rem; }
.work-card__body p { color: var(--text-dim); font-size: .95rem; margin: 0; }

/* ---------- PRICING ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid rgba(175,169,236,.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(127,119,221,.4); }
.price-card h3 { margin-bottom: 1rem; }
.price-card__price {
  font-size: 2.25rem;
  font-weight: 300;
  margin: 0 0 .5rem;
  color: var(--text);
}
.price-card__price .amount { font-weight: 700; }
.price-card__unit {
  font-size: .85rem;
  color: var(--text-soft);
  letter-spacing: .08em;
  font-weight: 300;
}
.price-card__desc {
  color: var(--text-dim);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}
.price-card ul {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.price-card ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
  font-size: .95rem;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.price-card--featured {
  background: linear-gradient(180deg, rgba(74,63,168,.25) 0%, var(--surface) 70%);
  border-color: rgba(127,119,221,.5);
  box-shadow: var(--shadow-soft);
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  padding: .35rem .8rem;
  border-radius: 999px;
}

/* ---------- CONTACT ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__copy h2 { margin-bottom: 1.25rem; }
.contact__copy p { color: var(--text-dim); }
/* Bilingual signal line */
.contact__bilingual {
  display: inline-block;
  margin: 1rem 0 1.5rem;
  padding: .35rem .9rem;
  border: 1px solid rgba(29,158,117,.4);
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--teal-bright);
  font-weight: 500;
}

/* Team / founders grid */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.team__member {
  background: var(--surface);
  border: 1px solid rgba(175,169,236,.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.1rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.team__member:hover {
  border-color: rgba(127,119,221,.45);
  transform: translateY(-3px);
}
.team__member .eyebrow {
  margin: 0 0 .5rem;
  font-size: .65rem;
  letter-spacing: .2em;
}
.team__member h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 .35rem;
  letter-spacing: 0;
}
.team__role {
  font-size: .85rem;
  color: var(--text-dim);
  margin: 0 0 .65rem;
}
.team__email {
  display: inline-block;
  font-size: .85rem;
  font-weight: 500;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
}

.contact__form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(175,169,236,.1);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 500;
}
.contact__form input,
.contact__form textarea,
.contact__form select {
  font-family: inherit;
  background: var(--bg);
  border: 1px solid rgba(175,169,236,.15);
  color: var(--text);
  padding: .85rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,.18);
}
/* Honeypot field — visually hidden, accessible to bots */
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact__form-note {
  font-size: .8rem;
  color: var(--text-soft);
  text-align: center;
  margin: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #141414;
  padding: 2.5rem 0 1.75rem;
  border-top: 1px solid rgba(175,169,236,.08);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1.5rem 2rem;
}
.footer__col { display: flex; flex-direction: column; gap: .5rem; }
.footer__col--links {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-end;
  align-items: center;
}
.footer__brand {
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0;
}
.footer__brand strong { font-weight: 700; }
.footer__brand span { color: var(--lavender); }
.footer__meta {
  font-size: .8rem;
  color: var(--text-soft);
  margin: 0;
  letter-spacing: .04em;
}
.footer__link {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .2s var(--ease);
}
.footer__link:hover { color: var(--teal-bright); }
.footer__copyright {
  grid-column: 1 / -1;
  font-size: .75rem;
  color: var(--text-soft);
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(175,169,236,.06);
  letter-spacing: .08em;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__col--links { justify-content: flex-start; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__blob, .nav__logo-dot, .pulse-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .nav__links, .nav__cta, .nav__cta-group { display: none; }
  .nav__toggle { display: flex; }

  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .team { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* =====================================================
   NEW COMPONENTS (added in second pass)
   ===================================================== */

/* ---------- NAV CTA GROUP + LANG TOGGLE ---------- */
.nav__cta-group {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.nav__lang {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--text-dim);
  padding: .35rem .55rem;
  border: 1px solid rgba(175,169,236,.25);
  border-radius: 6px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav__lang:hover { color: var(--teal-bright); border-color: var(--teal); }
.nav__drawer-lang {
  font-size: .9rem;
  color: var(--lavender) !important;
  letter-spacing: .12em;
  text-transform: none !important;
}

/* ---------- AUDIT LEAD-MAGNET SECTION ---------- */
.audit-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(74,63,168,.06) 100%);
}
.audit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.audit-step {
  background: var(--surface);
  border: 1px solid rgba(175,169,236,.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.audit-step:hover {
  transform: translateY(-4px);
  border-color: rgba(127,119,221,.4);
}
.audit-step__num {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1rem;
}
.audit-step h3 { margin-bottom: .65rem; }
.audit-step p { color: var(--text-dim); font-size: .95rem; margin: 0; }
.audit-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.audit-sample {
  margin-top: 3rem;
  text-align: center;
}
.loom-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  max-width: 720px;
  margin: 1rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.loom-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(175,169,236,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[open] {
  border-color: rgba(29,158,117,.5);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-right: 3rem;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.faq-item summary:hover { color: var(--lavender); }
.faq-item p {
  padding: 0 1.5rem 1.35rem;
  color: var(--text-dim);
  font-size: .98rem;
  margin: 0;
}
.faq-item p a {
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
}

/* ---------- FLOATING WHATSAPP FAB ---------- */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px -8px rgba(37, 211, 102, 0.65), 0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), width .3s var(--ease);
  overflow: hidden;
  white-space: nowrap;
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-fab:hover {
  transform: scale(1.05);
  color: #fff !important;
  width: auto;
  padding: 0 1.25rem 0 .9rem;
  border-radius: 999px;
  gap: .5rem;
}
.wa-fab__label {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  max-width: 0;
  opacity: 0;
  transition: max-width .25s var(--ease), opacity .25s var(--ease);
}
.wa-fab:hover .wa-fab__label {
  max-width: 120px;
  opacity: 1;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 28px -8px rgba(37,211,102,0.65), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 28px -8px rgba(37,211,102,0.65), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 28px -8px rgba(37,211,102,0.65), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }
@media (max-width: 520px) {
  .wa-fab { bottom: 1rem; right: 1rem; width: 54px; height: 54px; }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 95;
  background: var(--surface);
  border: 1px solid rgba(175,169,236,.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.5);
  padding: 1rem 1.25rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  animation: consent-in .35s var(--ease);
}
.consent[hidden] { display: none; }
@keyframes consent-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.consent__inner {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.consent__text {
  margin: 0;
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.consent__text a {
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
}
.consent__actions {
  display: flex;
  justify-content: flex-end;
  gap: .65rem;
}
@media (min-width: 720px) {
  .consent { right: 1.5rem; left: auto; bottom: 1.5rem; }
  .consent__inner { flex-direction: row; align-items: center; }
  .consent__text { flex: 1; }
}

/* ---------- LANG SELECT IN FORM (more contrast) ---------- */
.contact__form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23AFA9EC' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

