/* ─── AIUC Global — Stylesheet (matching aiuc.global Wix design) ───── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;700;800&display=swap');

:root {
  /* Exact colours from the Wix site */
  --dark:       #121217;   /* nav + dark sections */
  --dark-text:  #121217;   /* heading text */
  --body-text:  #4D4D51;   /* paragraph text */
  --teal:       #3F91A2;   /* H3, accents, links */
  --teal-dark:  #2D6F7D;
  --pink:       #F1476F;   /* primary CTA button */
  --pink-dark:  #BE1C5A;
  --cyan:       #35DEEF;   /* secondary accent */
  --white:      #FFFFFF;
  --off-white:  #FAFAFA;
  --gray-50:    #F5F5F6;
  --gray-100:   #EBEBEC;
  --gray-200:   #C4C4C5;
  --gray-400:   #9D9DA0;
  --gray-mid:   #4D4D51;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --radius: 8px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── HEADER / NAV ─── */

.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 4px;
}

.nav-logo { display: flex; align-items: center; margin-right: 20px; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.90);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 0;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links > li > button svg {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}
.nav-links > li.open > button svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  min-width: 210px;
  padding: 6px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.nav-links > li.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 300;
  padding: 9px 14px;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.nav-cta { margin-left: auto; flex-shrink: 0; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 9px 24px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover { background: var(--pink-dark); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 24px;
  list-style: none;
}
.nav-mobile.open { display: block; }
.nav-mobile a, .nav-mobile .mob-section-title {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 300;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile .mob-section-title {
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 20px;
  border-bottom: none;
}
.nav-mobile .btn-nav { margin-top: 16px; width: 100%; justify-content: center; display: flex; }

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241,71,111,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-sm { padding: 9px 22px; font-size: 14px; }

/* ─── HERO ─── */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
  min-height: 600px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,18,23,0.6) 0%, rgba(18,18,23,0.75) 100%);
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 1; }
.hero-text h1 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-text h1 span { color: var(--teal); }
.hero-text p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-badge { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hero-badge img { width: 180px; height: auto; opacity: 0.95; }

.page-hero {
  min-height: 320px;
  text-align: center;
}
.page-hero .hero-content { justify-content: center; text-align: center; flex-direction: column; gap: 16px; padding: 64px 32px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 12px; }
.page-hero .hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* ─── SECTIONS ─── */

.section { padding: 88px 32px; }
.section-sm { padding: 56px 32px; }
.section-white { background: var(--white); }
.section-light { background: var(--gray-50); }
.section-dark { background: var(--dark); }

.container { max-width: var(--max-w); margin: 0 auto; }
.text-center { text-align: center; }

/* ─── TYPOGRAPHY ─── */

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.section-dark .section-eyebrow { color: var(--teal); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-dark .section-title { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--body-text);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 56px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.65); }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

h3.accent {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ─── TWO-COL LAYOUT ─── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* ─── GRIDS ─── */

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }

/* ─── CARDS ─── */

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}
.card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.75;
}
.card-dark h3 { color: var(--teal); }
.card-dark p { color: rgba(255,255,255,0.70); }

.card-icon { display: none; } /* icons removed */

/* ─── BENEFIT ROWS (dark section) ─── */

.benefit-row {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.benefit-row:last-child { border-bottom: none; padding-bottom: 0; }
.benefit-row h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}
.benefit-row p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
  max-width: 720px;
}

/* ─── WHO IS IT FOR ─── */

.audience-row {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}
.audience-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.audience-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ─── ADOPTERS CAROUSEL ─── */

.adopters-section {
  background: var(--dark);
  padding: 56px 0;
  overflow: hidden;
}
.adopters-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
  padding: 0 32px;
}
.carousel-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.carousel-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-logos 32s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: brightness(0) invert(1) opacity(0.55);
  transition: filter var(--transition);
}
.carousel-track a:hover {
  filter: brightness(0) invert(1) opacity(1);
}
.carousel-track img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── CLASSIFICATION TABS ─── */

