/* ====== TOKENS ====== */
:root {
  --blue: #1B5BC9;          /* brighter brand blue */
  --blue-2: #1656C7;
  --blue-deep: #0F47A8;     /* nav / footer (lighter than before) */
  --blue-deeper: #0B3D94;   /* footer bottom */
  --yellow: #FFD21A;
  --yellow-shade: #F5A400;
  --ink: #050505;
  --paper: #F7F7F2;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --red: #D7261E;
  --shadow-comic: 4px 4px 0 var(--ink);
  --shadow-comic-lg: 6px 6px 0 var(--ink);
  --shadow-comic-sm: 3px 3px 0 var(--ink);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Fredoka', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-weight: 500;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ====== Typography helpers ====== */
.hl { color: var(--yellow); }
.hl-blue { color: var(--blue-2); }
.kicker {
  display: inline-block;
  font-family: 'Bangers', 'Anton', Impact, sans-serif;
  letter-spacing: .14em;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-comic-sm);
  font-size: 14px;
}
.kicker-light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.3);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 12px 22px;
  box-shadow: var(--shadow-comic-sm);
  transition: transform .08s ease, box-shadow .08s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-md { padding: 12px 22px; font-size: 15px; }
.btn-lg { padding: 16px 26px; font-size: 16px; box-shadow: var(--shadow-comic); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: #ffd84a; }

/* ====== HEADER ====== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--blue-deep);
  border-bottom: 4px solid var(--yellow);
  color: #fff;
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 10px 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 96px; width: auto; display: block; transition: transform .2s ease; }
.brand:hover .brand-logo { transform: rotate(-3deg) scale(1.04); }

.nav-desktop { display: flex; gap: 32px; }
.nav-desktop a {
  font-weight: 700; font-size: 17px;
  position: relative; padding: 6px 2px;
  letter-spacing: .01em;
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--yellow); transform: scaleX(0);
  transform-origin: left; transition: transform .18s ease;
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none; background: var(--yellow); border: 2.5px solid var(--ink);
  width: 42px; height: 42px; border-radius: 10px;
  box-shadow: var(--shadow-comic-sm); cursor: pointer; padding: 0;
}
.hamburger span {
  display: block; width: 22px; height: 3px; background: var(--ink);
  margin: 4px auto; transition: transform .2s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 12px;
  padding: 16px 24px 22px; background: var(--blue-deep);
  border-bottom: 4px solid var(--yellow);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-weight: 700; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.nav-mobile a.btn { border: 2.5px solid var(--ink); }

/* ====== HERO BANNER (full-bleed) ====== */
.hero-banner {
  width: 100%;
  background: var(--blue-deep);
  border-bottom: 4px solid var(--yellow);
  line-height: 0;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ====== HERO TEXT BLOCK ====== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, #0b56c2 0%, var(--blue) 35%, var(--blue-deep) 80%);
  color: #fff;
  overflow: hidden;
  padding: 56px 0 64px;
  text-align: center;
}
.hero-burst {
  position: absolute; inset: -20%;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      rgba(255, 210, 26, 0.14) 0deg 6deg,
      transparent 6deg 12deg
    );
  filter: blur(.4px);
  pointer-events: none;
}
.hero-halftone {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  max-width: 900px;
}
.pin-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  margin-bottom: 18px;
}
.pin-badge svg { color: var(--yellow); }

