/* === THEME: Light Premium — Option 1 Design System === */
/* Shared across all pages */

:root {
  --color-primary: #7C5CFC;
  --color-primary-light: #9B82FD;
  --color-primary-dark: #6344E0;
  --color-primary-glow: rgba(124, 92, 252, 0.12);
  --color-primary-subtle: rgba(124, 92, 252, 0.05);
  --color-accent: #9B82FD;
  --color-accent-dark: #7C5CFC;
  --color-accent-glow: rgba(124, 92, 252, 0.15);
  --color-success: #34D399;
  --color-danger: #FF6B6B;
  --color-ink: #1A1A1F;
  --color-ink-secondary: #555560;
  --color-ink-muted: #8E8E99;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F6F6F8;
  --color-surface-warm: #F9F9FB;
  --color-surface-elevated: #FFFFFF;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-light: rgba(0, 0, 0, 0.04);
  --color-header-bg: rgba(255, 255, 255, 0.88);
  --color-header-bg-scroll: rgba(255, 255, 255, 0.96);
  --color-footer-bg: #1A1A1F;
  --color-footer-text: #F5F5F7;
  --color-dark-bg: #1A1A1F;
  --color-dark-text: #F5F5F7;
  --color-dark-muted: rgba(255,255,255,0.6);
}

