/* ==========================================================================
   Turneu Memorialul Liviu Ursuleanu — landing page styles
   Standalone stylesheet, scoped with .tnv- prefix, no dependency on style.css
   ========================================================================== */

:root {
  --lime-deep: #576500;      /* text-on-lime, small icons */
  --lime-mid: #abc502;       /* borders / pill bg / accents */
  --lime-bright: #c6e230;    /* CTA buttons, highlight bg */
  --lime-accent: #dbe129;    /* photo frame border */
  --lime-btn-text: #2c3400;  /* text on bright lime buttons */
  --lime-muted-text: #434f00;

  --ink-900: #121517;
  --ink-700: #43474b;
  --border-200: #e1e4e8;
  --surface-100: #f4f6f8;
  --surface-hero: #f8fafc;
  --white: #ffffff;

  --dark-950: #0a0c0e;
  --dark-900: #0c0f11;
  --dark-800: #1d2022;
  --dark-700: #272a2c;
  --dark-border: #464834;
  --dark-text: #e1e2e5;
  --dark-muted: #c4c7cb;
  --dark-muted-2: #c6c9ae;

  --nav-active: #0b163b;
  --nav-inactive: #374151;

  --font-heading: 'Sora', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-nav: 'Inter', sans-serif;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

.tnv-page {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.tnv-page * {
  box-sizing: border-box;
}

.tnv-page img {
  max-width: 100%;
  display: block;
}

.tnv-container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
}

.tnv-container--narrow {
  max-width: 1000px;
}

/* ---------------- Header ---------------- */

.tnv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
}

.tnv-header__inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.tnv-header__logo {
  flex-shrink: 0;
}

.tnv-header__logo img {
  height: 56px;
  width: auto;
}

.tnv-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-nav);
}

.tnv-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--nav-inactive);
  text-decoration: none;
  white-space: nowrap;
}

.tnv-nav a.is-active,
.tnv-nav a:hover {
  color: var(--nav-active);
}

.tnv-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tnv-social-mini {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-right: 12px;
  border-right: 1px solid #e5e7eb;
}

.tnv-social-mini a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #6b7280;
  text-decoration: none;
  font-size: 15px;
}

.tnv-social-mini a:hover {
  color: var(--nav-active);
}

.tnv-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nav-active);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(11, 22, 59, 0.25);
}

.tnv-phone-cta i {
  color: var(--lime-mid);
}

.tnv-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--nav-active);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

/* ---------------- Generic section helpers ---------------- */

.tnv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--lime-deep);
  text-transform: uppercase;
}

.tnv-eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime-mid);
  flex: none;
}

.tnv-section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.22;
  margin: 12px 0 16px;
}

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

/* ---------------- Hero ---------------- */

.tnv-hero {
  position: relative;
  background: var(--surface-hero);
  overflow: hidden;
  padding: 0;
}

.tnv-hero__bg {
  position: absolute;
  inset: 0;
}

.tnv-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tnv-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.97) 0%, rgba(248, 250, 252, 0.86) 42%, rgba(248, 250, 252, 0.25) 78%, rgba(248, 250, 252, 0.05) 100%),
    linear-gradient(0deg, rgba(248, 250, 252, 0.55) 0%, rgba(248, 250, 252, 0) 40%);
}

.tnv-hero__content {
  position: relative;
  max-width: 1216px;
  margin: 0 auto;
  padding: 100px 32px 90px;
}

.tnv-hero__inner {
  max-width: 780px;
}

.tnv-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-mid);
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(171, 197, 2, 0.28);
}

.tnv-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f4ffb0;
  flex: none;
  animation: tnv-pulse 1.8s ease-in-out infinite;
}

@keyframes tnv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.tnv-pill__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--lime-deep);
  text-transform: uppercase;
}

.tnv-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.14;
  color: var(--ink-900);
  margin: 0 0 12px;
}

.tnv-hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.34;
  color: var(--ink-700);
  margin: 0 0 32px;
}

.tnv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.tnv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-200);
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.06);
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--ink-700);
}

.tnv-badge i {
  color: var(--lime-deep);
}

.tnv-badge strong {
  color: var(--ink-900);
  font-weight: 700;
}

