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

:root {
  --bg: #ffffff;
  --bg-dark: #0f1016;
  --ink: #14151f;
  --ink-soft: #5b5d6e;
  --ink-faint: #9799aa;

  --accent: #5b4fe9;
  --accent-2: #8e7cff;
  --accent-soft: #eeecff;
  --teal: #17c3a2;
  --teal-soft: #e4faf4;
  --coral: #ff6f61;
  --coral-soft: #ffece9;

  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 10px 30px rgba(35, 30, 80, 0.08);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-display: "Poppins", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 10% 5%, rgba(91, 79, 233, 0.08), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(23, 195, 162, 0.07), transparent 40%),
    radial-gradient(circle at 50% 65%, rgba(255, 111, 97, 0.04), transparent 45%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

ul {
  list-style: none;
}

/* Layout Utilities */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

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

.mt-40 {
  margin-top: 40px;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Headings & Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Scroll Animation Reveal Class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(91, 79, 233, 0.25);
}

.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 124, 255, 0.35);
}

.btn-outline {
  border: 1px solid var(--ink-faint);
  color: var(--ink);
}

.btn-outline:hover {
  background: rgba(20, 21, 31, 0.05);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--accent);
  font-weight: 600;
}

.btn-ghost:hover {
  opacity: 0.85;
}

/* Sticky Header & Navbar */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
}

