/* ===== CSS Variables ===== */
:root {
  --primary: #00274c;
  --primary-light: #003366;
  --secondary: #f57c00;
  --accent: #ff9800;
  --accent-light: #fff3e0;
  --bg-white: #ffffff;
  --bg-light: #f5f6fa;
  --bg-dark: #00274c;
  --text-dark: #1a1a2e;
  --text-muted: #5f6368;
  --text-light: #8a8f98;
  --success: #2e7d32;
  --border: #e0e3e8;
  --shadow-sm: 0 2px 8px rgba(0, 39, 76, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 39, 76, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 39, 76, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1180px;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Section Common ===== */
.section {
  padding: 100px 0;
}

.section--gray {
  background: var(--bg-light);
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-label i {
  width: 18px;
  height: 18px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.section--dark .section-title {
  color: #fff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn i {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 124, 0, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--primary);
}

.btn--white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 39, 76, 0.08);
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  transition: var(--transition);
}

.navbar.scrolled .navbar__logo {
  color: var(--primary);
}

.navbar__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  color: #fff;
}

.navbar__logo-icon i {
  width: 20px;
  height: 20px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .navbar__links a {
  color: var(--text-muted);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: #fff;
}

.navbar.scrolled .navbar__links a:hover,
.navbar.scrolled .navbar__links a.active {
  color: var(--primary);
}

.navbar__cta .btn {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .navbar__burger span {
  background: var(--primary);
}

.navbar__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--primary) 0%, #001a33 50%, #001025 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245, 124, 0, 0.15);
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero__badge i {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: 3.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.hero__stat {
  border-left: 2px solid rgba(245, 124, 0, 0.4);
  padding-left: 20px;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* ===== About Section ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary);
  margin-top: 28px;
}

.about__highlight i {
  color: var(--secondary);
  min-width: 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.about__highlight p {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card:hover {
  border-color: rgba(245, 124, 0, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 16px;
}

.about-card__icon i {
  width: 24px;
  height: 24px;
}

.about-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Fund Performance Section ===== */
.fund__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.fund__chart-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.fund__chart-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fund__chart-title i {
  color: var(--secondary);
  width: 20px;
  height: 20px;
}

.fund__chart-container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.pie-chart-svg {
  width: 220px;
  height: 220px;
  transform: rotate(-90deg);
  flex-shrink: 0;
}

.pie-chart-svg circle {
  fill: none;
  stroke-width: 40;
  transition: opacity 0.3s;
}

.pie-chart-svg circle:hover {
  opacity: 0.8;
}

.fund__legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fund__legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
}

.fund__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.fund__legend-pct {
  color: var(--text-muted);
  margin-left: auto;
  font-weight: 600;
  font-size: 0.82rem;
}

/* Metrics Side */
.fund__metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fund-metric-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: var(--transition);
}

.fund-metric-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fund-metric-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.fund-metric-card__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fund-metric-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.fund-metric-card__badge--up {
  background: rgba(46, 125, 50, 0.1);
  color: var(--success);
}

.fund-metric-card__badge--neutral {
  background: rgba(0, 39, 76, 0.08);
  color: var(--primary);
}

.fund-metric-card__badge i {
  width: 12px;
  height: 12px;
}

.fund-metric-card__value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.fund-metric-card__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.fund__benchmark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
}

.fund__benchmark-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fund__benchmark-title i {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.fund__benchmark-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benchmark-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benchmark-bar__header {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 500;
}

.benchmark-bar__track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.benchmark-bar__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.benchmark-bar__fill--smif {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.benchmark-bar__fill--sp {
  background: rgba(255, 255, 255, 0.5);
}

/* ===== Research Process ===== */
.research__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.research__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 2px;
}

.research-step {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}

.research-step:last-child {
  margin-bottom: 0;
}

.research-step__number {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.research-step:hover .research-step__number {
  background: var(--secondary);
  color: #fff;
}

.research-step__content {
  flex: 1;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: var(--transition);
  margin-top: 10px;
}

.research-step:hover .research-step__content {
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 124, 0, 0.2);
}

.research-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--secondary);
  margin-bottom: 12px;
}

.research-step__icon i {
  width: 20px;
  height: 20px;
}

.research-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.research-step__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== Team Section ===== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
}

.team-card__avatar i {
  width: 32px;
  height: 32px;
}

.team-card__role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.team-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Recruitment Section ===== */
.recruit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.recruit__info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.recruit__requirements {
  margin-bottom: 32px;
}

.recruit__req-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.recruit__req-item:last-child {
  border-bottom: none;
}

.recruit__req-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.recruit__req-icon i {
  width: 14px;
  height: 14px;
}

.recruit__req-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.recruit__req-text span {
  color: var(--text-muted);
  font-weight: 400;
}

.recruit__timeline-box {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
}

.recruit__timeline-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recruit__timeline-box h4 i {
  color: var(--accent);
  width: 18px;
  height: 18px;
}

.recruit__tl-step {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.recruit__tl-step:last-child {
  margin-bottom: 0;
}

.recruit__tl-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--secondary);
  margin-top: 6px;
}

.recruit__tl-text {
  font-size: 0.88rem;
  line-height: 1.6;
}

.recruit__tl-text strong {
  display: block;
  font-weight: 700;
  color: #fff;
}

.recruit__tl-text span {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Contact / Apply Form ===== */
.contact__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group--full {
  margin-bottom: 20px;
}

.form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form__label span {
  color: var(--secondary);
}

.form__input,
.form__select,
.form__textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-light);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

.form__submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-4px);
}

.back-to-top i {
  width: 22px;
  height: 22px;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer__brand-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer__brand-logo-icon i {
  width: 18px;
  height: 18px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 320px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8rem;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 540px;
  text-align: right;
  line-height: 1.6;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about__grid,
  .fund__grid,
  .recruit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero__stat-value {
    font-size: 1.35rem;
  }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .contact__card {
    padding: 32px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__disclaimer {
    text-align: center;
  }

  .research__timeline::before {
    left: 20px;
  }

  .research-step__number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.9rem;
  }

  .research-step {
    gap: 20px;
  }

  .research-step__content {
    padding: 20px;
  }

  .fund__chart-container {
    flex-direction: column;
  }

  .fund__chart-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.85rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .recruit__timeline-box {
    padding: 20px;
  }
}
