/* ============================================
   Talent Recognition – Global Styles
   ============================================ */

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

:root {
  --primary: #084c4f;
  --accent: #258284;
  --accent-hover: #1a6e70;
  --cyan: #8ee8e8;
  --body-text: #2a3a3b;
  --muted: #5a7070;
  --light-bg: #f6f8f7;
  --panel-bg: #eef4f4;
  --border: #d0e0e0;
  --border-light: #c8d8d8;
  --input-bg: #fff;
  --font-heading: "Cormorant Garant", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* --- Utility --- */
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label--light { color: var(--cyan); }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  z-index: 100;
  box-shadow: 0 1px 0 #e0eaea;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(8,76,79,0.10); }
.nav__logo { height: 50px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 20px;
  border: none;
  background: none;
  transition: color 0.2s;
  position: relative;
}
.nav__link:hover, .nav__link--active { color: var(--accent); }
.nav__phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-left: 16px;
  white-space: nowrap;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown__toggle { display: flex; align-items: center; gap: 6px; }
.dropdown__arrow { font-size: 10px; transition: transform 0.2s; }
.dropdown:hover .dropdown__arrow { transform: rotate(180deg); }
.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(8,76,79,0.08);
  box-shadow: 0 8px 32px rgba(8,76,79,0.15);
  border-radius: 4px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
}
.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: none;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown__item:hover { background: var(--panel-bg); color: var(--accent); }

/* ============================================
   Hero Sections
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 68px;
  display: flex;
  align-items: center;
}
.hero--full { height: 100vh; min-height: 600px; }
.hero--70vh { height: 70vh; min-height: 450px; }
.hero--60vh { height: 60vh; min-height: 400px; }

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--home .hero__bg { object-position: center top; }
.hero--about .hero__bg,
.hero--contact .hero__bg { object-position: center center; }

.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero--home .hero__overlay {
  background: linear-gradient(90deg, rgba(8,76,79,0.78) 0%, rgba(8,76,79,0.25) 60%, transparent 100%);
}
.hero--about .hero__overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(8,76,79,0.85) 100%);
}
.hero--contact .hero__overlay {
  background: linear-gradient(90deg, rgba(8,76,79,0.72) 0%, rgba(8,76,79,0.2) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  width: 100%;
}
.hero--home .hero__content { max-width: 640px; }
.hero--contact .hero__content { max-width: none; }
.hero--about .hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: none;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero--home .hero__title { font-size: clamp(3rem, 5.5vw, 4.5rem); }
.hero--about .hero__title { font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1; margin: 0; }
.hero--contact .hero__title { font-size: clamp(2rem, 3.5vw, 3.2rem); }

.hero__body {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero--contact .hero__body { font-size: 23px; color: rgba(255,255,255,0.82); }

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.34vw, 1.82rem);
  color: #fff;
  text-align: right;
  max-width: 480px;
  line-height: 2.6;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 16px 40px;
  font-size: 15px;
}
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary-lg { font-size: 18px; padding: 18px 40px; }
.btn--secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 40px;
  font-size: 15px;
}
.btn--secondary:hover { background: rgba(255,255,255,0.2); }
.btn--dark {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  font-size: 15px;
}
.btn--dark:hover { background: #063a3c; }
.btn--back {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
}
.btn--back:hover { background: #063a3c; }

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

/* ============================================
   Product Cards (Home)
   ============================================ */
