
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --green:       #00C73D;
  --green-dark:  #009e30;
  --green-light: #ecfdf3;
  --ink:         #1B1B1B;
  --ink-soft:    #3a3e3b;
  --muted:       #6b6b6b;
  --bg:          #ffffff;
  --soft:        #f3f3f3;
  --border:      rgba(0,0,0,.08);
  --shadow:      0 12px 24px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 22px rgba(0,0,0,.08);
  --pill:        999px;
  --container:   1180px;
  --ease:        cubic-bezier(.22,.68,0,1.2);
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
strong { font-weight: 900; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.h2 {
  font-size: clamp(32px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #292d36;
}
.h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #292d36;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1    { transition-delay: .12s; }
.reveal-delay-2    { transition-delay: .24s; }
.reveal-delay-3    { transition-delay: .36s; }


.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s ease, backdrop-filter .3s ease;
}
.header.is-scrolled {
  background: rgba(10,10,10,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  gap: 16px;
  height: 72px;
}
.logo         { 
  justify-self: start; align-self: center;
  padding-left: 42px;
 }

.logo img     { height: 32px; filter: brightness(0) invert(1); }
.nav-pill {
  justify-self: center;
  
  border-radius: 0 0 40px 40px;
  padding: 26px 48px;
  display: flex;
  gap: 46px;
  align-items: center;
  align-self: flex-start;
}
.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  transition: opacity .2s;
}
.nav-link:hover,
.nav-link.is-active { opacity: 1; }
.cta { justify-self: end; align-self: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; }
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, transform .15s;
  margin-right: 34px;
}

/*cta*/
.section-cta-image {
  position: relative;
  height: 420px;
  background: url('img/hero213.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  color: rgba(255,255,255,.85);
  font-size: 32px;
  margin-bottom: 8px;
  text-align: center;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
   text-align: center;
}

.cta-logo {
  height: 24px;
  margin: 0 auto;
  opacity: .9;
}

.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  padding-top: 72px;
  margin-bottom: -90px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.62) 60%,
    rgba(0,0,0,.75) 100%
  );
}

/* arcos laterales */
.hero-curve {
  position: absolute;
  width: 56px; height: 300px;
  border: 1.5px solid rgba(0,199,61,.5);
  border-left: 0;
  border-radius: 0 140px 140px 0;
  z-index: 1;
  pointer-events: none;
  opacity: .8;
}
.hero-curve::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0,199,61,.2);
}
.hero-curve-left  { left: -14px; top: 220px; }
.hero-curve-right { right: -14px; top: 100px; transform: scaleX(-1); }

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  text-align: center;
  color: #fff;
}
.hero-top { max-width: 780px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(0,199,61,.4);
  padding: 5px 14px 5px 10px;
  border-radius: var(--pill);
}
.hero-eyebrow::before {
  content: '';
  width: 20px; height: 20px;
  display: inline-block;
  background-image: url("img/Isologo skandia (1).png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.hero-title-new {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 22px;
}
.hero-title-new span { color: #72E200; }

.hero-desc {
  font-size: 22px;
  color: #fff;
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 10px;
  font-weight: 400;
  margin-top: 36px;
  margin-bottom: 36px;
}
.hero-subdesc {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 0;
}
.hero-divider {
  width: min(800px, 100%);
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 36px auto 22px;
}
.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 0;
  text-align: center;
}

/* ── HERO CARDS ZONE ── */
.hero-cardz-zone {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.hero-cardz-zone::before {
  content: 'SCROLL';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
  pointer-events: none;
}

/* ── HERO CARDS — bloque flotante ── */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(980px, calc(100% - 40px));
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  overflow: hidden;
  margin-top: 0;
  position: relative;
  z-index: 10;
  transform: translateY(90px);
}

.hero-card {
  background: #fff;
  padding: 36px 30px 32px;
  display: grid;
  flex-direction: column;
  gap: 0;
  border: none;
  border-right: 1px solid #e8e8e8;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background .28s ease;
  min-height: 360px;
  grid-template-rows: auto auto auto 1fr auto;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%; 
  width: 100%;
  height: 100%;

  background: rgba(0, 199, 61, 0.08);

  z-index: 1;

  transition: left 0.6s cubic-bezier(.22,.68,0,1);
}
.hero-card:last-child { border-right: none; }

.hero-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #e0e0e0;
  transition: background .28s ease;
}


