/* ============================================
   SLONKY | Neon-Punk Editorial Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* --- Custom Properties --- */
:root {
  --bg-deep: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --bg-surface: #151515;
  --pink: #EE2C82;
  --pink-soft: #FF6BA9;
  --yellow: #DFFF00;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #F0F0F0;
  --gray-300: #D0D0D0;
  --gray-400: #B0B0B0;
  --gray-500: #888888;
  --gray-600: #444444;
  --gray-700: #2A2A2A;
  --gray-800: #1A1A1A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--gray-200);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; transition: color var(--transition-interactive); }
a:hover { color: var(--pink-soft); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* --- Grain Overlay --- */
.grain-overlay {
  position: relative;
}
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}
.grain-overlay > * {
  position: relative;
  z-index: 2;
}

/* --- Container --- */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: 20px;
}

.container--narrow {
  max-width: var(--content-default);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 300ms var(--ease-out), backdrop-filter 300ms var(--ease-out), padding 300ms var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(238, 44, 130, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo svg {
  height: 28px;
  width: auto;
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition-interactive);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
}

.nav__cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background var(--transition-interactive), transform var(--transition-interactive) !important;
}

.nav__cta:hover {
  background: #d4246f !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 300ms var(--ease-out), opacity 200ms var(--ease-out);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--pink);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-out);
}

.nav__mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-menu a {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform var(--transition-interactive);
}

.nav__mobile-menu a:hover {
  transform: translateX(8px);
  color: var(--yellow);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  border-left: 4px solid var(--pink);
  position: relative;
  overflow: hidden;
}

/* Hero background image support */
.hero--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.hero--bg > * {
  position: relative;
  z-index: 3;
}

.hero__content {
  max-width: 800px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 0.95;
}

.hero__title span.highlight {
  color: var(--pink);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gray-300);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero butterfly decoration */
.hero__butterfly {
  position: absolute;
  right: 60px;
  bottom: 80px;
  width: 180px;
  opacity: 0.15;
  z-index: 2;
  filter: brightness(1.2);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive), color var(--transition-interactive), border-color var(--transition-interactive);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--pink {
  background: var(--pink);
  color: var(--white);
}
.btn--pink:hover {
  background: #d4246f;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(238, 44, 130, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-500);
}
.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--yellow {
  background: var(--yellow);
  color: var(--bg-deep);
}
.btn--yellow:hover {
  background: #c8e600;
  color: var(--bg-deep);
}

.btn--small {
  padding: 10px 20px;
  font-size: 13px;
}

/* --- Section Styles --- */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

.section--dark {
  background: var(--bg-deep);
}

.section--surface {
  background: var(--bg-surface);
}

.section__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 12px;
}

.section__label--yellow {
  color: var(--yellow);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  color: var(--white);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.6;
}

/* --- Problem Section --- */
.problem {
  padding: 100px 0;
}