.products {
  background: var(--primary);
  padding: 51px 5vw;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.product-card {
  padding: 36px 28px;
  border-top: 3px solid var(--accent);
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.product-card:nth-child(odd) { background: #0b6769; }
.product-card:nth-child(even) { background: #0a5c60; }
.product-card:hover {
  background: var(--accent);
  transform: translateY(-4px);
}
.product-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
}
.product-card__icon svg { width: 100%; height: 100%; fill: #fff; }
.product-card__label {
  font-size: 22px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.product-card__lead {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.product-card__sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(142,232,232,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   Core Insight Section (Home)
   ============================================ */
.core-insight {
  background: var(--light-bg);
  padding: 88px 5vw;
}
.core-insight__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5vw;
  max-width: 1100px;
  margin: 0 auto;
}
.core-insight__left { position: sticky; top: 100px; align-self: start; }
.core-insight__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 0;
}
.core-insight__accent {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 28px 0;
}
.core-insight__text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--body-text);
  margin-bottom: 28px;
}

/* ============================================
   About Us Page
   ============================================ */
.about-banner {
  background: var(--panel-bg);
  padding: 32px 5vw;
  border-bottom: 1px solid var(--border);
}
.about-banner__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-cards {
  background: var(--light-bg);
  padding: 48px 5vw;
}
.about-cards__inner { max-width: 1400px; margin: 0 auto; }
.about-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 24px;
}
.about-card__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}
.about-card__title span { color: var(--accent); }
.about-card__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
}
.about-card__body p { margin-bottom: 16px; }
.about-card__body p:last-child { margin-bottom: 0; }

.about-cta { text-align: center; padding: 24px 0; }

/* Partnerships bar */
.partnerships {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.partnerships__title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.partnerships__title span { color: var(--accent); }
.partnerships__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
}

/* ============================================
   Contact Page
   ============================================ */
.contact {
  background: var(--light-bg);
  padding: 72px 5vw;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  max-width: 1100px;
  margin: 0 auto;
}
.contact__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}
.contact__info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 4px;
}
.contact__info-label:first-of-type { margin-top: 0; }
.contact__info-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}
.contact__info-value a { transition: color 0.2s; }
.contact__info-value a:hover { color: var(--accent); }

/* Form */
.form__group { margin-bottom: 18px; }
.form__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 6px;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: var(--input-bg);
  transition: border-color 0.2s;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form__textarea { resize: vertical; }

/* ============================================
   Placeholder / Coming Soon Pages
   ============================================ */
.placeholder {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5vw 60px;
  margin-top: 68px;
}
.placeholder__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.placeholder__body {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ============================================
   Modal / Demo
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,31,32,0.85);
  justify-content: center;
  align-items: center;
}
.modal-overlay.active { display: flex; }

.modal {
  background: #fff;
  border-radius: 6px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: #888;
  cursor: pointer;
}
.modal__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.modal__body {
  font-size: 15px;
  color: #5a6060;
  line-height: 1.7;
  margin-bottom: 28px;
}
.modal__demo {
  background: #f0f5f5;
  border: 2px dashed #a0c0c0;
  border-radius: 4px;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.modal__demo-icon { font-size: 36px; margin-bottom: 8px; color: var(--accent); }
.modal__demo-label { font-size: 15px; font-weight: 600; color: var(--primary); }
.modal__demo-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.modal__note { font-size: 12px; color: #8a9090; text-align: center; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--primary);
  padding: 40px 5vw 20px;
  color: #fff;
}
.footer__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 2vw;
  max-width: 1832px;
  margin: 0 auto;
}
.footer__logo { height: 57px; width: auto; mix-blend-mode: screen; margin-bottom: 20px; }
.footer__tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 20px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.2s;
}
.footer__social:hover { background: rgba(255,255,255,0.15); }

.footer__legal-title {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin: 30px 0;
}
.footer__legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.footer__legal-link {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__legal-link:hover { color: var(--cyan); }

.footer__compliance {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .about-cards__grid { grid-template-columns: 1fr; }
  .core-insight__grid { grid-template-columns: 1fr; }
  .core-insight__left { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero--about .hero__content { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero__subtitle { text-align: left; }
  .partnerships { flex-direction: column; }
  .proof-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav__link { padding: 8px 12px; font-size: 13px; }
  .products__grid { grid-template-columns: 1fr; }
  .footer__legal-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 4px; }
}