.site-header.is-shrunk {
  top: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.is-active {
  color: var(--accent);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Nav Toggle & Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 96px;
  left: 5%;
  width: 90%;
  z-index: 999;
  border-radius: var(--radius-md);
  padding: 24px;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-link:hover, .mobile-link.is-active {
  color: var(--accent);
  padding-left: 8px;
}

.mobile-cta {
  margin-top: 10px;
}

/* Hero Section */
.hero {
  padding-top: 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-heading {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.accent-word {
  color: var(--accent);
}

.hero-sub {
  font-size: 17.5px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: 4px solid #ffffff;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.chip-1 {
  top: 10%;
  left: -40px;
}

.chip-2 {
  bottom: 12%;
  right: -20px;
}

.chip-icon {
  font-size: 20px;
}

.chip-value {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.chip-label {
  font-size: 11.5px;
  color: var(--ink-soft);
}

/* Page Hero */
.page-hero {
  padding-top: 150px;
  padding-bottom: 50px;
  text-align: center;
}

.page-hero .section-title {
  font-size: 42px;
  letter-spacing: -1px;
}

.page-hero .section-sub {
  margin: 0 auto;
}

/* Stats Strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-block {
  text-align: center;
  padding: 12px 0;
}

.stat-block .num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
}

.stat-block .lbl {
  font-size: 14px;
  color: var(--ink-soft);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-card {
  padding: 24px;
}

.h-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.h-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.h-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Partner & Site Grid Cards */
.site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.site-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.site-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(35, 30, 80, 0.12);
}

.site-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.site-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* Level Specific Badge Styling */
.badge-diamond { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.badge-gold { background: linear-gradient(135deg, #d97706, #fbbf24); }
.badge-silver { background: linear-gradient(135deg, #64748b, #cbd5e1); color: var(--ink); }
.badge-bronze { background: linear-gradient(135deg, #b45309, #d97706); }

.site-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.site-card-name {
  font-size: 19px;
  margin-bottom: 8px;
}

.site-card-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.site-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 13px;
  color: var(--ink-soft);
}

.site-card-link {
  color: var(--accent);
  font-weight: 600;
}

.site-card-link:hover {
  text-decoration: underline;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--ink-faint);
  color: var(--ink-soft);
  transition: all 0.2s ease;
  background: var(--bg);
}

.filter-chip:hover, .filter-chip.is-active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: scale(1.02);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  padding: 32px 24px;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-name {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-title {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-tag {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Partner Levels Grid */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.level-card {
  padding: 28px 20px;
  text-align: center;
}

.level-card:hover {
  transform: translateY(-4px);
}

.level-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.level-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.level-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 12px 0;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question .arrow {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.faq-item.is-active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
  opacity: 1;
}

.faq-item.is-active .faq-question .arrow {
  transform: rotate(45deg);
}

/* CTA Banner */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  gap: 32px;
}

.cta-banner h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* Profile Detail Layout */
.profile-banner-sec {
  padding-top: 150px;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.profile-header-wrap {
  position: relative;
  z-index: 2;
}

.profile-meta-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.profile-avatar-frame {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.profile-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-title-area {
  flex: 1;
}

.profile-title-area .site-card-tag {
  position: static;
  display: inline-block;
  margin-bottom: 8px;
}

.profile-name {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 4px;
}

.profile-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

.profile-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-top: 40px;
}

.profile-card {
  padding: 32px;
}

.profile-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 8px;
}

.profile-bio {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.profile-socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.social-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.social-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.social-button .icon {
  font-size: 24px;
}

.platform-name {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.action-text {
  font-size: 11px;
  color: var(--ink-soft);
}

/* Profile Statistics Right */
.profile-stats-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.02);
}

.stat-icon {
  font-size: 24px;
}

.stat-lbl {
  font-size: 12px;
  color: var(--ink-soft);
}

.stat-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* Legal Pages Styling */
.legal-page {
  padding-top: 140px;
}

.breadcrumb {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--ink-faint);
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.legal-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
}

.legal-nav-link {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
}

.legal-nav-link:hover, .legal-nav-link.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.legal-content {
  padding: 40px;
}

.legal-content h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p, .legal-content li {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
  list-style: disc;
}

.legal-note {
  margin-top: 32px;
  padding: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: var(--radius-sm);
}

/* Multistep Form (basvuru.html) */
.stepper-wrap {
  padding-top: 130px;
}

.stepper-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
}

.stepper-track::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink-faint);
  z-index: 1;
  opacity: 0.2;
}

.step-dot {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--ink-faint);
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin: 0 auto 8px;
  transition: all 0.25s ease;
}

.step-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-faint);
  transition: all 0.25s ease;
}

.step-dot.is-active .step-circle {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(91, 79, 233, 0.4);
}

.step-dot.is-active .step-label {
  color: var(--accent);
}

.form-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-step h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.field-group label .req {
  color: var(--coral);
}

.field-group input, .field-group select, .field-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--ink-faint);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: all 0.2s ease;
}

.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field-group textarea {
  height: 120px;
  resize: vertical;
}

.input-error {
  border-color: var(--coral) !important;
  background: rgba(255, 111, 97, 0.02) !important;
}

.error-message {
  font-size: 12px;
  color: var(--coral);
  font-weight: 500;
  margin-top: 2px;
}

.choice-row {
  display: flex;
  gap: 16px;
}

.choice-pill {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.choice-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--ink-faint);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.choice-pill input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.agreement-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.agreement-box input {
  margin-top: 4px;
}

.agreement-box a {
  color: var(--accent);
  font-weight: 600;
}

.agreement-box a:hover {
  text-decoration: underline;
}

.review-list {
  background: rgba(0,0,0,0.015);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px dashed var(--ink-faint);
}

.review-list h4 {
  font-size: 15px;
  margin-bottom: 16px;
}

.review-dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  padding-bottom: 8px;
  font-size: 13px;
}

.review-row dt {
  font-weight: 600;
  color: var(--ink);
}

.review-row dd {
  color: var(--ink-soft);
  max-width: 60%;
  text-align: right;
  word-break: break-all;
}

/* Honeypot field styling */
.hp-field {
  display: none !important;
}

/* Thanks page */
.thanks-page {
  padding: 120px 24px 80px;
}

.thanks-card {
  max-width: 550px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
}

.thanks-icon {
  width: 64px;
  height: 64px;
  background: var(--teal);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

/* No results on List */
.no-results {
  padding: 48px;
  text-align: center;
  color: var(--ink-soft);
  grid-column: span 3;
}

/* Site Footer */
.site-footer {
  margin-top: 80px;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.site-footer .logo {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.social-link:hover {
  background: var(--accent);
  color: #ffffff;
}

.footer-links-col h4 {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* responsive states */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-image-frame {
    max-width: 500px;
    margin: 0 auto;
  }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 30px;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-grid, .partner-grid, .team-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .levels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .profile-content-grid, .legal-layout {
    grid-template-columns: 1fr;
  }
  .profile-meta-main {
    flex-direction: column;
    text-align: center;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-card {
    padding: 24px;
  }
  .choice-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .levels-grid {
    grid-template-columns: 1fr;
  }
  .stepper-track {
    display: none; /* Hide stepper dots on very small screens to fit layout */
  }
}
