/* =============================================
   STARTWEB HOME — LANDING PREMIUM
   ============================================= */

.home-page {
  --sw-gold: #f8b501;
  --sw-gold-2: #ffd56a;
  --sw-ink: #07111f;
  --sw-navy: #0e3d6f;
  --sw-line: rgba(255, 255, 255, 0.1);
  overflow-x: clip;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  letter-spacing: -0.035em;
}

.home-page .container {
  max-width: 1180px;
}

.home-page .header {
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-page .header.is-scrolled {
  background: rgba(5, 11, 22, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.sw-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--sw-gold);
  color: #111;
  font-weight: 700;
}

.sw-skip:focus {
  top: 1rem;
}

.sw-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(248, 181, 1, 0.12), transparent 55%),
    radial-gradient(720px 520px at 92% 8%, rgba(14, 61, 111, 0.55), transparent 50%),
    radial-gradient(640px 420px at 50% 110%, rgba(14, 61, 111, 0.28), transparent 60%);
}

.sw-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
}

#presupuesto,
#servicios,
#faq,
#contenido {
  scroll-margin-top: 88px;
}

.sw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 181, 1, 0.32);
  background: rgba(248, 181, 1, 0.08);
  color: var(--sw-gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sw-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.sw-live[hidden] {
  display: none;
}

.sw-live:not([hidden])::after {
  content: "·";
  color: rgba(248, 181, 1, 0.55);
}

.sw-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: sw-pulse 1.8s ease-out infinite;
}

.sw-section-head {
  max-width: 42rem;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.sw-section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1.1;
  margin: 0.7rem 0 0.75rem;
}

.sw-section-head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.sw-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.sw-btn--gold {
  background: linear-gradient(180deg, #ffd056, var(--sw-gold));
  color: #1a1200;
  box-shadow: 0 12px 28px rgba(248, 181, 1, 0.28);
}

.sw-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(248, 181, 1, 0.38);
  color: #1a1200;
}

.sw-btn--gold:hover svg {
  transform: translateX(3px);
}

.sw-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.sw-btn--ghost:hover {
  border-color: rgba(248, 181, 1, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

.sw-btn--full {
  width: 100%;
}

/* ---------- HERO ---------- */

.sw-hero {
  position: relative;
  padding: 4.2rem 0 3.4rem;
  overflow: hidden;
}

.sw-hero__pointer {
  position: absolute;
  width: 420px;
  height: 420px;
  left: var(--x, 70%);
  top: var(--y, 30%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(248, 181, 1, 0.12), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.sw-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.2rem;
  align-items: center;
}

.sw-hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.45rem);
  line-height: 1.06;
  margin: 1rem 0 1.1rem;
}

.sw-hero h1 em {
  font-style: italic;
  font-weight: 700;
  font-size: inherit;
  color: var(--sw-gold);
  background: linear-gradient(90deg, var(--sw-gold), #ffe08a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sw-hero__lead {
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 38rem;
  margin-bottom: 1.45rem;
  color: #C9D2E4;
}

.sw-hero__lead strong {
  color: #fff;
}

.sw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.sw-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.sw-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sw-hero__meta svg {
  width: 16px;
  height: 16px;
  color: var(--sw-gold);
}

.sw-stage {
  position: relative;
  min-height: 460px;
}

.sw-browser {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(17, 32, 58, 0.96), rgba(6, 12, 24, 0.98));
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg);
  animation: sw-float 6.5s ease-in-out infinite;
}