/* === DARK MODE === */
[data-theme="dark"] {
  --color-ink: #F5F5F7;
  --color-ink-secondary: #A1A1A6;
  --color-ink-muted: #636366;
  --color-surface: #1C1C1E;
  --color-surface-alt: #161618;
  --color-surface-warm: #1A1A1C;
  --color-surface-elevated: #2C2C2E;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.04);
  --color-header-bg: rgba(28, 28, 30, 0.88);
  --color-header-bg-scroll: rgba(28, 28, 30, 0.96);
}
[data-theme="dark"] .nav__logo-svg { color: #fff; }
[data-theme="dark"] .card { background: rgba(44,44,46,0.5); border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .card:hover { border-color: rgba(124,92,252,0.2); box-shadow: 0 0 30px rgba(124,92,252,0.08); }
[data-theme="dark"] .benefit { border-color: transparent; }
[data-theme="dark"] .benefit:hover { background: rgba(124,92,252,0.04); border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .btn--secondary { border-color: rgba(255,255,255,0.12); }
[data-theme="dark"] .btn--secondary:hover { border-color: rgba(124,92,252,0.3); }
[data-theme="dark"] .faq__item { background: rgba(44,44,46,0.3); border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .testimonial { background: rgba(44,44,46,0.4); border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .mobile-cta { background: #1C1C1E; border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .footer { border-color: rgba(255,255,255,0.06); }

/* === TYPOGRAPHY — Montserrat partout === */
body { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; }
h1, h2, h3, h4, h5, h6, p, li, a, span, div { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif; }
h1, h2, h3, h4 { letter-spacing: -0.03em; }
h1 { font-weight: 200; font-size: clamp(2.5rem, 2rem + 2.5vw, 4.5rem); line-height: 1.08; }
h2 { font-weight: 200; font-size: clamp(1.75rem, 1.4rem + 1.5vw, 3rem); }
h3 { font-weight: 300; font-size: clamp(1.1rem, 1rem + 0.3vw, 1.35rem); }
p { font-weight: 300; font-size: 16px; line-height: 1.7; }
.section__overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.section__overline--gold { color: var(--color-primary); }
.section__subtitle { font-size: 17px; }

/* === NAV — Floating pill centered === */
.nav {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  display: flex; justify-content: center;
  padding-top: 12px;
}
.nav--scrolled { background: transparent !important; box-shadow: none !important; }
.nav__inner {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 100px !important;
  padding: 8px 8px 8px 24px !important;
  max-width: fit-content !important;
  gap: 0.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
[data-theme="dark"] .nav__inner {
  background: rgba(30,30,34,0.95) !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav__link { font-size: 15px; font-weight: 400; letter-spacing: 0.01em; padding: 10px 16px; }
.nav__link::after { display: none; }
.nav__logo-icon { display: none; }
.nav__logo-svg { display: flex; color: #1A1A1F; }
.nav__logo-svg svg { height: 24px; width: auto; }
.nav__logo-text { display: none; }
.nav__cta { background: var(--color-primary); color: #fff !important; border-radius: 100px; font-size: 14px; font-weight: 500; padding: 10px 22px; }
.nav__cta:hover { background: #6B4AE0; color: #fff !important; box-shadow: 0 4px 20px rgba(124,92,252,0.2); }
[data-theme="dark"] .nav__cta { color: #fff !important; }

/* === NAV MOBILE — hide CTA, show hamburger, fix menu layout === */
@media (max-width: 1023px) {
  .nav { flex-wrap: wrap; }
  .nav__inner { max-width: 95vw !important; padding: 8px 12px 8px 16px !important; }
  .nav__cta { display: none !important; }
  .nav__links { display: none !important; }
  .nav__toggle { display: flex !important; }
  .nav__mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 100;
  }
}

/* Nav dropdown for multi-page */
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.nav__dropdown-toggle svg {
  transition: transform 0.2s;
}
.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 12px; padding: 8px 0; min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1); z-index: 100;
}
/* Invisible bridge to prevent gap hover loss */
.nav__dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
  display: none;
}
.nav__dropdown:hover::after { display: block; }
[data-theme="dark"] .nav__dropdown-menu {
  background: #2C2C2E; border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-item {
  display: block; padding: 10px 20px; font-size: 14px; font-weight: 400;
  color: var(--color-ink); text-decoration: none; transition: all 0.2s;
}
.nav__dropdown-item:hover { background: rgba(124,92,252,0.04); color: var(--color-primary); }
.nav__dropdown-item small { display: block; font-size: 12px; color: var(--color-ink-muted); font-weight: 300; margin-top: 2px; }

/* === BUTTONS === */
.btn { border-radius: 100px; padding: 14px 28px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s; }
.btn--primary { background: var(--color-primary); color: #fff !important; }
.btn--primary:hover { background: #6B4AE0; color: #fff !important; transform: translateY(-1px); box-shadow: 0 8px 25px rgba(124,92,252,0.2); }
[data-theme="dark"] .btn--primary { color: #fff !important; }
.btn--secondary { border: 1px solid rgba(0,0,0,0.1); color: var(--color-ink); font-weight: 300; }
.btn--secondary:hover { border-color: rgba(124,92,252,0.3); color: var(--color-primary); }
.btn--accent { background: var(--color-primary); color: #fff !important; }
.btn--accent:hover { background: #6B4AE0; color: #fff !important; box-shadow: 0 4px 20px rgba(124,92,252,0.2); }
.btn--outline {
  border: 1px solid var(--color-border); background: transparent;
  color: var(--color-ink); font-weight: 400; font-size: 15px;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
}
.btn--outline:hover { border-color: rgba(124,92,252,0.3); color: var(--color-primary); }
.btn--outline:hover svg { transform: translateX(3px); }
.btn--outline svg { transition: transform 0.3s; }

/* === CARDS === */
.card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; border-top: none; }
.card--accent { border-top: none; }
.card:hover { box-shadow: 0 8px 30px rgba(124,92,252,0.08); border-color: rgba(124,92,252,0.15); transform: translateY(-3px); }
.card__icon--accent { background: rgba(124,92,252,0.06); color: var(--color-primary); }
.card__badge--accent { background: rgba(124,92,252,0.08); color: var(--color-primary); }
.card__title { font-weight: 400; }
.card__text { font-size: 15px; font-weight: 300; }
.card__list li { font-size: 14px; font-weight: 300; }

/* === BENEFITS === */
.benefit { padding: 1.5rem; border-radius: 14px; border: 1px solid transparent; }
.benefit:hover { background: rgba(124,92,252,0.03); border-color: rgba(0,0,0,0.06); }
.benefit__icon { background: rgba(124,92,252,0.06); }
.benefit__title { font-weight: 400; }
.benefit__text { font-size: 15px; font-weight: 300; }

/* === FAQ === */
.faq__item { border-radius: 12px; }
.faq__item[open] { border-color: rgba(124,92,252,0.2); box-shadow: none; }
.faq__question { font-weight: 400; font-size: 16px; }
.faq__answer p { font-size: 15px; font-weight: 300; }

/* === FOOTER === */
.footer { border-top: 1px solid rgba(0,0,0,0.06); }
.footer__heading { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.15em; font-weight: 500; }
.footer__links a:hover { color: var(--color-primary); }
.footer__social a:hover { background: var(--color-primary); border-color: var(--color-primary); }
.footer__logo-icon { display: none; }
.footer__logo-svg { display: inline-flex; color: #fff; }
.footer__logo-svg svg { height: 28px; width: auto; }
.footer__logo-text { display: none; }

/* === THEME TOGGLE === */
.theme-toggle { border: none; width: 36px; height: 36px; }
.theme-toggle:hover { background: rgba(124,92,252,0.06); }

/* === GRADIENT SEPARATORS === */
.section + .section::before {
  content: '';
  display: block; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.08), transparent);
}

.mobile-cta { border-top: 1px solid rgba(0,0,0,0.06); }

/* === PROOF === */
.proof__number { font-weight: 100; }
.proof__suffix { color: var(--color-primary); font-weight: 200; }
.proof__label { font-size: 14px; font-weight: 300; }

/* === ANIMATIONS === */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.animate-float { animation: floatSlow 4s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse 3s ease-in-out infinite; }
.card__icon { transition: transform 0.4s ease; }
.card:hover .card__icon { transform: scale(1.05); }
.benefit__icon { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.benefit:hover .benefit__icon { transform: scale(1.1); box-shadow: 0 0 20px rgba(124, 92, 252, 0.12); }

/* === PAGE HERO (shared across subpages) === */
.page-hero {
  padding: clamp(8rem, 10vw, 12rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--color-surface);
  text-align: center;
}
.page-hero__overline {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.page-hero__title {
  font-weight: 200; letter-spacing: -0.03em;
  font-size: clamp(2.25rem, 1.8rem + 2.5vw, 4rem); line-height: 1.1;
  margin-bottom: 1.25rem; max-width: 800px; margin-left: auto; margin-right: auto;
}
.page-hero__title strong, .page-hero__title em {
  font-weight: 600; font-style: normal; color: var(--color-primary);
}
.page-hero__subtitle {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--color-ink-secondary); max-width: 600px;
  margin: 0 auto 2rem;
}
.page-hero__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.page-hero__stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem;
}
.page-hero__stat { text-align: center; }
.page-hero__stat-value {
  font-size: 28px; font-weight: 600; color: var(--color-ink); line-height: 1; margin-bottom: 4px;
}
.page-hero__stat-label { font-size: 13px; font-weight: 300; color: var(--color-ink-muted); }
.page-hero__badges {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 14px; font-weight: 400; color: var(--color-ink-secondary);
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--color-border); background: var(--color-surface-alt);
}
[data-theme="dark"] .page-hero__badge { background: rgba(255,255,255,0.03); }

/* === PRICING CARDS === */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
@media (max-width: 639px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.pricing-card {
  background: var(--color-surface-elevated);
  border: 2px solid var(--color-border); border-radius: 16px;
  padding: 2rem; position: relative; overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.pricing-card:hover {
  border-color: rgba(124,92,252,0.15);
  box-shadow: 0 8px 30px rgba(124,92,252,0.06);
  transform: translateY(-3px);
}
.pricing-card--featured {
  border-color: rgba(124,92,252,0.3);
  box-shadow: 0 8px 30px rgba(124,92,252,0.08);
}
[data-theme="dark"] .pricing-card { background: rgba(44,44,46,0.5); border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .pricing-card--featured { border-color: rgba(124,92,252,0.3); }
[data-theme="dark"] .pricing-card:hover { border-color: rgba(124,92,252,0.25); }
.pricing-card__badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 6px;
  background: var(--color-primary); color: #fff; margin-bottom: 1rem;
}
.pricing-card__label {
  font-size: 12px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-ink-muted); margin-bottom: 0.5rem;
}
.pricing-card__name { font-size: 22px; font-weight: 500; margin-bottom: 0.5rem; }
.pricing-card__desc { font-size: 14px; font-weight: 300; color: var(--color-ink-secondary); margin-bottom: 1.5rem; }
.pricing-card__price {
  font-size: 32px; font-weight: 200; margin-bottom: 0.25rem;
}
.pricing-card__price small { font-size: 14px; font-weight: 300; color: var(--color-ink-muted); }
.pricing-card__duration { font-size: 13px; font-weight: 300; color: var(--color-ink-muted); margin-bottom: 1.5rem; }
.pricing-card__list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.pricing-card__list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 14px; font-weight: 300; color: var(--color-ink-secondary);
  padding: 6px 0;
}
.pricing-card__list li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-card__cta { width: 100%; text-align: center; justify-content: center; }

/* === STEP CARDS (methodology/programme) === */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem; counter-reset: step;
}
.step-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border); border-radius: 16px;
  padding: 2rem; position: relative; overflow: hidden;
  transition: all 0.3s ease; counter-increment: step;
}
.step-card:hover {
  border-color: rgba(124,92,252,0.15);
  box-shadow: 0 8px 30px rgba(124,92,252,0.05);
}
[data-theme="dark"] .step-card { background: rgba(44,44,46,0.5); border-color: rgba(255,255,255,0.06); }
.step-card__number {
  font-size: 64px; font-weight: 100; color: rgba(0,0,0,0.04);
  position: absolute; top: 0.5rem; right: 1rem; line-height: 1;
}
[data-theme="dark"] .step-card__number { color: rgba(255,255,255,0.03); }
.step-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(124,92,252,0.06); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.step-card__title { font-size: 17px; font-weight: 500; margin-bottom: 0.5rem; }
.step-card__text { font-size: 14px; font-weight: 300; color: var(--color-ink-secondary); line-height: 1.6; }

/* === COMPARISON TABLE === */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border); border-radius: 16px;
  overflow: hidden; margin-top: 2rem;
}
[data-theme="dark"] .compare-table { background: rgba(44,44,46,0.3); border-color: rgba(255,255,255,0.06); }
.compare-table th {
  font-size: 14px; font-weight: 500; padding: 16px 20px;
  border-bottom: 1px solid var(--color-border); text-align: left;
}
.compare-table td {
  font-size: 14px; font-weight: 300; padding: 12px 20px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-ink-secondary);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--color-primary); font-weight: 500; }

/* === TESTIMONIAL SLIDER (subpages) === */
.testi-slider { position: relative; overflow: hidden; }
.testi-slider__track {
  display: flex; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.testi-slider__item {
  flex: 0 0 100%; padding: 0 1rem; box-sizing: border-box;
}
.testi-slider .testi-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border); border-radius: 16px;
  padding: 2rem; max-width: 640px; margin: 0 auto;
}
[data-theme="dark"] .testi-card { background: rgba(44,44,46,0.4); border-color: rgba(255,255,255,0.06); }
.testi-card__quote { font-size: 16px; font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testi-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(124,92,252,0.08); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
}
.testi-card__name { font-size: 14px; font-weight: 500; }
.testi-card__role { font-size: 13px; font-weight: 300; color: var(--color-ink-muted); }
.testi-card__badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 4px; margin-top: 4px;
  background: rgba(124,92,252,0.08); color: var(--color-primary);
}
.testi-slider__nav {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem;
}
.testi-slider__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--color-border); background: transparent;
  color: var(--color-ink-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.testi-slider__arrow:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* === FORM STYLES === */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 14px; font-weight: 400;
  margin-bottom: 0.5rem; color: var(--color-ink);
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--color-border); background: var(--color-surface);
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--color-ink); transition: border-color 0.3s;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124,92,252,0.1);
}
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: rgba(44,44,46,0.5); border-color: rgba(255,255,255,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }

/* === LIVRABLE / DELIVERABLE CARDS === */
.deliverables-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 1.5rem;
}
.deliverable {
  text-align: center; padding: 1.5rem;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border); border-radius: 14px;
  transition: all 0.3s;
}
.deliverable:hover { border-color: rgba(124,92,252,0.15); }
[data-theme="dark"] .deliverable { background: rgba(44,44,46,0.3); border-color: rgba(255,255,255,0.06); }
.deliverable__value { font-size: 28px; font-weight: 200; color: var(--color-primary); margin-bottom: 4px; }
.deliverable__label { font-size: 13px; font-weight: 400; color: var(--color-ink-secondary); }

/* === CTA FINAL SECTION (shared) === */
.cta-final { background: linear-gradient(135deg, rgba(124,92,252,0.04) 0%, rgba(124,92,252,0.01) 100%); }
.cta-final__title { font-weight: 200; color: var(--color-ink); }
.cta-final__subtitle { color: var(--color-ink-secondary); }
.cta-final .btn--primary { background: var(--color-primary); color: #fff !important; }
.cta-final .btn--primary:hover { background: #6B4AE0; box-shadow: 0 8px 25px rgba(124,92,252,0.2); }
[data-theme="dark"] .cta-final { background: #161618; }
[data-theme="dark"] .cta-final__title { color: #F5F5F7; }
[data-theme="dark"] .cta-final__subtitle { color: #A1A1A6; }

/* === CONTACT CARDS === */
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-bottom: 3rem;
}
.contact-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border); border-radius: 16px;
  transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(124,92,252,0.15); transform: translateY(-2px); }
[data-theme="dark"] .contact-card { background: rgba(44,44,46,0.4); border-color: rgba(255,255,255,0.06); }
.contact-card__icon {
  width: 48px; height: 48px; border-radius: 12px; margin: 0 auto 1rem;
  background: rgba(124,92,252,0.06); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.contact-card__title { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.contact-card__text { font-size: 14px; font-weight: 300; color: var(--color-ink-secondary); }
.contact-card__text a { color: var(--color-primary); text-decoration: none; }
.contact-card__text a:hover { text-decoration: underline; }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.team-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border); border-radius: 16px;
  padding: 2.5rem; transition: all 0.3s;
}
.team-card:hover { border-color: rgba(124,92,252,0.15); box-shadow: 0 8px 30px rgba(124,92,252,0.06); }
[data-theme="dark"] .team-card { background: rgba(44,44,46,0.4); border-color: rgba(255,255,255,0.06); }
.team-card__avatar {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 1.25rem;
  background: rgba(124,92,252,0.08); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 600;
}
.team-card__name { font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.team-card__role { font-size: 14px; font-weight: 300; color: var(--color-primary); margin-bottom: 1.25rem; }
.team-card__section { margin-bottom: 1rem; }
.team-card__section-title {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-ink-muted); margin-bottom: 0.5rem;
}
.team-card__list { list-style: none; padding: 0; margin: 0; }
.team-card__list li {
  font-size: 14px; font-weight: 300; color: var(--color-ink-secondary);
  padding: 3px 0; display: flex; align-items: center; gap: 0.5rem;
}

/* === VALUES === */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }
.value-card {
  padding: 2rem; border-radius: 14px; border: 1px solid var(--color-border);
  background: var(--color-surface-elevated); transition: all 0.3s;
}
.value-card:hover { border-color: rgba(124,92,252,0.15); background: rgba(124,92,252,0.02); }
[data-theme="dark"] .value-card { background: rgba(44,44,46,0.3); border-color: rgba(255,255,255,0.06); }
.value-card__icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 1rem;
  background: rgba(124,92,252,0.06); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.value-card__title { font-size: 17px; font-weight: 500; margin-bottom: 0.5rem; }
.value-card__text { font-size: 14px; font-weight: 300; color: var(--color-ink-secondary); line-height: 1.6; }

/* === PROGRAMME / SCHEDULE === */
.programme-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.programme-block {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border); border-radius: 16px;
  padding: 2rem; position: relative; overflow: hidden;
}
[data-theme="dark"] .programme-block { background: rgba(44,44,46,0.4); border-color: rgba(255,255,255,0.06); }
.programme-block__badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 6px;
  background: rgba(124,92,252,0.08); color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.programme-block__time { font-size: 13px; font-weight: 400; color: var(--color-ink-muted); margin-bottom: 1rem; }