.hero-title {
  font-family: 'Bangers','Anton', Impact, sans-serif;
  font-weight: 400; line-height: .85;
  margin: 0 0 16px;
  letter-spacing: .02em;
}
.hero-title .line {
  display: block;
  font-size: clamp(72px, 13vw, 168px);
  text-shadow:
    5px 5px 0 var(--ink),
    -1.5px -1.5px 0 var(--ink),
    1.5px -1.5px 0 var(--ink),
    -1.5px 1.5px 0 var(--ink);
}
.hero-title .line-1 { color: #fff; }
.hero-title .line-2 {
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
}
.title-bolt { display: inline-flex; transform: translateY(-8px); filter: drop-shadow(3px 3px 0 var(--ink)); }
.hero-sub {
  font-family: 'Bangers','Anton', Impact, sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .04em;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 2px 2px 0 var(--ink);
}
.hero-lede {
  font-size: 19px;
  font-weight: 500;
  max-width: 720px;
  margin: 0 0 26px;
  color: #e7eefb;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; justify-content: center; }
.hero-trust {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: #cfd8ea; flex-wrap: wrap; justify-content: center;
}
.stars { color: var(--yellow); letter-spacing: 1px; font-size: 16px; }
.hero-trust strong { color: #fff; }
.dot { opacity: .5; }
.muted { color: #c5cee0; }

/* ====== TRUST STRIP ====== */
.trust-strip {
  background: var(--blue-deeper);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  color: #fff;
  padding: 22px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.trust-card {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 4px;
}
.trust-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,210,26,.08);
  border: 2px dashed rgba(255,210,26,.4);
  flex-shrink: 0;
}
.trust-card h4 { margin: 0 0 2px; font-size: 17px; color: var(--yellow); font-weight: 800; letter-spacing: .01em; }
.trust-card p { margin: 0; font-size: 13.5px; color: #c8d3ea; }

/* ====== SECTION HEADERS ====== */
.sec-head { text-align: center; margin-bottom: 38px; }
.sec-title {
  font-family: 'Bangers','Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: .03em; line-height: .95;
  margin: 0 0 10px;
  color: var(--ink);
  text-shadow: 3px 3px 0 rgba(0,0,0,.05);
}
.sec-title-dark { color: var(--blue-deep); }
.sec-sub { color: #2b3146; font-size: 18px; font-weight: 500; max-width: 720px; margin: 0 auto; }

/* ====== SERVICES ====== */
.services { padding: 80px 0 70px; background: var(--paper); position: relative; }
.services::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(6,60,153,.06) 1.2px, transparent 1.4px);
  background-size: 18px 18px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, black, transparent 60%);
}
.services .wrap { position: relative; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.svc-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-comic);
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.svc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--blue-deep);
  position: relative;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }

.svc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 {
  margin: 0 0 6px; color: var(--blue-2);
  font-family: 'Bangers','Anton', sans-serif; font-weight: 400;
  font-size: 26px; letter-spacing: .03em;
}
.svc-body > p { margin: 0 0 12px; color: #1c2236; font-size: 15.5px; font-weight: 500; line-height: 1.45; }
.svc-list { margin: 0 0 16px; }
.svc-list li {
  font-size: 14.5px; color: #2b3146; font-weight: 500;
  padding-left: 16px; position: relative; margin-bottom: 4px;
  line-height: 1.4;
}
.svc-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; background: var(--yellow);
  border: 1.5px solid var(--ink); border-radius: 2px;
}
.svc-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--ink);
  font-weight: 800; font-size: 13.5px;
  padding: 8px 14px; border: 2px solid var(--ink); border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
  align-self: flex-start;
  transition: transform .1s;
}
.svc-cta:hover { transform: translate(-1px,-1px); }
.svc-cta span { font-weight: 900; }

/* ====== SPLIT FEATURE (comic art) ====== */
.split {
  background: var(--blue-deep);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.split::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255,255,255,.06), transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,210,26,.08), transparent 70%);
  pointer-events: none;
}
.split-wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 48px;
}
.split-text .kicker { margin-bottom: 14px; }
.split-title {
  margin: 0 0 14px;
  font-family: 'Bangers','Anton', sans-serif; font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: .03em; line-height: .95;
  color: #fff;
  text-shadow: 4px 4px 0 var(--ink);
}
.split-text p {
  margin: 0;
  font-size: 18.5px;
  font-weight: 500;
  color: #eef3fc;
  max-width: 460px;
}
.split-art {
  border: 4px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-comic-lg);
  transform: rotate(1deg);
  background: #fff;
  line-height: 0;
}
.split-art img { width: 100%; height: auto; display: block; }

