:root {
  --primary-900: #1c3e52;
  --primary-300: #8ba9c4;
  --secondary-gold: #d9b15a;
  --secondary-cyan: #4eb2c9;
  --neutral-100: #f9fafd;
  --neutral-150: #eef2f7;
  --neutral-200: #e4e6ec;
  --neutral-900: #2b343d;
  --text-soft: #5a6a78;
  --radius-pill: 999px;
  --radius-card: 18px;
  --shadow-soft: 0 20px 40px rgba(16, 28, 40, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--neutral-900);
  background: var(--neutral-100);
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}

.section-pad {
  padding: 80px 0;
}

.section-light {
  background: var(--neutral-100);
}

.section-soft {
  background: var(--neutral-150);
}

.section-dark {
  background: var(--primary-900);
  color: #fff;
}

.section-label {
  margin: 0 0 10px;
  color: var(--secondary-cyan);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

.section-dark .section-head p {
  color: #dbe5f0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--secondary-gold);
  color: var(--primary-900);
}

.btn-cyan {
  background: var(--secondary-cyan);
  color: #fff;
}

.btn-dark {
  background: var(--primary-900);
  color: #fff;
}

.btn-outline-light {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-dark {
  border-color: var(--primary-900);
  color: var(--primary-900);
  background: transparent;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 250, 253, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary-900);
  color: #fff;
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700;
}

.logo-name {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-900);
}

.desktop-nav {
  display: inline-flex;
  gap: 24px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.text-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-900);
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--primary-900);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--neutral-200);
  padding: 14px 24px 20px;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--neutral-900);
}

.hero {
  background: linear-gradient(135deg, var(--primary-900), #2b5f80);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 56px;
  align-items: center;
}

.pill {
  margin: 0 0 12px;
  display: inline-block;
  background: #f7e3b5;
  color: var(--primary-900);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
}

.hero-copy h1 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 560px;
  color: #dae4ef;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: #c5d7e6;
}

.hero-card-wrap {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  background: #fff;
  color: var(--neutral-900);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.hero-card-badge {
  display: inline-block;
  background: #edf7fa;
  color: var(--primary-900);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}

.hero-logo {
  margin-top: 14px;
  border-radius: 20px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, Inter, sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--primary-900), var(--primary-300));
}

.hero-card-title {
  margin: 18px 0 14px;
  color: var(--primary-900);
  font-family: Poppins, Inter, sans-serif;
  font-size: 22px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tags span {
  background: #f1f4f9;
  color: #425161;
  border-radius: var(--radius-pill);
  font-size: 12px;
  padding: 6px 10px;
  font-weight: 600;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-card);
  padding: 22px;
  box-shadow: 0 8px 22px rgba(16, 28, 40, 0.04);
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--primary-900);
  font-family: Poppins, Inter, sans-serif;
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

.step {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-pill);
  align-items: center;
  justify-content: center;
  background: #f7e3b5;
  color: var(--primary-900);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.experience-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 28, 40, 0.08);
}

.experience-top {
  min-height: 130px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.exp-a {
  background: linear-gradient(145deg, #e88aa6, #d9b15a);
}

.exp-b {
  background: linear-gradient(145deg, #4eb2c9, #1c3e52);
}

.exp-c {
  background: linear-gradient(145deg, #d9b15a, #e88aa6);
}

.category,
.rating {
  display: inline-flex;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
}

.category {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.rating {
  background: #fff;
  color: #374151;
}

.experience-body {
  padding: 18px;
}

.experience-body h3 {
  margin: 0;
  color: #1f2937;
  font-family: Poppins, Inter, sans-serif;
  font-size: 18px;
}

.experience-body p {
  margin: 10px 0 0;
  color: #5a6a78;
  font-size: 14px;
  line-height: 1.6;
}

.experience-body ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #5a6a78;
  font-size: 13px;
  line-height: 1.6;
}

.quote-card {
  background: #f9fafd;
  color: #1f2937;
  border-radius: 18px;
  padding: 22px;
}

.quote-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.quote-card strong {
  margin-top: 10px;
  display: block;
  color: #374151;
  font-size: 13px;
}

.cta-band {
  background: linear-gradient(140deg, #4eb2c9, #d9b15a);
}

.cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-grid h2 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
  color: #1f2937;
  font-size: clamp(24px, 2.4vw, 34px);
}

.cta-grid p {
  margin: 10px 0 0;
  color: #374151;
  line-height: 1.6;
}

.cta-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  background: #202932;
  color: #d5dce5;
}

.footer-grid {
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-logo .logo-icon {
  background: var(--primary-300);
}

.footer-logo .logo-name {
  color: #fff;
}

.footer h4 {
  margin: 0 0 12px;
  font-family: Poppins, Inter, sans-serif;
  font-size: 15px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer a {
  color: #d5dce5;
  text-decoration: none;
}

.footer a:hover {
  color: #8ed8e7;
}

.footer-text {
  margin: 0 0 10px;
  color: #aeb8c6;
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}

.footer-bottom {
  border-top: 1px solid rgba(228, 230, 236, 0.2);
}

.footer-bottom-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: #aeb8c6;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 1024px) {
  .container {
    width: min(1200px, 100% - 40px);
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-grid {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 64px 0;
  }

  .container {
    width: min(1200px, 100% - 28px);
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    padding: 10px 0;
    min-height: unset;
  }
}