.classification-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 0;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--body-text);
  transition: all var(--transition);
  margin-bottom: -2px;
}
.tab-btn:hover { color: var(--teal); }
.tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.classification-card {
  display: none;
  gap: 40px;
  align-items: flex-start;
  padding: 32px 0;
}
.classification-card.active { display: flex; }
.classification-card img.badge-img {
  width: 160px; height: 160px;
  object-fit: contain;
  flex-shrink: 0;
}
.classification-card .class-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 14px;
}
.classification-card .class-info p {
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.8;
  font-weight: 300;
}
.class-examples { list-style: none; }
.class-examples li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--body-text);
  font-size: 0.95rem;
  font-weight: 300;
  border-bottom: 1px solid var(--gray-100);
}
.class-examples li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ─── TESTIMONIALS ─── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.testimonial blockquote {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}
.testimonial blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--pink);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
  font-family: Georgia, serif;
}
.testimonial cite {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-text);
  font-style: normal;
  display: block;
}
.testimonial cite span {
  color: var(--teal);
  font-weight: 400;
}

/* ─── BLOG CARDS ─── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.blog-card-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.65;
}
.blog-read { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 0.88rem; font-weight: 600; margin-top: 14px; }
.blog-read::after { content: '→'; }

/* ─── STEPS ─── */

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 52px; height: 52px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.75;
}

/* ─── FAQ ─── */

.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question svg {
  width: 22px; height: 22px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p {
  padding-bottom: 24px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
}
.faq-answer a { color: var(--teal); }

/* ─── CTA BAND ─── */

.cta-band {
  background: var(--dark);
  padding: 88px 32px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.cta-band p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── BADGE STRIP ─── */

.badge-strip {
  display: flex;
  justify-content: center;
  margin: 36px 0;
}
.badge-strip img {
  max-width: min(620px, 100%);
  height: auto;
}

/* ─── NAVIGATOR FEATURES ─── */

.feature-list { display: flex; flex-direction: column; }
.feature-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  display: none; /* icons removed — professional site */
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  padding-top: 4px;
}
.feature-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ─── TEAM / ABOUT ─── */

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.founder-card img {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--teal);
  margin-bottom: 16px;
}
.founder-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}
.founder-card .role {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}
.founder-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ─── PROSE ─── */

.prose {
  max-width: 800px;
  margin: 0 auto;
  color: var(--body-text);
  font-weight: 300;
  line-height: 1.85;
}
.prose h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}
.prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--teal); }
.prose strong { color: var(--dark-text); font-weight: 600; }
.prose-note {
  background: var(--gray-50);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--body-text);
}

/* ─── CONTACT FORM ─── */

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark-text); }
.form-group label .req { color: var(--pink); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--pink); color: var(--white);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  border: none; border-radius: 0; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--pink-dark); transform: translateY(-1px); }

/* ─── FOOTER ─── */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 72px 32px 36px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 24px; }
.footer-brand p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.65;
  margin-bottom: 6px;
}
.footer-brand p a { color: var(--teal); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--dark);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--teal); transform: translateY(-2px); }
.footer-social img { width: 18px; height: 18px; filter: invert(1); }

.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; font-weight: 300; color: var(--gray-400); }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 13px; font-weight: 300;
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--teal); }

/* ─── PLEDGE ─── */

.pledge-row {
  display: flex;
  gap: 36px;
  align-items: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 36px;
  flex-wrap: wrap;
  border: 1px solid var(--gray-100);
}
.pledge-logos { display: flex; gap: 24px; align-items: center; flex-shrink: 0; }
.pledge-logos img { height: 72px; width: auto; }
.pledge-text h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 10px; }
.pledge-text p { font-size: 0.95rem; font-weight: 300; color: var(--body-text); line-height: 1.75; }

/* ─── VARIATION CARDS (Standard page) ─── */

.variation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.variation-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.variation-card img { width: 100px; height: 100px; object-fit: contain; margin: 0 auto 16px; }
.variation-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark-text); margin-bottom: 10px; }
.variation-card p { font-size: 0.9rem; font-weight: 300; color: var(--body-text); line-height: 1.7; }

/* ─── FADE-IN — only active after JS marks page ready ─── */

.js-ready [data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-ready [data-fade].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── UTILITIES ─── */

.divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0;
}
.pink { color: var(--pink); }
.teal { color: var(--teal); }

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .two-col, .founders-grid { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-badge { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 460px; }
  .hero-content { padding: 56px 24px; }
  .section { padding: 64px 20px; }
  .section-sm { padding: 44px 20px; }
  .cta-band { padding: 64px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .classification-card { flex-direction: column; }
  .audience-row { gap: 16px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .contact-form { padding: 24px 16px; }
  .hero-text h1 { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .cta-band h2 { font-size: 2rem; }
}

/* ─── ACCESSIBILITY FOCUS ─── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
button:focus-visible, a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* ─── HIDE DEPRECATED ICON CLASSES ─── */
.audience-icon { display: none; }