/* "Vi fixar det!" speech bubble decoration */
.split-vi-fixar {
  position: absolute;
  width: clamp(170px, 17vw, 240px);
  height: auto;
  left: 16px;
  top: 20px;
  z-index: 2;
  transform: rotate(-8deg);
  pointer-events: none;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,.18));
  animation: bubbleWobble 4.5s ease-in-out infinite;
}
@keyframes bubbleWobble {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(-6px); }
}

/* ====== PROCESS ====== */
.process { background: var(--paper); padding: 70px 0 80px; position: relative; }
.process::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(6,60,153,.06) 1.2px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, transparent, black 60%);
}
.process .wrap { position: relative; z-index: 1; }
.process-banner {
  border: 4px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-comic-lg);
  background: var(--blue-deep);
  max-width: 1100px;
  margin: 0 auto;
  transform: rotate(-0.5deg);
}
.process-banner img { width: 100%; height: auto; display: block; }
.process-tagline {
  text-align: center;
  margin: 26px auto 22px;
  max-width: 640px;
  font-size: 18px;
  font-weight: 500;
  color: #2b3146;
}
.process-cta {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* ====== ABOUT ====== */
.about {
  background: linear-gradient(180deg, var(--paper), #ffffff);
  padding: 80px 0;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--ink);
}
.about-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px;
  align-items: center;
}
.about-copy .sec-title { text-align: left; margin-top: 14px; }
.about-copy .about-lead { font-size: 19px; color: #0c1124; font-weight: 600; }
.about-copy p { font-size: 17px; font-weight: 500; color: #1c2236; }
.about-copy p strong { color: var(--blue-deep); }
.about-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px;
}
.about-pills li {
  background: var(--yellow); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 7px 14px; font-weight: 700; font-size: 13.5px;
  box-shadow: 2px 2px 0 var(--ink);
}
.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.about-art {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.about-photo-frame {
  position: relative;
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-comic-lg);
  background: var(--blue-deep);
}
.about-photo-frame img {
  width: 100%; height: auto; display: block;
}
.about-10ars {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

/* ====== CTA ====== */
.cta-section {
  background: var(--blue);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}
.cta-burst {
  position: absolute; inset: 0;
  background:
    repeating-conic-gradient(
      from 30deg at 50% 50%,
      rgba(255, 210, 26, 0.10) 0deg 7deg,
      transparent 7deg 14deg
    );
  pointer-events: none;
}
.cta-wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 32px;
}
.cta-headline {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  max-width: 760px;
}
.cta-banner {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  margin: 0;
  filter: drop-shadow(6px 6px 0 rgba(0,0,0,.18));
}
.cta-lede {
  margin: 4px 0 0;
  color: #f0f5ff;
  font-size: 19px;
  font-weight: 500;
  max-width: 560px;
  line-height: 1.5;
}
.cta-snabbt {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 8px 0 0;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,.2));
  transform: rotate(-2deg);
  animation: snabbtPulse 3.5s ease-in-out infinite;
}
@keyframes snabbtPulse {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50%      { transform: rotate(0deg)  scale(1.03); }
}
.cta-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}
.cta-deco-gratis {
  width: 200px;
  height: auto;
  right: 24px;
  top: 24px;
  transform: rotate(12deg);
}
.cta-cards {
  width: 100%;
  max-width: 980px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.cta-card {
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink); border-radius: 18px;
  padding: 24px 18px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: var(--shadow-comic);
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.cta-card:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.cta-ico {
  width: 64px; height: 64px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto;
  border: 2.5px solid var(--ink);
  background: var(--yellow);
  flex-shrink: 0;
}
.cta-ico-wa { background: var(--whatsapp); }
.cta-card-body { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cta-card h4 { margin: 0; font-size: 20px; font-weight: 800; color: var(--blue-deep); letter-spacing: .01em; }
.cta-card-body p { margin: 0 0 8px; font-size: 15px; color: #2b3146; font-weight: 500; }
.cta-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 8px 16px; font-weight: 800; font-size: 14px;
  box-shadow: 2px 2px 0 var(--ink);
  letter-spacing: .01em;
}
.cta-btn-wa { background: var(--whatsapp); color: #fff; }

/* ====== FOOTER ====== */
.site-footer {
  background: var(--blue-deeper);
  color: #cfd8ea;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 50px;
}
.foot-col { text-align: center; }
.foot-col-left { text-align: right; }
.foot-col-right { text-align: left; }
.foot-brand {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.foot-logo { height: 180px; width: auto; margin: 0 0 4px; }
.foot-brand p { font-size: 15px; margin: 0; color: #cfd8ea; line-height: 1.5; }
.tagline { color: var(--yellow); font-weight: 700; letter-spacing: .04em; margin-top: 4px !important; }
.foot-col h5 {
  font-family: 'Bangers','Anton', sans-serif; font-weight: 400;
  letter-spacing: .04em; color: var(--yellow); font-size: 22px; margin: 0 0 14px;
}
.foot-col h5.foot-h5-spacer { margin-top: 22px; }
.foot-col ul li { font-size: 15px; margin-bottom: 8px; line-height: 1.4; }
.foot-col a {
  position: relative;
  transition: color .15s;
}
.foot-col a:hover { color: var(--yellow); }
.socials {
  display: flex; gap: 12px; margin-top: 12px;
  justify-content: center;
}
.socials a {
  width: 42px; height: 42px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--ink);
  font-weight: 800; border: 2.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 17px;
  transition: transform .15s;
}
.socials a:hover { transform: translate(-1px,-1px); }
.foot-bottom {
  border-top: 2px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 13.5px;
}
.foot-bottom .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.foot-bottom .bullets a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,210,26,.5); text-underline-offset: 3px; }
.foot-bottom .bullets a:hover { color: var(--yellow); }

/* ====== FLOATING WHATSAPP ====== */
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 999px;
  background: var(--whatsapp);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-comic);
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s;
}
.float-wa:hover { transform: scale(1.06); }