.tnv-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tnv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tnv-btn:hover {
  transform: translateY(-2px);
}

.tnv-btn--primary {
  background: var(--lime-bright);
  color: var(--lime-btn-text);
  box-shadow: 0 10px 24px rgba(198, 226, 48, 0.4);
}

.tnv-btn--outline {
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid var(--border-200);
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
  font-weight: 600;
}

/* ---------------- Key info strip ---------------- */

.tnv-info-strip {
  background: var(--white);
  border-top: 1px solid var(--border-200);
  border-bottom: 1px solid var(--border-200);
  padding: 48px 0;
}

.tnv-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tnv-info-card {
  position: relative;
  background: var(--surface-100);
  border: 1px solid var(--border-200);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
  overflow: hidden;
}

.tnv-info-card--highlight {
  background: var(--white);
  border: 2px solid var(--lime-mid);
}

.tnv-info-card__decor {
  position: absolute;
  right: -6px;
  bottom: -10px;
  font-size: 84px;
  color: var(--lime-mid);
  opacity: 0.18;
  transform: rotate(-8deg);
}

.tnv-info-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.tnv-info-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-700);
  text-transform: uppercase;
}

.tnv-info-card--highlight .tnv-info-card__label {
  color: var(--lime-deep);
}

.tnv-info-card__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-deep);
  font-size: 16px;
}

.tnv-info-card--highlight .tnv-info-card__icon {
  background: var(--lime-mid);
  border-color: var(--lime-mid);
}

.tnv-info-card__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-900);
  margin: 0 0 4px;
}

.tnv-info-card--highlight .tnv-info-card__value {
  font-weight: 900;
  font-size: 26px;
  color: var(--lime-deep);
}

.tnv-info-card__sub {
  font-size: 13px;
  color: var(--ink-700);
}

/* ---------------- Despre turneu ---------------- */

.tnv-about {
  padding: 96px 24px;
}

.tnv-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.tnv-about h2 {
  font-size: 36px;
  line-height: 1.22;
}

.tnv-about p {
  margin: 0 0 24px;
}

.tnv-about p.tnv-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-700);
}

.tnv-about p.tnv-supporting {
  font-size: 15px;
  line-height: 1.6;
}

.tnv-features {
  border: 1px solid var(--ink-900);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  padding: 24px;
  margin-top: 8px;
}

.tnv-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tnv-feature__icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: var(--lime-mid);
  color: var(--lime-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

.tnv-feature__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
  margin: 0 0 3px;
}

.tnv-feature__text {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.4;
  margin: 0;
}

.tnv-about__visual {
  position: relative;
}

.tnv-about__decor {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 144px;
  height: 144px;
  background: var(--lime-mid);
  border-radius: 16px;
  z-index: 0;
}

.tnv-about__frame {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(16, 24, 40, 0.18);
  border: 3px solid var(--lime-accent);
  background: var(--dark-800);
}

.tnv-about__frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.tnv-about__badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tnv-about__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-bright);
  border-radius: 9999px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--lime-btn-text);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.tnv-about__caption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ---------------- Sub egida FRT ---------------- */

.tnv-frt {
  position: relative;
  background: var(--ink-900);
  padding: 64px 24px;
  overflow: hidden;
}

.tnv-frt::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: var(--lime-mid);
  opacity: 0.12;
  border-radius: 50%;
}

.tnv-frt__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.tnv-eyebrow--on-dark {
  color: var(--lime-bright);
}

.tnv-frt__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
  margin: 8px 0 12px;
}

.tnv-frt__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-muted);
  margin: 0;
  max-width: 640px;
}

/* ---------------- Premii & burse ---------------- */

.tnv-prizes {
  position: relative;
  background: var(--lime-bright);
  padding: 96px 24px;
  overflow: hidden;
}

.tnv-prizes__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}

.tnv-prizes__inner {
  position: relative;
  max-width: 1216px;
  margin: 0 auto;
}

.tnv-prizes__header {
  max-width: 672px;
  margin: 0 auto 48px;
  text-align: center;
}