.problem--with-image {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.problem__content {
  flex: 1;
  min-width: 0;
}

.problem__image {
  flex: 0 0 280px;
  padding-top: 60px;
}

.problem__image img {
  width: 100%;
  height: auto;
}

.problem__body--large {
  font-size: 1.2rem;
  color: var(--gray-200);
  line-height: 1.75;
  max-width: 720px;
}

@media (max-width: 768px) {
  .problem--with-image {
    flex-direction: column;
  }
  .problem__image {
    flex: none;
    width: 180px;
    padding-top: 0;
    align-self: center;
  }
}

.problem__text {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.3;
  max-width: 800px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.problem__body {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 680px;
  line-height: 1.7;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out), transform 300ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 50%, rgba(238, 44, 130, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(238, 44, 130, 0.4);
  box-shadow: 0 0 30px rgba(238, 44, 130, 0.08);
  transform: translateY(-2px);
}

/* Alt yellow hover for some cards */
.service-card--yellow:hover {
  border-color: rgba(223, 255, 0, 0.4);
  box-shadow: 0 0 30px rgba(223, 255, 0, 0.08);
}
.service-card--yellow::before {
  background: linear-gradient(135deg, transparent 50%, rgba(223, 255, 0, 0.3));
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--pink);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.service-card__name--big {
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.service-card__price {
  font-size: 13px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-card__price--yellow {
  color: var(--yellow);
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-interactive), color var(--transition-interactive);
}

.service-card__link:hover {
  gap: 12px;
  color: var(--pink-soft);
}

.service-card__link--yellow {
  color: var(--yellow);
}
.service-card__link--yellow:hover {
  color: #c8e600;
}

/* --- Stats Bar --- */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--gray-700);
  border-bottom: 1px solid var(--gray-700);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media (max-width: 640px) {
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__number span.yellow {
  color: var(--yellow);
}

.stat__number span.pink {
  color: var(--pink);
  font-style: italic;
}

.stat__label {
  font-size: 14px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* --- Ticker (Text) --- */
.ticker {
  background: var(--pink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  animation: ticker-scroll 25s linear infinite;
}

.ticker__item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.ticker__item::after {
  content: '•';
  margin-left: 24px;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Logo Ticker (Partner logos scrolling) --- */
.logo-ticker {
  background: var(--pink-soft);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.logo-ticker__track {
  display: flex;
  align-items: center;
  animation: ticker-scroll 40s linear infinite;
}

.logo-ticker__item {
  flex-shrink: 0;
  padding: 0 20px;
}

.logo-ticker__item img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* --- Partner Logo Grid --- */
.partner-grid-section {
  background: var(--bg-deep);
  padding: 80px 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

.partner-grid__item {
  background: var(--pink-soft);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.partner-grid__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(238, 44, 130, 0.2);
}

a.partner-grid__item {
  cursor: pointer;
  text-decoration: none;
}

a.partner-grid__item:hover {
  box-shadow: 0 4px 20px rgba(238, 44, 130, 0.35);
  transform: translateY(-3px);
}

.partner-grid__item img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* --- Yellow Bottom Bar --- */
.yellow-bar {
  height: 4px;
  background: var(--yellow);
  width: 100%;
}

/* --- Portfolio / World-Changers Cards --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 40px 32px;
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.portfolio-card:hover {
  border-color: var(--gray-500);
  transform: translateY(-2px);
}

.portfolio-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--yellow);
}

.portfolio-card__icon svg {
  width: 100%;
  height: 100%;
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-card__subtitle {
  font-size: 14px;
  color: var(--pink);
  font-weight: 500;
  margin-bottom: 16px;
}

.portfolio-card__desc {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* --- About Page --- */
.about-hero {
  padding: 160px 0 80px;
  border-left: 4px solid var(--pink);
}

.about-hero__title {
  font-size: clamp(3rem, 7vw, 5rem);
}

/* About intro tagline */
.about-intro__sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.about-narrative {
  max-width: 700px;
}

.about-narrative p {
  font-size: 1.15rem;
  color: var(--gray-200);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* --- Standalone About Quote --- */
.about-quote-section {
  background: #050505;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-quote__mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 0.5;
  color: var(--pink);
  opacity: 0.25;
  user-select: none;
  margin-bottom: 20px;
}

.about-quote__mark--close {
  margin-top: 12px;
  margin-bottom: 0;
}

.about-quote__text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.about-quote__attribution {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote {
  border-left: 3px solid var(--pink);
  padding-left: 24px;
  margin: 48px 0;
}

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 36px;
}

.pillar__number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--pink);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.pillar:nth-child(even) .pillar__number {
  color: var(--yellow);
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pillar__desc {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* --- Contact / Form --- */
.contact-hero {
  padding: 160px 0 80px;
  border-left: 4px solid var(--pink);
}

.form-section {
  max-width: 700px;
  margin-inline: auto;
  padding: 40px 20px 100px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(238, 44, 130, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-qualifier {
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.form-qualifier strong {
  color: var(--yellow);
}

/* --- Toolkit Page --- */
.toolkit-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-700);
}

.toolkit-section:last-of-type {
  border-bottom: none;
}

.toolkit-section__header {
  margin-bottom: 48px;
}

.toolkit-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.toolkit-section__price {
  font-size: 15px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.toolkit-section__desc {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 24px;
}

.toolkit-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .toolkit-features { grid-template-columns: 1fr; }
}

.toolkit-features li {
  list-style: none;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.toolkit-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

.toolkit-usecases {
  margin-bottom: 32px;
}

.toolkit-usecases__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 8px;
}

.toolkit-usecases__list {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.8;
}

/* --- Device Frame (for mockup images) --- */
.device-frame {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  margin-top: 48px;
  border: 1px solid var(--gray-700);
}

.device-frame__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #222;
  border-bottom: 1px solid var(--gray-700);
}

.device-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-600);
}

.device-frame__dot:nth-child(1) { background: #ff5f57; }
.device-frame__dot:nth-child(2) { background: #febc2e; }
.device-frame__dot:nth-child(3) { background: #28c840; }

.device-frame__url {
  flex: 1;
  background: var(--bg-deep);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--gray-500);
  margin-left: 8px;
  font-family: var(--font-body);
}

.device-frame__content {
  width: 100%;
  display: block;
  background: #fff;
}

/* When content is an image instead of iframe */
.device-frame__content img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .device-frame__content iframe {
    height: 400px;
  }
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.fade-in-stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
.footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--gray-700);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 56px;
  margin-bottom: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 360px;
}

.footer__brand img {
  height: 28px;
  width: auto;
}

/* Footer Testimonial */
.footer__testimonial {
  border-left: 2px solid var(--pink);
  padding-left: 20px;
}

.footer__testimonial-quote {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gray-200);
  font-style: italic;
  margin-bottom: 14px;
}

.footer__testimonial-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.footer__testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition-interactive);
}

.footer__col ul a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

/* --- Page Header (non-home pages) --- */
.page-header {
  padding: 160px 0 60px;
  border-left: 4px solid var(--pink);
}

.page-header__title {
  font-size: clamp(3rem, 7vw, 5rem);
}

.page-header__subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.6;
}

/* --- eLearning Placeholder --- */
.elearning-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--gray-600);
  border-radius: 12px;
  padding: 80px 40px;
  text-align: center;
  margin-top: 48px;
}

.elearning-placeholder__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.elearning-placeholder__text {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* --- Demo Showcase (Screenshot Gallery) --- */
.showcase {
  padding: 100px 0 80px;
  overflow: hidden;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.showcase__item--featured {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .showcase__grid {
    grid-template-columns: 1fr;
  }
}

.showcase__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--gray-700);
  transition: transform 400ms var(--ease-out), border-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  display: block;
  text-decoration: none;
}

.showcase__item:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 44, 130, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(238, 44, 130, 0.1);
}

.showcase__browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--gray-700);
}