/* ====== ENTRANCE ANIMATIONS ====== */
/* Header comic POP on load */
.site-header {
  transform: translateY(-100%);
  transition: transform .7s cubic-bezier(.34,1.56,.64,1);
}
.loaded .site-header {
  transform: translateY(0);
}

/* Hero text bursts in after header lands */
.hero-banner img,
.hero-inner > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.34,1.56,.64,1);
}
.loaded .hero-banner img { opacity: 1; transform: translateY(0); transition-delay: .25s; }
.loaded .hero-inner > .pin-badge  { opacity: 1; transform: translateY(0); transition-delay: .35s; }
.loaded .hero-inner > .hero-title { opacity: 1; transform: translateY(0); transition-delay: .45s; }
.loaded .hero-inner > .hero-sub   { opacity: 1; transform: translateY(0); transition-delay: .60s; }
.loaded .hero-inner > .hero-lede  { opacity: 1; transform: translateY(0); transition-delay: .70s; }
.loaded .hero-inner > .hero-ctas  { opacity: 1; transform: translateY(0); transition-delay: .80s; }
.loaded .hero-inner > .hero-trust { opacity: 1; transform: translateY(0); transition-delay: .90s; }

/* Title bolt little spin once it lands */
.title-bolt {
  display: inline-flex;
  transform: translateY(-8px) rotate(0deg);
  filter: drop-shadow(3px 3px 0 var(--ink));
  transition: transform .6s cubic-bezier(.34,1.56,.64,1);
}
.loaded .title-bolt {
  animation: boltSpin 1.2s ease-out .9s 1 both, boltWiggle 5s ease-in-out 2.5s infinite;
}
@keyframes boltSpin {
  0%   { transform: translateY(-40px) rotate(-180deg) scale(.3); opacity: 0; }
  60%  { transform: translateY(-4px)  rotate(20deg)   scale(1.15); opacity: 1; }
  100% { transform: translateY(-8px)  rotate(0deg)    scale(1);    opacity: 1; }
}
@keyframes boltWiggle {
  0%, 100% { transform: translateY(-8px) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-6deg); }
}