.tnv-prizes__badge {
  display: inline-flex;
  background: var(--lime-btn-text);
  color: var(--lime-bright);
  border-radius: 9999px;
  padding: 4px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.tnv-prizes__header h2 {
  color: var(--lime-btn-text);
  font-size: 36px;
  font-weight: 900;
}

.tnv-prizes__header p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--lime-muted-text);
  font-weight: 500;
}

.tnv-scholarships {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.tnv-schol-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 24px 48px rgba(16, 24, 40, 0.16);
}

.tnv-schol-card--boys {
  border: 1px solid var(--lime-mid);
}

.tnv-schol-card--girls {
  border: 1px solid var(--ink-900);
}

.tnv-schol-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.tnv-schol-card__id {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tnv-schol-card__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.tnv-schol-card--boys .tnv-schol-card__icon {
  background: var(--lime-mid);
  color: var(--lime-deep);
}

.tnv-schol-card--girls .tnv-schol-card__icon {
  background: var(--ink-900);
  color: var(--lime-mid);
}

.tnv-schol-card__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--lime-deep);
  text-transform: uppercase;
  margin: 0 0 2px;
}

.tnv-schol-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink-900);
  margin: 0;
}

.tnv-schol-card__duration {
  flex: none;
  background: var(--ink-900);
  color: var(--lime-mid);
  border-radius: 9999px;
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
}

.tnv-schol-card__value {
  background: var(--surface-100);
  border: 1px solid var(--border-200);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.tnv-schol-card__amount {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--ink-900);
}

.tnv-schol-card__period {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--lime-deep);
}

.tnv-schol-card__value p {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
}

.tnv-schol-card__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tnv-schol-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.45;
}

.tnv-schol-card__list i {
  color: var(--lime-deep);
  margin-top: 4px;
  flex: none;
}

.tnv-schol-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border-200);
  padding-top: 16px;
}

.tnv-schol-card__footer span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--lime-deep);
  text-transform: uppercase;
}

.tnv-schol-card__footer i {
  color: var(--lime-deep);
}

.tnv-prizes-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--lime-btn-text);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.tnv-prizes-note__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tnv-prizes-note__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--lime-bright);
  color: var(--lime-btn-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.tnv-prizes-note__left h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-text);
  margin: 0 0 4px;
}

.tnv-prizes-note__left p {
  font-size: 13px;
  color: var(--dark-muted);
  margin: 0;
}

.tnv-prizes-note .tnv-btn {
  padding: 8px 24px;
  font-size: 14px;
}

/* ---------------- Regulament ---------------- */

.tnv-rules {
  padding: 96px 24px;
  background: var(--white);
}

.tnv-rules__header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.tnv-rules__header h2 {
  font-size: 36px;
  font-weight: 900;
}

.tnv-rules__header p {
  font-size: 15px;
  color: var(--ink-700);
}

.tnv-accordion {
  max-width: 952px;
  margin: 0 auto;
  background: var(--surface-100);
  border: 1px solid var(--border-200);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
  padding: 8px 24px;
}

.tnv-accordion-item {
  padding: 20px 0;
}

.tnv-accordion-item__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
}

.tnv-accordion-item__badge {
  flex: none;
  background: none;
  color: var(--ink-700);
  font-weight: 400;
  font-size: 16px;
}

.tnv-accordion-item__title {
  flex: 1;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
}

.tnv-accordion-item__body {
  padding: 8px 0 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
}

/* ---------------- Sponsori si parteneri ---------------- */

.tnv-partners {
  padding: 0 24px 96px;
  background: var(--white);
}

.tnv-partners__inner {
  max-width: 952px;
  margin: 0 auto;
}

.tnv-partners__group {
  margin-bottom: 32px;
}

.tnv-partners__group:last-child {
  margin-bottom: 0;
}

.tnv-partners__group-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  text-align: center;
  margin: 0 0 20px;
}

.tnv-partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tnv-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  height: 96px;
  padding: 16px 32px;
  background: var(--surface-100);
  border: 1px solid var(--border-200);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
  text-decoration: none;
}

.tnv-partner-card img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.tnv-partner-card--plain {
  background: none;
  border: none;
  box-shadow: none;
}

.tnv-partner-card__url {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-700);
  transition: color 0.2s ease;
}