.hero-card:hover::after     { background: var(--green); }

.hero-card.is-active        { background: var(--green-light); }
.hero-card.is-active::after { background: var(--green); }

.hero-card.featured         { background: #fff; }
.hero-card.featured::after  { background: #e0e0e0; }
.hero-card:hover::before {
  left: 0;
}
.hero-card > * {
  position: relative;
  z-index: 2;
}

.card-step-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.card-step-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.card-step-line {
  flex: 1;
  height: 1.5px;
  background: var(--green);
  margin: 0 6px;
  position: relative;
}
.card-step-line::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--green);
}
.card-step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .02em;
  padding-left: 8px;
}

.card-badge {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #A2A2A2;
  margin-bottom: 10px;
  background: none;
  padding: 0;
  text-align: left;
  padding-bottom: 10px;
}

.hero-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 14px;
  text-align: left;
  padding: auto;
  min-height: 48px;
}
.hero-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
  text-align: left;
  min-height: 72px;
}
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border: none;
  cursor: pointer;
  margin-top: auto;
  transition: gap .2s ease, color .18s ease;
  width: fit-content;
}
.card-btn:hover { gap: 11px; color: var(--green-dark); }


.ticker {
  background: var(--green);
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  position: relative;
  z-index: 5;
}
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker > .ticker-inner {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: tickerMove 18s linear infinite;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.ticker .plus { opacity: .8; margin: 0 4px; }


.section { padding: 96px 0; }
.section-title { text-align: center; }
.section-intro {
  margin-top: 90px; 
  background: #F8F8F8;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.kicker-logo { display: flex; align-items: center; justify-content: center; }
.kicker-logo img { height: 16px; width: auto; object-fit: contain; }

.title-rule {
  height: 2px;
  width: min(760px, 100%);
  margin: 18px auto 0;
  background: var(--green);
  border-radius: 2px;
}

/* INTRO */
.intro-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.intro-visual::before,
.intro-visual::after { display: none !important; }
.intro-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
  overflow: visible;
}
.intro-photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}
.intro-badge {
  position: absolute;
  right: -20px;
  bottom: -36px;
  z-index: 2;
}
.badge-card {
  background: var(--green);
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px 16px;
  min-width: 230px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,199,61,.3);
}
.badge-number { font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -.03em; }
.badge-label  { margin-top: 8px; font-weight: 700; font-size: 13px; }
.badge-p      { margin-top: 6px; font-size: 12px; line-height: 1.4; opacity: .9; }

.intro-copy     { max-width: 520px; }
.intro-copy .h3 { line-height: 1.15; }
.intro-copy .lead {
  margin-top: 18px;
  color: #4a4a4a;
  line-height: 1.75;
  font-size: 15px;
}
.intro-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature { display: flex; gap: 16px; align-items: center; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon img { width: 22px; height: 22px; object-fit: contain; }
.feature-title { font-weight: 800; color: #2a2a2a; font-size: 15px; }
.feature-text  { margin-top: 4px; color: #5a5a5a; font-size: 14px; line-height: 1.5; }

.section-profiles { background: var(--soft); }
.profiles-head { text-align: center; }
.profiles-head p { margin-top: 10px; color: #5a5a5a; font-size: 16px; }
.profiles-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 24px;
  align-items: stretch;
}
.profile-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: visible;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  --rx: 0deg; --ry: 0deg;
  --mx: 50%;  --my: 50%;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  transition: transform .35s var(--ease), box-shadow .35s ease;
  will-change: transform;
}
.profile-card:hover {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,.14);
}
.profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 2;
}
.profile-card:hover::before { opacity: 1; }

.card-step {
  position: absolute;
  top: -20px; left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
  z-index: 3;
}
.step-svg    { width: 260px; height: auto; }
.step-svg-caja    { width: 220px; height: auto; }

