/* ==========================================================================
   MERAKI LANDING PAGE - STYLE SYSTEM
   Colors:
   - Primary Dark Green: #16412e
   - Card Medium Green: #24513d
   - Accent Light Green: #4c8f71
   - Bright Orange Accent: #fc9802
   - Dark Gray/Black: #0a0a0a
   - Off White: #f9f9f9
   ========================================================================== */

:root {
  --color-primary-green: #16412e;
  --color-card-green: #24513d;
  --color-accent-green: #4c8f71;
  --color-orange: #fc9802;
  --color-dark-bg: #0a0a0a;
  --color-offwhite: #f9f9f9;
  --color-white: #ffffff;
  --color-text-dark: #333333;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  
  --font-primary: 'Be Vietnam Pro', 'Plus Jakarta Sans', 'Sora', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Epilogue', sans-serif;
  
  --max-width: 1280px;
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography Helpers */
.text-dark {
  color: var(--color-text-dark) !important;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

/* Nav Tools & Language Switcher */
.nav-right-tools {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 3px 5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  font-family: var(--font-primary);
}

.lang-btn .flag-icon {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  display: block;
}

.lang-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.lang-btn.active {
  background: var(--color-orange);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(252, 152, 2, 0.35);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--color-dark-bg);
  padding-top: 120px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  max-width: 760px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 36px;
  border-left: 2px solid var(--color-orange);
  padding-left: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--transition-smooth);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 152, 2, 0.25);
}

.orange-indicator {
  width: 10px;
  height: 10px;
  background-color: var(--color-orange);
  border-radius: 50%;
  display: inline-block;
}

/* Marquee Bar */
.trusted-marquee-bar {
  position: relative;
  z-index: 3;
  width: 100%;
  background-color: var(--color-dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  padding: 0 30px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.marquee-viewport {
  width: 100%;
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.partner-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  filter: none;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION 2: WHAT TO EXPECT SECTION
   ========================================================================== */
.expect-section {
  background-color: var(--color-primary-green);
  padding: 120px 0;
}

.expect-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 820px;
}

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

.expect-card {
  background-color: var(--color-card-green);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.expect-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-image-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.expect-card:hover .card-img {
  transform: scale(1.08);
}

.card-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 14px;
}

.card-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 3: GROW YOUR BUSINESS SECTION
   ========================================================================== */
.grow-section {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  padding: 140px 0;
}

.grow-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.grow-left {
  position: relative;
}

.grow-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.grow-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.grow-accent-line {
  width: 3px;
  height: 140px;
  background-color: var(--color-orange);
  position: absolute;
  left: -20px;
  top: 10px;
}

/* Carousel */
.grow-right {
  position: relative;
}

.grow-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  height: 480px;
}

.carousel-image-container {
  width: 100%;
  height: 100%;
}

.grow-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.grow-overlay-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  background-color: var(--color-card-green);
  color: var(--color-white);
  padding: 36px 36px 70px 36px;
  border-top-left-radius: 24px;
  transition: all 0.4s ease;
}

.grow-card-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.grow-carousel-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
}

.grow-btn {
  width: 50px;
  height: 50px;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.grow-btn:hover {
  background-color: #e08700;
}

/* ==========================================================================
   SECTION 4: TESTIMONIALS (LOVE NOTES)
   ========================================================================== */
.testimonial-section {
  padding: 120px 0;
  background-color: #fafafa;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.arrow-btn:hover {
  background-color: #e08700;
  transform: scale(1.05);
}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s var(--transition-smooth);
}

.testimonial-card {
  min-width: 450px;
  max-width: 450px;
  background-color: var(--color-offwhite);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  flex-shrink: 0;
}

.testi-quote {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.author-role {
  font-size: 14px;
  color: #777777;
  margin-top: 2px;
}

.linkedin-link {
  transition: transform 0.2s ease;
}

.linkedin-link:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   SECTION 5: FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 100px 0 140px 0;
  background-color: var(--color-white);
}

.faq-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

/* Founder Profile Card */
.founder-card {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
}