.tnv-partner-card--plain:hover .tnv-partner-card__url {
  color: var(--lime-mid);
}

/* ---------------- Contact / Inscriere ---------------- */

.tnv-contact {
  position: relative;
  background: var(--dark-900);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 96px 24px;
  overflow: hidden;
}

.tnv-contact__glow {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: var(--lime-bright);
  opacity: 0.16;
  filter: blur(90px);
  pointer-events: none;
}

.tnv-contact__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.tnv-contact__badge {
  display: inline-flex;
  background: var(--dark-700);
  border: 1px solid var(--lime-bright);
  color: var(--lime-bright);
  border-radius: 9999px;
  padding: 4px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.tnv-contact__inner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-text);
  margin: 0 0 24px;
}

.tnv-contact__lead {
  max-width: 576px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--dark-muted);
}

.tnv-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  text-align: left;
}

.tnv-contact-card {
  background: var(--dark-800);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 24px;
}

.tnv-contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--dark-700);
  color: var(--lime-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 16px;
}

.tnv-contact-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--dark-muted);
  text-transform: uppercase;
  margin: 0 0 4px;
}

.tnv-contact-card__value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-text);
  text-decoration: none;
  display: inline-block;
}

.tnv-contact-card__value--address {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
}

.tnv-contact .tnv-btn--primary {
  box-shadow: 0 12px 28px rgba(198, 226, 48, 0.3);
}

.tnv-contact__alt {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--dark-muted);
}

.tnv-contact__alt a {
  color: var(--lime-bright);
  text-decoration: none;
  font-weight: 600;
}

.tnv-contact__alt a:hover {
  text-decoration: underline;
}

.tnv-contact__alt-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tnv-contact__alt-social a {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: var(--dark-800);
  border: 1px solid var(--dark-border);
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.tnv-contact__alt-social a:hover {
  color: var(--lime-bright);
  text-decoration: none;
}

/* ---------------- Footer ---------------- */

.tnv-footer {
  background: var(--dark-950);
  padding: 64px 24px;
  text-align: center;
}

.tnv-footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.tnv-footer__logo {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.tnv-footer__logo img {
  height: 48px;
}

.tnv-footer h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-text);
  margin: 0 0 8px;
}

.tnv-footer__badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--lime-bright);
  text-transform: uppercase;
  margin: 0 0 24px;
}

.tnv-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.tnv-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--dark-800);
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
}

.tnv-footer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: #c6c9ae;
  margin-bottom: 24px;
}

.tnv-footer__divider {
  width: 320px;
  max-width: 100%;
  height: 1px;
  background: var(--dark-border);
  margin: 0 auto 24px;
}

.tnv-footer__copy {
  font-size: 13px;
  color: var(--dark-muted);
  margin: 0;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 992px) {
  .tnv-header__inner {
    padding: 0 16px;
    gap: 12px;
  }

  .tnv-header__actions {
    gap: 8px;
  }

  .tnv-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--border-200);
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
    display: none;
  }

  .tnv-nav.is-open {
    display: flex;
  }

  .tnv-nav a {
    padding: 10px 0;
    width: 100%;
  }

  .tnv-nav-toggle {
    display: block;
  }

  .tnv-social-mini {
    display: none;
  }

  .tnv-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tnv-about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tnv-scholarships {
    grid-template-columns: 1fr;
  }

  .tnv-contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tnv-header__logo img {
    height: 44px;
  }

  .tnv-phone-cta {
    padding: 8px 12px;
    font-size: 11px;
    gap: 6px;
  }

  .tnv-hero__content {
    padding: 64px 20px 56px;
  }

  .tnv-hero h1 {
    font-size: 38px;
  }

  .tnv-hero__subtitle {
    font-size: 18px;
  }

  .tnv-info-grid {
    grid-template-columns: 1fr;
  }

  .tnv-features {
    grid-template-columns: 1fr;
  }

  .tnv-schol-card {
    padding: 28px;
  }

  .tnv-frt {
    padding: 48px 20px;
  }

  .tnv-frt__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .tnv-frt__text {
    max-width: none;
  }

  .tnv-prizes-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .tnv-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .tnv-btn {
    justify-content: center;
  }
}
