/* =============================================
   YEET Digital Agency — Main Stylesheet
   ============================================= */

/* 1. Design Tokens */
:root {
  --c-dark:    #08000F;
  --c-deeper:  #120020;
  --c-purple:  #7B00CC;
  --c-vivid:   #9900FF;
  --c-lime:    #C8F500;
  --c-white:   #FFFFFF;
  --c-w80:     rgba(255,255,255,0.80);
  --c-w60:     rgba(255,255,255,0.60);
  --c-w30:     rgba(255,255,255,0.30);
  --c-w10:     rgba(255,255,255,0.10);
  --c-w05:     rgba(255,255,255,0.05);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  --sh-lime:   0 0 28px rgba(200,245,0,0.40);
  --sh-purple: 0 0 36px rgba(123,0,204,0.55);

  --nav-h:       72px;
  --section-pad: clamp(64px, 8vw, 120px);
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-dark);
  color: var(--c-white);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* 3. Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--c-w60); }

.accent        { color: var(--c-lime); }
.accent-purple { color: var(--c-vivid); }

/* 4. Layout utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--section-pad) 0; }
.section--dark   { background: var(--c-dark); }
.section--deeper { background: var(--c-deeper); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 24px; }

.text-center { text-align: center; }

.tag {
  display: inline-block;
  background: var(--c-w05);
  border: 1px solid rgba(200,245,0,0.25);
  border-radius: var(--r-full);
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-lime);
  margin-bottom: 20px;
}

.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.centered { text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { max-width: 600px; }
.section-head.centered p { margin: 0 auto; }

.divider {
  width: 56px; height: 3px;
  background: var(--c-lime);
  border-radius: 2px;
  margin: 18px 0 0;
}
.divider--center { margin: 18px auto 0; }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: all 0.25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lime {
  background: var(--c-lime);
  color: var(--c-dark);
  box-shadow: var(--sh-lime);
}
.btn--lime:hover {
  background: #d8ff20;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(200,245,0,0.55);
}
.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid var(--c-w30);
}
.btn--outline:hover {
  border-color: var(--c-white);
  background: var(--c-w05);
  transform: translateY(-2px);
}
.btn--purple {
  background: var(--c-purple);
  color: var(--c-white);
  box-shadow: var(--sh-purple);
}
.btn--purple:hover {
  background: var(--c-vivid);
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(123,0,204,0.65);
}
.btn--sm  { padding: 10px 22px; font-size: 0.82rem; }
.btn--lg  { padding: 18px 44px; font-size: 1rem; }

/* 7. Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(8,0,15,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 28px rgba(0,0,0,0.45);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.nav__logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav__logo-text span { color: var(--c-lime); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-w60);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--c-lime);
  transform: scaleX(0);
  transition: transform 0.22s;
  border-radius: 2px;
}
.nav__links a:hover,
.nav__links a.active { color: var(--c-white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switcher */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--c-w05);
  border: 1px solid var(--c-w10);
  border-radius: var(--r-full);
  padding: 4px 8px;
}
.nav__lang-item {
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.38;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
}
.nav__lang-item:hover { opacity: 0.75; transform: scale(1.12); }
.nav__lang-item.active { opacity: 1; transform: scale(1.08); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile overlay menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,0,15,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-w60);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--c-lime); }
.nav__mobile .nav__lang { margin-top: 8px; }
.nav__close {
  position: absolute;
  top: 26px;
  right: clamp(20px, 5vw, 60px);
  font-size: 2rem;
  color: var(--c-white);
  cursor: pointer;
  line-height: 1;
}

/* 8. Cards */
.card {
  background: var(--c-w05);
  border: 1px solid var(--c-w10);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-purple), var(--c-lime));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  border-color: var(--c-w30);
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.card:hover::before { opacity: 1; }

.card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--c-purple), var(--c-vivid));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.card h4 { margin-bottom: 10px; }
.card p { font-size: 0.9rem; }

/* Stat cards */
.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--r-lg);
  background: var(--c-w05);
  border: 1px solid var(--c-w10);
}
.stat-card__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--c-lime);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 0.88rem;
  color: var(--c-w60);
}

/* 9. Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 50%, rgba(123,0,204,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 15% 85%, rgba(60,0,120,0.28) 0%, transparent 55%),
    var(--c-dark);
  z-index: 0;
}
.hero__doodle {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../assets/doodle-pattern.svg');
  background-size: 400px 400px;
  background-repeat: repeat;
  opacity: 0.065;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--c-lime);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
.hero__eyebrow-text {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-lime);
}
.hero h1 { margin-bottom: 22px; }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--c-w60);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero__visual {
  position: absolute;
  right: clamp(20px, 6vw, 100px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
.hero__visual img {
  width: clamp(200px, 24vw, 380px);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 0 48px rgba(123,0,204,0.65));
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero__scroll-text {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero__scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

/* 10. About section */
.about__visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about__visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-xl);
  filter: saturate(1.2) brightness(0.8);
}
.about__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,0,204,0.4) 0%, transparent 60%);
  border-radius: var(--r-xl);
}
.about__text p { color: var(--c-w60); margin-bottom: 20px; }
.about__text p:last-child { margin-bottom: 0; }