.programme-block__title { font-size: 18px; font-weight: 500; margin-bottom: 1rem; }
.programme-block__list { list-style: none; padding: 0; margin: 0; }
.programme-block__list li {
  font-size: 14px; font-weight: 300; color: var(--color-ink-secondary);
  padding: 6px 0; display: flex; align-items: flex-start; gap: 0.5rem;
}
.programme-block__list li svg { flex-shrink: 0; margin-top: 2px; }

/* === SIMULATOR === */
.sim-progress {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-bottom: 2rem;
}
.sim-progress__step {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--color-border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: var(--color-ink-muted);
  transition: all 0.3s;
}
.sim-progress__step.is-active {
  border-color: var(--color-primary); background: var(--color-primary); color: #fff;
}
.sim-progress__step.is-done {
  border-color: var(--color-primary); background: rgba(124,92,252,0.08); color: var(--color-primary);
}
.sim-progress__line { width: 40px; height: 2px; background: var(--color-border); }
.sim-progress__line.is-done { background: var(--color-primary); }
.sim-step { display: none; }
.sim-step.is-active { display: block; }
.sim-results {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border); border-radius: 16px; padding: 2.5rem;
}
[data-theme="dark"] .sim-results { background: rgba(44,44,46,0.4); border-color: rgba(255,255,255,0.06); }
.sim-results__hero-value {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem); font-weight: 200;
  color: var(--color-primary); margin-bottom: 0.5rem;
}
