/* ═══════════════════ VARIABLES ═══════════════════ */
:root {
  /* Colors */
  --color-primary: #0f6262;
  /* Dark teal background */
  --color-primary-light: #1a9e8f;
  /* Lighter teal/green for highlights */
  --color-secondary: #74967f;
  /* Muted sage green */
  --color-dark: #1a1a1a;
  --color-light: #ffffff;
  --color-bg-light: #f8faf9;
  --color-border: #e5e7eb;
  --color-text: #4b5563;
  --color-text-dark: #1f2937;

  /* Typography */
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Radii */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ═══════════════════ RESET & BASE ═══════════════════ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.section-title--teal {
  color: var(--color-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  color: var(--color-text);
}

/* ═══════════════════ TYPOGRAPHY ═══════════════════ */
.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--white {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.btn--white:hover {
  background-color: #f3f4f6;
}

.btn--outline-light {
  background-color: transparent;
  border-color: var(--color-light);
  color: var(--color-light);
}

.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn--outline-teal {
  background-color: var(--color-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline-teal:hover {
  background-color: var(--color-bg-light);
}

.btn--full {
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #e5e7eb;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ═══════════════════ COMPONENTS ═══════════════════ */

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--spacing-md) 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar--scrolled {
  position: fixed;
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-sm) 0;
}

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

.navbar__logo-img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar__logo-img:hover {
  transform: scale(1.05);
}

.navbar__links {
  display: flex;
  gap: 2rem;
}

.navbar__links a {
  color: var(--color-light);
  font-weight: 500;
  opacity: 0.9;
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--color-light);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar__links a:hover {
  opacity: 1;
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__signin {
  color: var(--color-light);
  font-weight: 600;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--color-light);
  transition: all 0.3s ease;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes float1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-50px, 30px) scale(0.9);
  }

  66% {
    transform: translate(20px, -20px) scale(1.1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes float3 {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(-40%, -60%) scale(1.2) rotate(180deg);
  }

  100% {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
  }
}

/* Hero Section */
.hero {
  background-color: var(--color-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-xl);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}

.hero__blob--1 {
  width: 400px;
  height: 400px;
  background-color: #0ed3c1;
  top: -100px;
  left: -100px;
  animation: float1 15s ease-in-out infinite;
}

.hero__blob--2 {
  width: 600px;
  height: 600px;
  background-color: #1a9e8f;
  bottom: -200px;
  right: -100px;
  animation: float2 20s ease-in-out infinite;
}

.hero__blob--3 {
  width: 300px;
  height: 300px;
  background-color: #054a4a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float3 18s linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100vh) scale(1.5);
    opacity: 0;
  }
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  bottom: -150px;
  z-index: 0;
  animation: floatUp 15s infinite linear;
}

.hero__circle--1 {
  left: 10%;
  width: 40px;
  height: 40px;
  animation-duration: 12s;
  animation-delay: 0s;
}

.hero__circle--2 {
  left: 25%;
  width: 90px;
  height: 90px;
  animation-duration: 18s;
  animation-delay: 2s;
}

.hero__circle--3 {
  left: 45%;
  width: 50px;
  height: 50px;
  animation-duration: 14s;
  animation-delay: 5s;
}

.hero__circle--4 {
  left: 65%;
  width: 120px;
  height: 120px;
  animation-duration: 22s;
  animation-delay: 1s;
}

.hero__circle--5 {
  left: 80%;
  width: 35px;
  height: 35px;
  animation-duration: 10s;
  animation-delay: 6s;
}

.hero__circle--6 {
  left: 95%;
  width: 70px;
  height: 70px;
  animation-duration: 16s;
  animation-delay: 3s;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero__subtitle {
  color: var(--color-light);
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-xl);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
}

.hero__card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: rotate(2deg) scale(1.05);
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__card:hover {
  transform: rotate(0deg) scale(1.1);
}

.hero__card-header {
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-text-dark);
}

.hero__card-actions {
  display: flex;
  gap: 1rem;
  color: var(--color-text);
  align-items: center;
}

.hero__share-badge {
  background-color: #e0f2f1;
  color: var(--color-primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__card-body {
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hero__card-meta {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero__donut {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 2rem auto;
}

.hero__donut-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero__donut-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

.hero__donut-text {
  font-size: 0.75rem;
}

.hero__bar-row {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero__bar {
  background-color: var(--color-border);
  height: 8px;
  border-radius: 4px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.hero__bar-fill {
  background-color: var(--color-primary-light);
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__bar-fill--pink {
  background-color: #db2777;
}

.hero__bar-fill--purple {
  background-color: #9333ea;
}

/* About Section */
.about {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-light);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.about__image-wrapper {
  border-radius: 0 50% 50% 0;
  /* Half circle shape on the left side - actually the image is rounded on the left */
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Assessments */
.assessments {
  padding: var(--spacing-2xl) 0;
  background-color: #fafafa;
}

.assessments__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 2px;
  /* For the split aesthetic */
}

.assessments__left {
  padding: var(--spacing-2xl);
}

.assessments__left h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.assessments__right {
  background-color: var(--color-secondary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--spacing-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-light);
}

.assessments__highlight h3 {
  color: var(--color-light);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.assessments__highlight-divider {
  width: 50px;
  height: 2px;
  background-color: var(--color-light);
  margin: 1.5rem auto;
}

/* Accordion */
.accordion__item {
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  background-color: #f3f4f6;
  overflow: hidden;
}

.accordion__btn {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.accordion__item--open .accordion__panel {
  max-height: 200px;
  padding-bottom: 1rem;
}

.accordion__item--open .accordion__btn i {
  transform: rotate(45deg);
  /* For plus to x */
}

.faq .accordion__item--open .accordion__btn i {
  transform: rotate(180deg);
  /* For chevron */
}

/* Domains */
.domains {
  padding: var(--spacing-2xl) 0;
}

.domains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.domain-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.domain-card__icon {
  width: 48px;
  height: 48px;
  background-color: #e0f2f1;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.domain-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Profiles */
.profiles {
  padding: var(--spacing-2xl) 0;
  background-color: #f9fbfb;
}

.profiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.profiles__card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.profiles__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.profiles__card-header h4 {
  color: var(--color-text-dark);
}

.profiles__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.profiles__link:hover {
  border-color: var(--color-primary);
  background-color: #f0fdfa;
}

.profiles__journey {
  height: 200px;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><path d="M50 100 Q 150 50 250 150 T 450 100" stroke="%231a9e8f" stroke-width="2" stroke-dasharray="5,5" fill="none"/></svg>');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 2rem;
}

.profiles__pin {
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.profiles__pin i {
  transform: rotate(45deg);
  font-size: 0.875rem;
}

.profiles__pin:nth-child(1) {
  top: 20%;
  left: 10%;
}

.profiles__pin:nth-child(2) {
  top: 50%;
  left: 30%;
}

.profiles__pin:nth-child(3) {
  top: 20%;
  left: 50%;
}

.profiles__pin:nth-child(4) {
  top: 60%;
  left: 70%;
}

.profiles__pin:nth-child(5) {
  top: 30%;
  left: 90%;
}

.profiles__pin:nth-child(6) {
  top: 80%;
  left: 50%;
}

/* Pseudo positioning */


.profiles__meta {
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
  color: var(--color-light);
}

.profiles__meta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profiles__meta-text h3 {
  color: var(--color-light);
  font-size: 2rem;
  margin: 0.5rem 0;
}

/* Helps */
.helps {
  padding: var(--spacing-2xl) 0;
}

.helps__wrapper {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.helps__top-bar {
  height: 8px;
  background-color: var(--color-primary);
}

.helps__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.helps__left {
  padding: 3rem;
}

.helps__left h2 {
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.helps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.helps__item-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.helps__item:nth-child(1) .helps__item-icon {
  color: #8b5cf6;
}

.helps__item:nth-child(2) .helps__item-icon {
  color: #3b82f6;
}

.helps__item:nth-child(3) .helps__item-icon {
  color: #f59e0b;
}

.helps__item:nth-child(4) .helps__item-icon {
  color: #eab308;
}

.helps__item:nth-child(5) .helps__item-icon {
  color: #06b6d4;
}

.helps__item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.helps__item ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.helps__right {
  background-color: var(--color-primary);
  padding: 3rem;
  color: var(--color-light);
}

.helps__sidebar h3 {
  color: var(--color-light);
  margin-bottom: 2rem;
}

.helps__sidebar-group {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.helps__sidebar-group h5 {
  color: var(--color-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.helps__sidebar-group ul {
  font-size: 0.875rem;
  opacity: 0.9;
  list-style-type: disc;
  padding-left: 1.5rem;
}

/* FAQ */
.faq {
  padding: var(--spacing-2xl) 0;
  background-color: #f9fbfb;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq__left {
  padding: 3rem;
}

.faq__desc {
  margin-bottom: 2rem;
}

.faq__left .accordion__item {
  background: none;
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
}

.faq__right {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 3rem;
  color: var(--color-light);
  display: flex;
  align-items: center;
}

.faq__programs h3 {
  color: var(--color-light);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq__programs ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.faq__programs li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-light);
}

.footer__col h4 {
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

.footer__col ul li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  opacity: 0.8;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__contact-btn {
  margin-top: 1rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
[data-animate] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

.animate-in {
  opacity: 1;
  transform: translate(0);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {

  .hero__inner,
  .about__inner,
  .assessments__grid,
  .helps__inner,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__card-body {
    grid-template-columns: 1fr;
  }

  .domains__grid,
  .profiles__grid,
  .helps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .assessments__right {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .about__image-wrapper {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-2xl: 4rem;
    --spacing-xl: 3rem;
  }

  .domains__grid,
  .profiles__grid,
  .helps__grid {
    grid-template-columns: 1fr;
  }

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

  .navbar {
    padding: var(--spacing-sm) 0;
    background: var(--color-primary);
  }

  .navbar__links,
  .navbar__actions {
    display: none;
  }

  .navbar__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    padding: var(--spacing-lg) 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar__actions.active {
    display: flex;
    position: absolute;
    top: calc(100% + 280px);
    /* Positioned below nav links */
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    padding: 0 0 var(--spacing-lg) 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar__hamburger {
    display: flex;
    z-index: 1001;
  }

  .navbar__hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero__inner,
  .about__inner {
    gap: 2rem;
  }

  .helps__left,
  .helps__right,
  .faq__left,
  .faq__right,
  .assessments__left,
  .assessments__right {
    padding: 2rem;
  }

  .profiles__journey {
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .hero__blob--1 {
    width: 250px;
    height: 250px;
  }

  .hero__blob--2 {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero__card-body {
    padding: 0.5rem;
    gap: 0.75rem;
  }

  .hero__card-header {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .hero__card-header i {
    font-size: 0.75rem;
  }

  .hero__share-badge {
    padding: 0.15rem 0.4rem;
    font-size: 0.65rem;
  }

  .hero__donut {
    width: 60px;
    height: 60px;
    margin: 0.5rem auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero__donut svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero__donut-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero__donut-value {
    font-size: 0.85rem;
    line-height: 1;
  }

  .hero__donut-text {
    font-size: 0.5rem;
    line-height: 1;
    margin-top: 2px;
  }

  .hero__card-left h4,
  .hero__card-right h4 {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .hero__card-meta {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
  }

  .hero__card-left h3 {
    font-size: 0.85rem;
    margin-bottom: 0;
  }

  .hero__bar-row {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
  }

  .hero__bar {
    height: 6px;
    margin-top: 0.25rem;
  }

  .footer__legal {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .profiles__link {
    font-size: 0.875rem;
  }
}