.showcase__browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.showcase__browser-dot:nth-child(1) { background: #ff5f57; }
.showcase__browser-dot:nth-child(2) { background: #febc2e; }
.showcase__browser-dot:nth-child(3) { background: #28c840; }

.showcase__browser-url {
  flex: 1;
  background: var(--bg-deep);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--gray-500);
  margin-left: 8px;
  font-family: var(--font-body);
}

.showcase__img {
  width: 100%;
  display: block;
  height: auto;
}

.showcase__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, transparent 100%);
  transform: translateY(100%);
  transition: transform 400ms var(--ease-out);
}

.showcase__item:hover .showcase__overlay {
  transform: translateY(0);
}

.showcase__overlay-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.showcase__overlay-desc {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 12px;
}

.showcase__overlay-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showcase__overlay-link:hover {
  color: var(--pink-soft);
}

/* Service card with thumbnail */
.service-card__thumb {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-700);
  overflow: hidden;
}

.service-card__thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 600ms var(--ease-out);
}

.service-card:hover .service-card__thumb img {
  transform: scale(1.03);
}

/* --- World-Changers Visual Preview --- */
.visual-preview {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-700);
}

.visual-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .visual-preview__grid {
    grid-template-columns: 1fr;
  }
}

.visual-preview__item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-out);
  display: block;
  text-decoration: none;
}

.visual-preview__item:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
}

.visual-preview__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.visual-preview__item-label {
  padding: 12px 16px;
  background: var(--bg-card);
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- About demo image --- */
.about-demo-image {
  margin: 48px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.about-demo-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Decorative cosmic background */
.about-decoration {
  position: relative;
  margin: 48px 0;
  border-radius: 12px;
  overflow: hidden;
}

.about-decoration img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.6);
}

.about-decoration::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(238,44,130,0.2), rgba(223,255,0,0.1));
}