.sw-browser__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.78rem 1rem;
  background: rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sw-browser__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sw-browser__dot:nth-child(1) { background: #ff6b6b; }
.sw-browser__dot:nth-child(2) { background: var(--sw-gold); }
.sw-browser__dot:nth-child(3) { background: #4ade80; }

.sw-browser__url {
  margin-left: 0.55rem;
  flex: 1;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
}

.sw-browser__screen {
  padding: 1rem;
}

.sw-site__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.sw-site__brand {
  color: var(--sw-gold);
  font-weight: 800;
}

.sw-site__hero {
  border-radius: 16px;
  min-height: 148px;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  background:
    linear-gradient(135deg, rgba(248, 181, 1, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(14, 61, 111, 0.7), #081324);
}

.sw-site__hero strong {
  display: block;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
}

.sw-site__hero span {
  display: block;
  max-width: 16rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.sw-site__cta {
  margin-top: 0.9rem;
  width: 108px;
  height: 28px;
  border-radius: 999px;
  background: var(--sw-gold);
}

.sw-site__cards {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.65rem;
}

.sw-site__card {
  height: 72px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.sw-phone {
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: 132px;
  padding: 8px;
  border-radius: 22px;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  animation: sw-float 5.2s ease-in-out infinite reverse;
}

.sw-phone__notch {
  width: 42px;
  height: 6px;
  border-radius: 999px;
  margin: 4px auto 8px;
  background: rgba(255, 255, 255, 0.18);
}

.sw-phone__screen {
  height: 168px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(248, 181, 1, 0.18), transparent 30%),
    linear-gradient(180deg, #12345c, #07111f);
  padding: 0.7rem;
}

.sw-phone__line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 0.45rem;
}

.sw-phone__line:nth-child(2) { width: 72%; }
.sw-phone__line:nth-child(3) { width: 54%; background: var(--sw-gold); height: 22px; margin-top: 0.8rem; }

.sw-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 16, 32, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.sw-float strong {
  display: block;
  font-size: 0.88rem;
}

.sw-float span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.sw-float--top {
  top: -12px;
  right: 24px;
}

.sw-float--left {
  left: -28px;
  bottom: 76px;
}

.sw-float__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(248, 181, 1, 0.14);
  color: var(--sw-gold);
}

.sw-float__icon svg {
  width: 18px;
  height: 18px;
}

/* ---------- MARQUEE ---------- */

.sw-marquee {
  padding: 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}

.sw-marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 1rem 0;
  animation: sw-marquee 28s linear infinite;
}

.sw-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sw-marquee__item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sw-gold);
  display: inline-block;
}

/* ---------- PAIN ---------- */

.sw-pain {
  padding: 3.2rem 0 4.6rem;
}

.sw-pain__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sw-pain__card {
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  border: 1px solid var(--sw-line);
  background: rgba(255, 255, 255, 0.025);
}

.sw-pain__card b {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sw-gold);
  margin-bottom: 0.7rem;
}

.sw-pain__card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.sw-pain__card p {
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- PRODUCTS ---------- */

.sw-products {
  padding: 0 0 4.8rem;
}

.sw-products__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.sw-product {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 1.7rem 1.55rem 1.4rem;
  border-radius: 26px;
  border: 1px solid var(--sw-line);
  background:
    radial-gradient(circle at 100% 0, rgba(14, 61, 111, 0.55), transparent 46%),
    rgba(7, 14, 28, 0.9);
  overflow: hidden;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.sw-stack .sw-product {
  min-height: 0;
}

.sw-product:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 181, 1, 0.4);
  color: inherit;
}

.sw-product--wide {
  min-height: 100%;
  background:
    radial-gradient(circle at 0 0, rgba(248, 181, 1, 0.16), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(14, 61, 111, 0.5), transparent 46%),
    rgba(7, 14, 28, 0.94);
}

.sw-product__index {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sw-gold);
  margin-bottom: 1.1rem;
}

.sw-product h3 {
  font-size: 1.7rem;
  margin-bottom: 0.45rem;
}

.sw-product p {
  color: rgba(255, 255, 255, 0.62);
}

.sw-product__list {
  display: grid;
  gap: 0.45rem;
  margin: 0.4rem 0 1.3rem;
}

.sw-product__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.sw-product__list svg {
  width: 16px;
  height: 16px;
  color: var(--sw-gold);
  flex-shrink: 0;
}

.sw-product__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.sw-product__price {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.sw-product__price b {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}

.sw-product__cta {
  color: var(--sw-gold);
  font-weight: 700;
}

.sw-stack {
  display: grid;
  gap: 1rem;
}

/* ---------- WHY ---------- */

.sw-why {
  padding: 0 0 4.8rem;
}

.sw-why__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.sw-why h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  margin: 0.7rem 0 1rem;
}

.sw-why__lead {
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
}

.sw-why__list {
  display: grid;
  gap: 0.85rem;
}

.sw-why__list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.sw-why__num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(248, 181, 1, 0.1);
  color: var(--sw-gold);
  font-weight: 800;
}

.sw-why__list strong {
  display: block;
  margin-bottom: 0.15rem;
}

.sw-why__list span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.sw-dash {
  border-radius: 24px;
  border: 1px solid var(--sw-line);
  background: linear-gradient(180deg, rgba(16, 32, 58, 0.9), rgba(6, 12, 24, 0.96));
  padding: 1.1rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.sw-dash__row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.sw-dash__panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.sw-dash__panel strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.sw-dash__panel span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
}

.sw-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 92px;
  padding-top: 0.4rem;
}

.sw-bars span {
  flex: 1;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--sw-gold), rgba(248, 181, 1, 0.2));
}