.step-number { font-weight: 800; font-size: 15px; color: #1f2937; }

.profile-image {
  height: 180px;
  background: #ddd;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.profile-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.profile-card:hover .profile-image img { transform: scale(1.05); }

.profile-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.profile-body h3 { font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.profile-body p  { color: #666; font-size: 13px; line-height: 1.55; flex: 1; }

.btn-pill {
  display: block;
  background: var(--green);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--pill);
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: auto;
  transition: background .2s, transform .15s;
}
.btn-pill:hover { background: var(--green-dark); transform: translateY(-1px); }

/* IMPACT */
.section-impact { padding-bottom: 64px; }
.impact-head    { text-align: center; }
.impact-title {
  font-size: clamp(38px, 2.3vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--green);
}
.impact-head p { margin-top: 10px; color: #5a5a5a; font-size: 18px; }
.impact-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.impact-item { text-align: center; }
.impact-icon {
  width: 58px; height: 54px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.impact-icon img { width: 42px; height: 42px; }
.impact-number {
  font-weight: 700;
  font-size: clamp(32px, 2.5vw, 40px);
  color: #444;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  
}
.impact-number .plus { color: var(--green); font-weight: 900; }
.impact-label { margin-top: 10px; font-size: 14px; color: #444; font-weight: 400; }
.impact-quote {
  margin-top: 56px;
  text-align: center;
  color: #2a2a2a;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  padding-top: 40px;
}
.impact-quote strong { font-weight: 900; font-size: 1.05em; }

.section-welfare {
  padding: 80px 0;
  background: #2b2b2b;
  
}
.welfare-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 16px;
  padding-left: 28px;
}
.welfare-left { display: flex; flex-direction: column; gap: 6px; }
.welfare-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.welfare-icon svg { width: 22px; height: 22px; }
.welfare-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  padding-bottom: 10px;
  padding-left: 30px;
}
.welfare-desc {
  font-size: 16px;
  color:#fff;
  max-width: 520px;
  font-weight: 500;
  padding-left: 30px;
}
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00c73d;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px ;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
  margin-right: 40px;
}
.btn-green:hover { background: #00c73d; transform: translateY(-1px); }

.skandia-footer {
  background: #202020;
  color: rgba(255,255,255,.85);
  padding: 28px 0 22px;
}
.footer-inner { text-align: center; }
.footer-companias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.footer-companias p {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  opacity: .9;
}
.footer-line  { width: 100%; height: 2px; background: var(--green); margin: 20px 0; }
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 14px;
}
.footer-logo  { height: 22px; width: auto; opacity: .95; }
.footer-copy p { font-size: 11px; color: #cfcfcf; margin: 0; font-weight: 500; }

@media (max-width: 900px) {
  .hero-full       { padding-top: 72px; }
  .hero-inner      { padding-bottom: 60px; }
  .hero-cards      { grid-template-columns: 1fr; transform: translateY(32px); }
  .ticker          { margin-top: 38px; }
  .intro-grid      { grid-template-columns: 1fr; gap: 40px; }
  .profiles-grid   { grid-template-columns: 1fr; }
  .impact-grid     { grid-template-columns: repeat(2, 1fr); }
  .header-inner    { grid-template-columns: 1fr 1fr; }
  .nav-pill        { display: none; }
  .welfare-inner   { flex-direction: column; align-items: flex-start; }
  .footer-logos    { flex-direction: column; gap: 16px; }
  .footer-companias { gap: 14px; }
  
}
@media (max-width: 768px) {

  .hero-eyebrow{
    margin-top: 15px;
  }
  .hero-full {
    min-height: auto;
    margin-bottom: 0;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .hero-title-new {
    font-size: 36px;
    line-height: 1.1;
    margin-top: 15px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .hero-desc br {
    display: none;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    transform: translateY(40px);
    border-radius: 16px;
  }

  .hero-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .hero-card h3 {
    font-size: 18px;
  }

  .hero-card p {
    font-size: 13px;
  }

  .section-intro {
    margin-top: 60px;
    padding: 60px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-photo {
    height: auto;
  }

  .intro-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .impact-number {
    font-size: 26px;
  }

  .section-cta-image {
    height: 300px;
    padding: 40px 20px;
  }

  .cta-eyebrow {
    font-size: 18px;
  }

  .cta-title {
    font-size: 24px;
  }

  .welfare-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 10px;
  }

  .welfare-title {
    font-size: 22px;
    padding-left: 0;
  }

  .welfare-desc {
    font-size: 14px;
    padding-left: 0;
  }

  .btn-green {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .logo {
    padding-left: 16px;
  }

  .btn-primary {
    margin-right: 16px;
    font-size: 12px;
    padding: 8px 16px;
  }

  .nav-pill {
    display: none;
  }

  .hero-video {
    display: none;
  }

  .hero-media {
    background: url('img/hero-fallback.jpg') center/cover no-repeat;
  }

}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-eyebrow   { animation: fadeUp .6s ease both;  animation-delay: .1s; }
.hero-title-new { animation: fadeUp .7s ease both;  animation-delay: .25s; }
.hero-desc      { animation: fadeUp .7s ease both;  animation-delay: .42s; }
.hero-subdesc   { animation: fadeUp .6s ease both;  animation-delay: .55s; }

.hero-cards { animation: fadeUp .8s cubic-bezier(.22,.68,0,1.2) both; animation-delay: .65s; }

@keyframes linePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .55; }
}
.hero-card:hover .card-step-svg-caja,
.hero-card:hover .step-svg-caja {
  animation: linePulse 1.2s ease infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.intro-photo img {
  animation: float 5s ease-in-out infinite;
}

@keyframes popIn {
  0%   { opacity: 0; transform: scale(.75) translateY(16px); }
  70%  { transform: scale(1.06) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.intro-badge .badge-card {
  opacity: 0;
  animation: popIn .65s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .9s;
}
.intro-visual.is-visible .intro-badge .badge-card {
  animation-play-state: running;
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.feature {
  opacity: 0;
  animation: slideRight .6s ease both;
}
.intro-copy.is-visible .feature:nth-child(1) { animation-delay: .15s; }
.intro-copy.is-visible .feature:nth-child(2) { animation-delay: .3s;  }

@keyframes iconBounce {
  0%   { transform: translateY(0); }
  35%  { transform: translateY(-8px); }
  55%  { transform: translateY(-3px); }
  75%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.impact-item.is-visible .impact-icon {
  animation: iconBounce .7s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .2s;
}
.impact-item.is-visible:nth-child(2) .impact-icon { animation-delay: .35s; }
.impact-item.is-visible:nth-child(3) .impact-icon { animation-delay: .5s;  }
.impact-item.is-visible:nth-child(4) .impact-icon { animation-delay: .65s; }

@keyframes scaleUp {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}
.impact-item.is-visible .impact-number {
  animation: scaleUp .5s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .3s;
}
.impact-item.is-visible:nth-child(2) .impact-number { animation-delay: .45s; }
.impact-item.is-visible:nth-child(3) .impact-number { animation-delay: .6s;  }
.impact-item.is-visible:nth-child(4) .impact-number { animation-delay: .75s; }

.ticker:hover > .ticker-inner { animation-play-state: paused; }

@keyframes ctaFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.section-cta-image.is-visible .cta-eyebrow,
.section-cta-image.is-visible .cta-title {
  animation: ctaFadeIn .7s ease both;
}
.section-cta-image.is-visible .cta-title { animation-delay: .15s; }

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
.welfare-inner.is-visible .welfare-left {
  animation: slideLeft .65s ease both;
}
.welfare-inner.is-visible .btn-green {
  animation: slideFromRight .65s ease both;
  animation-delay: .15s;
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn-green {
  background-size: 200% auto;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-green:hover {
  box-shadow: 0 6px 24px rgba(0,199,61,.4);
}

.skandia-footer {
  opacity: 0;
  animation: fadeIn .8s ease both;
}
.skandia-footer.is-visible { opacity: 1; }

@keyframes cardHoverPop {
  0%   { box-shadow: 0 10px 22px rgba(0,0,0,.08); }
  50%  { box-shadow: 0 28px 56px rgba(0,0,0,.16); }
  100% { box-shadow: 0 22px 48px rgba(0,0,0,.14); }
}
.profile-card:hover {
  animation: cardHoverPop .35s ease forwards;
}

.section-cta-image {
  position: relative;
}

.nav-mobile-only {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  
  .cta { 
    display: none !important; 
  }

  .nav-mobile-only {
    display: flex !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-pill {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 20, 5, 0.98);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    gap: 10px !important;
    z-index: 150;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-pill.open {
    display: flex;
  }

  .nav-link {
    color: #fff !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    font-size: 16px !important;
    font-weight: 600;
    text-decoration: none;
  }

  .nav-dropdown { 
    width: 100%; 
  }

  .nav-dropdown-content {
    position: static !important;
    display: none;
    box-shadow: none !important;
    border: 1px solid rgba(0,199,61,0.3) !important;
    background: rgba(255,255,255,0.05) !important;
    margin-top: 10px;
    border-radius: 12px !important;
  }

  .nav-dropdown.open .nav-dropdown-content {
    display: block !important;
  }

  .nav-dropdown-content a {
    color: #fff !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}