/* --- Utility --- */
.text-pink { color: var(--pink); }
.text-yellow { color: var(--yellow); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* --- Responsive polish --- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 140px 0 60px;
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    text-align: center;
    justify-content: center;
  }
  .hero__butterfly {
    display: none;
  }
  .logo-ticker__item img {
    height: 40px;
  }
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   GRAVITY FORMS OVERRIDES (Slonky brand theme)
   ============================================ */

.slonky-gform-wrapper .gform_wrapper {
  margin: 0;
}

.slonky-gform-wrapper .gform_wrapper form,
.slonky-gform-wrapper .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.slonky-gform-wrapper .gfield {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slonky-gform-wrapper .gfield_label,
.slonky-gform-wrapper label.gfield_label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.slonky-gform-wrapper .gfield_required,
.slonky-gform-wrapper .gfield_required_text {
  color: var(--pink);
  margin-left: 4px;
}

.slonky-gform-wrapper input[type="text"],
.slonky-gform-wrapper input[type="email"],
.slonky-gform-wrapper input[type="url"],
.slonky-gform-wrapper input[type="tel"],
.slonky-gform-wrapper input[type="number"],
.slonky-gform-wrapper select,
.slonky-gform-wrapper textarea {
  width: 100% !important;
  background: var(--bg-card, #141414) !important;
  border: 1px solid var(--gray-700, #2a2a2a) !important;
  border-radius: 4px !important;
  padding: 14px 16px !important;
  font-family: var(--font-body, 'DM Sans', sans-serif) !important;
  font-size: 16px !important;
  color: var(--white, #fff) !important;
  transition: border-color 200ms ease, box-shadow 200ms ease !important;
  -webkit-appearance: none;
  appearance: none;
}

.slonky-gform-wrapper select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23DFFF00' d='M6 8L0 0h12z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px 8px !important;
  padding-right: 40px !important;
}

.slonky-gform-wrapper textarea {
  min-height: 140px;
  resize: vertical;
}

.slonky-gform-wrapper input::placeholder,
.slonky-gform-wrapper textarea::placeholder {
  color: var(--gray-500, #777) !important;
  opacity: 1;
}

.slonky-gform-wrapper input:focus,
.slonky-gform-wrapper select:focus,
.slonky-gform-wrapper textarea:focus {
  outline: none !important;
  border-color: var(--pink, #EE2C82) !important;
  box-shadow: 0 0 0 3px rgba(238, 44, 130, 0.18) !important;
}

.slonky-gform-wrapper .gfield_description,
.slonky-gform-wrapper .gfield_validation_message,
.slonky-gform-wrapper .validation_message {
  margin-top: 8px;
  font-size: 13px;
  color: var(--pink, #EE2C82);
}

.slonky-gform-wrapper .gform_footer,
.slonky-gform-wrapper .gform_page_footer {
  margin-top: 12px;
  padding: 0;
}

.slonky-gform-wrapper .gform_button,
.slonky-gform-wrapper input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 32px !important;
  background: var(--pink, #EE2C82) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--font-display, 'Bebas Neue', sans-serif) !important;
  font-size: 18px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease !important;
}

.slonky-gform-wrapper .gform_button:hover,
.slonky-gform-wrapper input[type="submit"]:hover {
  background: #ff4097 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(238, 44, 130, 0.3);
}

.slonky-gform-wrapper .gform_confirmation_message,
.slonky-gform-wrapper .gform_confirmation_wrapper {
  padding: 60px 30px;
  text-align: center;
  background: rgba(223, 255, 0, 0.05);
  border: 1px solid rgba(223, 255, 0, 0.2);
  border-radius: 8px;
  color: var(--white, #fff);
  font-size: 1.1rem;
}

.slonky-gform-wrapper .validation_error {
  padding: 16px;
  border: 1px solid var(--pink, #EE2C82);
  background: rgba(238, 44, 130, 0.08);
  border-radius: 4px;
  color: #fff;
  margin-bottom: 20px;
}

/* Hide the GF list bullet styling */
.slonky-gform-wrapper .gform_fields,
.slonky-gform-wrapper .gfield_list,
.slonky-gform-wrapper ul {
  list-style: none !important;
  padding-left: 0 !important;
}