/* Floating WhatsApp pops last */
.float-wa {
  opacity: 0;
  transform: scale(.4) rotate(-30deg);
  transition: opacity .5s ease, transform .6s cubic-bezier(.34,1.56,.64,1);
}
.loaded .float-wa {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 1.1s;
}
.float-wa::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 999px;
  border: 3px solid var(--whatsapp);
  opacity: .6;
  animation: waPing 2.4s ease-out infinite;
}
@keyframes waPing {
  0%   { transform: scale(1);   opacity: .6; }
  80%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Scroll reveal: sections fade + slide up */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Inside-section stagger: cards pop one by one */
.services.is-visible .svc-card,
.trust-strip.is-visible .trust-card,
.cta-section.is-visible .cta-card {
  animation: popIn .55s cubic-bezier(.34,1.56,.64,1) both;
}
.services.is-visible .svc-card:nth-child(1) { animation-delay: .05s; }
.services.is-visible .svc-card:nth-child(2) { animation-delay: .12s; }
.services.is-visible .svc-card:nth-child(3) { animation-delay: .19s; }
.services.is-visible .svc-card:nth-child(4) { animation-delay: .26s; }
.services.is-visible .svc-card:nth-child(5) { animation-delay: .33s; }
.services.is-visible .svc-card:nth-child(6) { animation-delay: .40s; }
.services.is-visible .svc-card:nth-child(7) { animation-delay: .47s; }
.services.is-visible .svc-card:nth-child(8) { animation-delay: .54s; }
.trust-strip.is-visible .trust-card:nth-child(1) { animation-delay: .05s; }
.trust-strip.is-visible .trust-card:nth-child(2) { animation-delay: .15s; }
.trust-strip.is-visible .trust-card:nth-child(3) { animation-delay: .25s; }
.trust-strip.is-visible .trust-card:nth-child(4) { animation-delay: .35s; }
.cta-section.is-visible .cta-card:nth-child(1) { animation-delay: .05s; }
.cta-section.is-visible .cta-card:nth-child(2) { animation-delay: .15s; }
.cta-section.is-visible .cta-card:nth-child(3) { animation-delay: .25s; }

@keyframes popIn {
  0%   { opacity: 0; transform: translateY(24px) scale(.92); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-banner img,
  .hero-inner > *,
  .title-bolt,
  .float-wa,
  [data-reveal] {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }
  .split-vi-fixar,
  .cta-snabbt { animation: none !important; }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split-wrap { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .split-text p { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { max-width: 520px; margin: 0 auto; }
  .cta-cards { max-width: 720px; }
  .cta-deco-gratis { width: 150px; right: 12px; top: 12px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .foot-col-left,
  .foot-col-right { text-align: center; }
  .foot-brand { order: -1; }
}

@media (max-width: 720px) {
  .nav-desktop { display: none; }
  .header-row .btn-whatsapp { display: none; }
  .hamburger { display: inline-block; }
  .brand-logo { height: 72px; }
  .hero { padding: 36px 0 44px; }
  .hero-title .line { font-size: clamp(60px, 18vw, 92px); }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .services { padding: 50px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .split { padding: 50px 0; }
  .split-title { font-size: clamp(32px, 8vw, 44px); }
  .split-vi-fixar { width: 130px; left: 8px; top: 8px; }
  .process { padding: 50px 0 60px; }
  .process-cta .btn { width: 100%; justify-content: center; }
  .cta-section { padding: 56px 0 60px; }
  .cta-deco-gratis { display: none; }
  .cta-snabbt { max-width: 280px; }
  .cta-banner { max-width: 380px; }
  .foot-logo { height: 130px; }
  .about-pills { gap: 8px; }
  .about-pills li { font-size: 12.5px; padding: 6px 12px; }
  .about-10ars { max-width: 360px; }
  .cta-cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .foot-bottom .wrap { flex-direction: column; align-items: center; text-align: center; }
}