.founder-photo-wrap {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-bio {
  font-size: 16px;
  font-weight: 300;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.founder-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-name-wrap {
  flex: 1;
}

.founder-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.founder-title {
  font-size: 14px;
  color: #777777;
}

/* FAQ Accordion Box */
.faq-accordion-box {
  background-color: var(--color-accent-green);
  border-radius: 24px;
  padding: 48px 40px;
  color: var(--color-white);
  box-shadow: 0 15px 40px rgba(76, 143, 113, 0.25);
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 0;
}

.accordion-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth), opacity 0.3s ease;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  opacity: 1;
  padding-top: 8px;
}

.accordion-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-section {
  position: relative;
  background-image: url('https://framerusercontent.com/images/0v7xoTuiARlYIBsk2AHJAZFmXTI.jpg?width=6000&height=3375');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 80px 0 30px 0;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 65, 46, 0.92);
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta-group {
  display: flex;
  gap: 24px;
  margin-bottom: 70px;
}

.footer-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-orange);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-link {
  font-weight: 600;
  color: var(--color-white);
}

.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.socials a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 38px; }
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .grow-container { grid-template-columns: 1fr; }
  .grow-accent-line { display: none; }
  .faq-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .expect-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 320px; max-width: 320px; }
  .grow-overlay-card { width: 100%; position: relative; border-top-left-radius: 0; }
  .grow-carousel { height: auto; }
  .footer-bottom-bar { flex-direction: column; gap: 16px; text-align: center; }
}

/* ==========================================================================
   INTERACTIVE AGILE TALENT CARD ON HOMEPAGE
   ========================================================================== */
.expect-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.expect-card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(22, 65, 46, 0.4);
}

.expect-card-link:hover .card-img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-orange);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(252, 152, 2, 0.4);
  transition: transform 0.3s ease;
}

.expect-card-link:hover .card-badge {
  transform: scale(1.05);
}

.arrow-icon {
  display: inline-block;
  color: var(--color-orange);
  transition: transform 0.3s ease;
  margin-left: 6px;
}

.expect-card-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   MERAKI TALENT SUB-PAGE STYLING
   ========================================================================== */
.talent-page {
  background-color: var(--color-dark-bg);
  color: var(--color-white);
}

.nav-talent-container {
  justify-content: space-between;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  background: rgba(252, 152, 2, 0.1);
  border: 1px solid rgba(252, 152, 2, 0.3);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.back-home-btn:hover {
  background: var(--color-orange);
  color: #000;
  transform: translateX(-3px);
}

/* Hero Section */
.talent-hero-section {
  position: relative;
  padding: 160px 0 100px;
  background: #091a12;
  overflow: hidden;
}

.talent-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
  filter: brightness(0.9) contrast(1.05);
}

.talent-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(9, 26, 18, 0.85) 100%);
  pointer-events: none;
}

.talent-hero-container {
  position: relative;
  z-index: 4;
}