.sw-bars span:nth-child(1) { height: 38%; }
.sw-bars span:nth-child(2) { height: 54%; }
.sw-bars span:nth-child(3) { height: 46%; }
.sw-bars span:nth-child(4) { height: 78%; }
.sw-bars span:nth-child(5) { height: 64%; }
.sw-bars span:nth-child(6) { height: 90%; }

.sw-table {
  display: grid;
  gap: 0.45rem;
}

.sw-table i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.sw-table i:nth-child(2) { width: 82%; }
.sw-table i:nth-child(3) { width: 64%; }
.sw-table i:nth-child(4) { width: 74%; background: rgba(248, 181, 1, 0.28); }

/* ---------- WORK ---------- */

.sw-work {
  padding: 0 0 4.6rem;
}

.sw-work__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sw-case {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--sw-line);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
}

.sw-case__preview {
  position: relative;
  height: 210px;
  padding: 1.1rem 1.1rem 0;
}

.sw-case__preview--gym {
  background: radial-gradient(circle at 20% 0, #7a1f1f, #120808 60%);
}

.sw-case__preview--clinic {
  background: radial-gradient(circle at 80% 0, #3d5a4a, #0c1612 58%);
}

.sw-case__preview--shop {
  background: radial-gradient(circle at 30% 0, #6b2d4a, #140810 58%);
}

.sw-case__window {
  height: 100%;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  background: rgba(8, 12, 20, 0.55);
  padding: 0.8rem;
}

.sw-case__nav,
.sw-case__title,
.sw-case__block {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.sw-case__nav {
  height: 8px;
  width: 46%;
  margin-bottom: 0.7rem;
}

.sw-case__title {
  height: 14px;
  width: 72%;
  margin-bottom: 0.55rem;
}

.sw-case__block {
  height: 54px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.28), rgba(255, 255, 255, 0.06));
}

.sw-case__tag {
  position: absolute;
  top: 1.35rem;
  left: 1.45rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sw-case__body {
  padding: 1.2rem 1.25rem 1.3rem;
}

.sw-case__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.sw-case__body p {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.sw-case__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.sw-case__stats b {
  display: block;
  color: var(--sw-gold);
  font-size: 1.05rem;
}

.sw-case__stats span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.sw-case__link {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.sw-case__link:hover {
  color: var(--sw-gold);
}

.sw-work__footer {
  margin-top: 1.6rem;
  text-align: center;
}

/* ---------- PROCESS ---------- */

.sw-process {
  padding: 0 0 4.6rem;
}

.sw-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  position: relative;
}

.sw-step {
  padding: 1.4rem 1.15rem;
  border-radius: 20px;
  border: 1px solid var(--sw-line);
  background: rgba(255, 255, 255, 0.03);
}

.sw-step em {
  display: block;
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--sw-gold);
  margin-bottom: 0.7rem;
}

.sw-step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.sw-step p {
  margin: 0;
  font-size: 0.9rem;
}

/* ---------- SECTORS ---------- */

.sw-sectors {
  padding: 0 0 4.6rem;
}

.sw-sectors__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.sw-sector {
  padding: 1.2rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--sw-line);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sw-sector:hover {
  border-color: rgba(248, 181, 1, 0.4);
  transform: translateY(-3px);
  color: inherit;
}

.sw-sector strong {
  display: block;
  margin-bottom: 0.25rem;
}

.sw-sector span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- VOICES ---------- */

.sw-voices {
  padding: 0 0 4.6rem;
}

.sw-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sw-voice {
  padding: 1.5rem 1.3rem;
  border-radius: 22px;
  border: 1px solid var(--sw-line);
  background: linear-gradient(180deg, rgba(14, 61, 111, 0.18), rgba(255, 255, 255, 0.02));
}

.sw-voice__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--sw-gold);
  margin-bottom: 0.9rem;
}

.sw-voice__stars svg {
  width: 16px;
  height: 16px;
}

.sw-voice blockquote {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.65;
}

.sw-voice__who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sw-voice__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(248, 181, 1, 0.16);
  color: var(--sw-gold);
  font-weight: 800;
  font-size: 0.78rem;
}

.sw-voice__who strong {
  display: block;
}

.sw-voice__who span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- FAQ ---------- */

.sw-faq {
  padding: 0 0 4.6rem;
}

.sw-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.sw-faq details {
  border-radius: 18px;
  border: 1px solid var(--sw-line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 1.2rem;
}

.sw-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.6rem 1.1rem 0;
  font-weight: 700;
  position: relative;
}

.sw-faq summary::-webkit-details-marker {
  display: none;
}