/* 11. Pillars / Differentials */
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--r-lg);
  transition: background 0.25s;
}
.pillar:hover { background: var(--c-w05); }
.pillar__num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--c-lime);
  color: var(--c-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar__body h4 { margin-bottom: 8px; }
.pillar__body p { font-size: 0.9rem; }

/* 12. Process */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-purple), var(--c-lime), transparent);
  opacity: 0.35;
}
.process__step {
  text-align: center;
  padding: 20px 16px;
  position: relative;
  z-index: 1;
}
.process__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-purple), var(--c-vivid));
  color: var(--c-white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 24px rgba(123,0,204,0.5);
}
.process__step h4 { margin-bottom: 8px; }
.process__step p { font-size: 0.85rem; }

/* 13. CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #3D0080 0%, var(--c-purple) 50%, #5500AA 100%);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/doodle-pattern.svg');
  background-size: 320px 320px;
  opacity: 0.07;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 14. Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-w60);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.form-control {
  background: var(--c-w05);
  border: 1px solid var(--c-w10);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: var(--c-white);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-control::placeholder { color: var(--c-w30); }
.form-control:focus {
  outline: none;
  border-color: var(--c-lime);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(200,245,0,0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control option { background: var(--c-deeper); color: var(--c-white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* 15. Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-purple), var(--c-vivid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.contact-item__body h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-item__body p { font-size: 0.9rem; }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.social-link {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-w05);
  border: 1px solid var(--c-w10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s;
  color: var(--c-w60);
}
.social-link:hover {
  background: var(--c-lime);
  color: var(--c-dark);
  transform: scale(1.1);
  border-color: var(--c-lime);
}

/* 16. Footer */
.footer {
  background: var(--c-deeper);
  border-top: 1px solid var(--c-w10);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 0.88rem;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-w30);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--c-w60);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--c-lime); }
.footer__bottom {
  border-top: 1px solid var(--c-w10);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.82rem; color: var(--c-w30); }
.footer__bottom a { color: var(--c-w30); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--c-lime); }
.footer__legal { display: flex; gap: 20px; }

/* 17. Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: rgba(18,0,32,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-w10);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  max-width: 720px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s;
}
.cookie-banner.hidden {
  transform: translateX(-50%) translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text { flex: 1; font-size: 0.85rem; }
.cookie-banner__text a { color: var(--c-lime); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* 18. Page Hero (inner pages) */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  background:
    radial-gradient(ellipse 100% 120% at 50% 110%, rgba(123,0,204,0.32) 0%, transparent 70%),
    var(--c-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/doodle-pattern.svg');
  background-size: 320px 320px;
  opacity: 0.05;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 60px;
}
.page-hero__tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-lime);
  margin-bottom: 12px;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.page-hero p { max-width: 560px; }

/* 19. Service detail cards */
.service-card {
  background: var(--c-w05);
  border: 1px solid var(--c-w10);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 100% 100%, rgba(123,0,204,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(123,0,204,0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-card__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200,245,0,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.service-card p { margin-bottom: 20px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card ul li {
  font-size: 0.88rem;
  color: var(--c-w60);
  padding-left: 18px;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-lime);
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-w05);
  border: 1px solid var(--c-w10);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.faq-question:hover { background: var(--c-w05); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-w10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform 0.25s, background 0.25s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--c-lime);
  color: var(--c-dark);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--c-w60);
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: linear-gradient(160deg, rgba(123,0,204,0.28) 0%, rgba(18,0,32,0.85) 100%);
  border: 1px solid rgba(123,0,204,0.35);
  border-radius: var(--r-lg);
  padding: 36px 20px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(123,0,204,0.3);
  border-color: rgba(200,245,0,0.35);
}
.team-card__photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid rgba(200,245,0,0.3);
  filter: grayscale(15%);
  transition: filter 0.3s, border-color 0.3s;
}
.team-card:hover .team-card__photo {
  filter: grayscale(0%);
  border-color: var(--c-lime);
}
.team-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-white);
  margin-bottom: 6px;
}
.team-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-lime);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* Expertise cards (large) */
.expertise-card {
  background: var(--c-w05);
  border: 1px solid var(--c-w10);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-purple), var(--c-lime));
  opacity: 0;
  transition: opacity 0.3s;
}
.expertise-card:hover { border-color: rgba(200,245,0,0.2); box-shadow: 0 28px 70px rgba(0,0,0,0.3); }
.expertise-card:hover::before { opacity: 1; }
.expertise-card__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(200,245,0,0.07);
  line-height: 1;
  margin-bottom: 12px;
}
.expertise-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--c-purple), var(--c-vivid));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.expertise-card h3 { margin-bottom: 16px; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.expertise-card p  { font-size: 1rem; line-height: 1.7; }

/* Objetivo box */
.objetivo-box {
  background: linear-gradient(135deg, rgba(123,0,204,0.18) 0%, rgba(200,245,0,0.06) 100%);
  border: 1px solid rgba(200,245,0,0.18);
  border-radius: var(--r-xl);
  padding: 52px 48px;
}
.objetivo-box h3 { margin-bottom: 16px; color: var(--c-lime); }
.objetivo-box p  { font-size: 1.05rem; line-height: 1.75; max-width: 720px; }

/* Prose pages */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 44px 0 16px; color: var(--c-white); }
.prose h3 { font-size: 1.15rem; margin: 30px 0 12px; color: var(--c-white); }
.prose p  { margin-bottom: 16px; font-size: 1rem; }
.prose ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; font-size: 1rem; color: var(--c-w60); }
.prose a { color: var(--c-lime); text-decoration: underline; }
.prose strong { color: var(--c-white); }

/* 20. Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* 21. Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-22px) rotate(2deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.65; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* 22. Responsive */
@media (max-width: 1024px) {
  .hero__visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links,
  .nav__right .btn,
  .nav__right .nav__lang { display: none; }
  .nav__burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .process::before { display: none; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