.talent-hero-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.talent-pill-tag {
  display: inline-block;
  background: rgba(252, 152, 2, 0.18);
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.talent-hero-title {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.highlight-text {
  color: var(--color-orange);
  text-shadow: 0 0 25px rgba(252, 152, 2, 0.4);
}

.talent-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.talent-hero-subbox {
  background: rgba(18, 48, 35, 0.75);
  border-left: 4px solid var(--color-orange);
  padding: 22px 30px;
  border-radius: 0 14px 14px 0;
  font-size: 17px;
  text-align: left;
  margin: 0 auto 40px;
  max-width: 800px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.talent-hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Button Variants */
.btn-orange {
  background: var(--color-orange);
  color: #000;
  border: none;
  font-weight: 700;
}

.btn-orange:hover {
  background: #ffaa2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 152, 2, 0.4);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 17px;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
}

.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(252, 152, 2, 0.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Shared Talent Section Styling */
.talent-section {
  padding: 100px 0;
  position: relative;
}

.text-center { text-align: center; }
.text-light { color: #ffffff !important; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.mt-50 { margin-top: 50px; }
.w-full { width: 100%; }

.talent-subtitle-tag {
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 12px;
}

.talent-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Talent Cards */
.talent-card {
  background: var(--color-primary-green);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.talent-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 152, 2, 0.4);
}

.card-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(252, 152, 2, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.talent-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.talent-card-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  background: #091710;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 60px 0 40px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 140px;
  background: rgba(22, 65, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: var(--color-primary-green);
  border-color: var(--color-orange);
}

.highlight-step {
  background: linear-gradient(135deg, var(--color-card-green), var(--color-primary-green));
  border-color: var(--color-orange);
  box-shadow: 0 0 20px rgba(252, 152, 2, 0.2);
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-orange);
  display: block;
  margin-bottom: 8px;
}

.step-name {
  font-size: 18px;
  font-weight: 700;
}

.process-arrow {
  color: var(--color-orange);
  font-size: 24px;
  font-weight: bold;
}

.process-note-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

/* Standard Cards */
.standard-card {
  background: var(--color-card-green);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.standard-number {
  font-size: 44px;
  font-weight: 800;
  color: rgba(252, 152, 2, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.standard-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.standard-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

/* Proof Section & Quote */
.proof-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.proof-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 20px 0 30px;
}

.proof-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.proof-icon {
  width: 36px;
  height: 36px;
  background: rgba(252, 152, 2, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.proof-feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.proof-feature-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.quote-card {
  background: linear-gradient(145deg, #1d4d37, #133928);
  border: 1px solid rgba(252, 152, 2, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.quote-icon {
  font-size: 80px;
  line-height: 0.5;
  color: var(--color-orange);
  opacity: 0.3;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 36px;
  font-family: var(--font-primary);
}

.quote-highlight {
  color: var(--color-orange);
  font-weight: 700;
}

.quote-cta-wrap {
  display: flex;
  justify-content: flex-start;
}

/* Ways Section */
.way-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 30px;
  transition: all 0.3s ease;
}

.way-card-featured {
  background: rgba(36, 81, 61, 0.6);
  border-color: var(--color-orange);
}

.way-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 14px;
}

.featured-tag {
  color: var(--color-orange);
}

.way-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.way-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

/* Founders Section */
.founders-card {
  background: linear-gradient(135deg, #194833, #0d281c);
  border-radius: 24px;
  padding: 60px 50px;
  display: flex;
  gap: 50px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.founders-badge-wrap {
  flex-shrink: 0;
}

.fi-image-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(252, 152, 2, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 220px;
  max-width: 250px;
}

.fi-image-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5), 0 0 25px rgba(252, 152, 2, 0.5);
}

.fi-card-tag {
  background: var(--color-orange);
  color: #000000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.fi-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.fi-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  border-radius: 6px;
  mix-blend-mode: multiply;
}

.founders-content {
  flex: 1;
}

.founders-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-top: 16px;
}

/* Final CTA Section */
.value-box {
  background: rgba(36, 81, 61, 0.3);
  border: 1px solid rgba(76, 143, 113, 0.3);
  border-radius: 20px;
  padding: 45px;
  text-align: center;
  margin-bottom: 60px;
}

.value-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.value-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 850px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.value-highlight-line {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-orange);
}

.cta-banner {
  background: linear-gradient(135deg, #16412e, #24513d);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(252, 152, 2, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cta-banner-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 36px;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Modal Popup */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  background: #123324;
  border: 1px solid var(--color-orange);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  z-index: 2;

  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.contact-modal.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-input, .form-select, .form-textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 14px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-orange);
}

/* Additional Responsive Breakpoints for Talent Page */
@media (max-width: 1024px) {
  .talent-hero-title { font-size: 42px; }
  .talent-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .proof-wrapper { grid-template-columns: 1fr; }
  .founders-card { flex-direction: column; text-align: center; }
  .process-arrow { display: none; }
}

@media (max-width: 768px) {
  .talent-hero-title { font-size: 32px; }
  .talent-grid-3 { grid-template-columns: 1fr; }
  .process-pipeline { flex-direction: column; }
  .process-step { width: 100%; }
  .cta-banner-buttons { flex-direction: column; }
  .cta-banner-title { font-size: 26px; }
}