.sw-faq summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--sw-gold);
  border-bottom: 2px solid var(--sw-gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.sw-faq details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.sw-faq details p {
  margin: 0;
  padding: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- QUOTE ---------- */

.sw-quote {
  padding: 0 0 4.8rem;
}

.sw-quote__card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 28px;
  border: 1px solid rgba(248, 181, 1, 0.28);
  background:
    radial-gradient(circle at 0 0, rgba(248, 181, 1, 0.14), transparent 42%),
    linear-gradient(160deg, rgba(14, 61, 111, 0.42), rgba(5, 11, 22, 0.96));
}

.sw-quote__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin: 0.7rem 0 0.8rem;
}

.sw-quote__copy p {
  margin-bottom: 1.2rem;
}

.sw-quote__points {
  display: grid;
  gap: 0.55rem;
}

.sw-quote__points li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.sw-quote__points svg {
  width: 16px;
  height: 16px;
  color: var(--sw-gold);
}

.sw-form {
  display: grid;
  gap: 0.8rem;
}

.sw-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.sw-form input,
.sw-form select,
.sw-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 11, 22, 0.65);
  color: #fff;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  outline: none;
  color-scheme: dark;
}

.sw-form input:focus,
.sw-form select:focus,
.sw-form textarea:focus {
  border-color: rgba(248, 181, 1, 0.55);
  box-shadow: 0 0 0 3px rgba(248, 181, 1, 0.12);
}

.sw-form textarea {
  min-height: 96px;
  resize: vertical;
}

.sw-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.sw-form__error {
  margin: 0;
  color: #ffb4b4;
  font-size: 0.85rem;
}

.sw-form__note {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
}

/* ---------- BLOG ---------- */

.sw-blog {
  padding: 0 0 5.2rem;
}

.sw-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sw-post {
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--sw-line);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sw-post:hover {
  border-color: rgba(248, 181, 1, 0.38);
  transform: translateY(-3px);
  color: inherit;
}

.sw-post b {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--sw-gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sw-post h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.sw-post p {
  margin: 0;
  font-size: 0.9rem;
}

.sw-blog__more {
  margin-top: 1.5rem;
  text-align: center;
}

/* ---------- STICKY ---------- */

.sw-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(5, 11, 22, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.sw-sticky.is-visible {
  transform: translateY(0);
}

.sw-sticky .sw-btn {
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
}

.sw-sticky .sw-btn--full {
  width: auto;
  flex: 1;
}

.sw-sticky .sw-btn--ghost {
  flex: 0 0 46px;
  width: 46px;
  padding: 0;
}

.home-page .whatsapp-float-premium {
  z-index: 60;
}

/* ---------- MOTION ---------- */

@keyframes sw-float {
  0%, 100% { transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) translateY(-10px); }
}

@keyframes sw-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sw-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 1024px) {
  .sw-phone,
  .sw-float--left,
  .sw-hero__pointer {
    display: none;
  }

  .sw-browser {
    transform: none;
    animation: none;
  }

  .sw-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sw-stage {
    min-height: 0;
  }

  .sw-products__grid,
  .sw-why__grid,
  .sw-quote__card,
  .sw-work__grid,
  .sw-process__grid,
  .sw-voices__grid,
  .sw-blog__grid,
  .sw-pain__grid,
  .sw-sectors__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .sw-product--wide {
    min-height: 0;
  }

  .sw-float--top {
    right: 12px;
  }
}

@media (max-width: 768px) {
  .sw-hero {
    padding: 2.4rem 0 2.2rem;
  }

  .sw-hero__grid,
  .sw-products__grid,
  .sw-why__grid,
  .sw-quote__card,
  .sw-work__grid,
  .sw-process__grid,
  .sw-voices__grid,
  .sw-blog__grid,
  .sw-pain__grid,
  .sw-sectors__row,
  .sw-form__row,
  .sw-dash__row,
  .sw-site__cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .sw-browser {
    transform: none;
    animation: none;
  }

  .sw-phone,
  .sw-float,
  .sw-hero__pointer {
    display: none;
  }

  .sw-stage {
    min-height: 0;
  }

  .sw-quote__card {
    padding: 1.3rem 1.1rem;
  }

  .sw-sticky {
    display: flex;
  }

  .home-page .whatsapp-float-premium {
    bottom: 5.6rem;
    right: 1rem;
    width: 54px;
    height: 54px;
  }

  .home-page .footer-premium {
    padding-bottom: 6.5rem;
  }

  .sw-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sw-hero__actions .sw-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sw-browser,
  .sw-phone,
  .sw-marquee__track,
  .sw-live__dot,
  .reveal {
    animation: none !important;
  }
}
