/*--------------------------------------------------------------
# RESET & BASE STYLES
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1e2d3d;
  background-color: #faf7f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (prefers-contrast: high) {
  .hero__overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .nav-card__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
  }

  .community-cta__overlay {
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
@media print {
  .header, .footer, .hero__scroll-indicator, .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: white;
    color: black;
  }

  .hero__content {
    color: black;
  }

  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}
/*--------------------------------------------------------------
# TYPOGRAPHY
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
  color: #1e2d3d;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.display {
  font-size: clamp(2.25rem, 7vw, 5rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: #2c3e50;
}

.font-primary {
  font-family: "Playfair Display", serif;
}

.font-secondary {
  font-family: "Inter", sans-serif;
}

.font-script {
  font-family: "Dancing Script", cursive;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

/*--------------------------------------------------------------
# UTILITIES
--------------------------------------------------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.text-xl {
  font-size: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.section {
  padding: 4rem 0;
}

.section--lg {
  padding: 5rem 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.btn:focus-visible,
.nav-link:focus-visible,
.nav-card:focus-visible {
  outline: 2px solid #042a49;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .section, .section--lg {
    padding: 3rem 0;
  }
}
/*--------------------------------------------------------------
# HEADER & NAVIGATION
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(250, 247, 244, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 66, 115, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #1e2d3d;
}

.logo__icon {
  width: 70px;
  height: 70px;
  background: url("../images/logo.png") no-repeat center/contain;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.logo__text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #1e2d3d;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(6, 66, 115, 0.08);
  color: #042a49;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #1e2d3d;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav {
    padding: 0 1.25rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #faf7f4;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2.5rem;
    gap: 0.5rem;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-link {
    font-size: 15px;
    padding: 0.875rem 2rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
    border-radius: 8px;
  }
}
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(160deg, #0a2d4a 0%, #042a49 100%);
  color: white;
  padding: 4rem 0 0;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.logo__text_footer {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.footer__brand {
  max-width: 300px;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}
.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__section ul li {
  margin-bottom: 0.5rem;
}
.footer__section ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer__section ul a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}
.footer__bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__brand {
    max-width: none;
  }

  .footer__section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.5rem;
  }
  .footer__section ul li {
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------
# GRID SYSTEM
--------------------------------------------------------------*/
.grid {
  display: grid;
  gap: 2rem;
}

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

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

@media (max-width: 768px) {
  .grid--2, .grid--3 {
    grid-template-columns: 1fr;
  }
}
/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #064273;
  color: white;
}
.btn:hover {
  background: #1da2d8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 66, 115, 0.25);
}
.btn--secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}
.btn--blush {
  background: #1da2d8;
}
.btn--blush:hover {
  background: #064273;
}
.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 16px;
}
.btn--xl {
  padding: 1.5rem 3rem;
  font-size: 18px;
}
.btn--outline {
  background: transparent;
  border: 2px solid #1da2d8;
  color: #1da2d8;
}
.btn--outline:hover {
  background: #1da2d8;
  color: white;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

@media (max-width: 640px) {
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 13px;
  }

  .btn--lg {
    padding: 1rem 2rem;
    font-size: 14px;
  }

  .btn--xl {
    padding: 1.25rem 2.25rem;
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# CARDS
--------------------------------------------------------------*/
.nav-card {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
}

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

.nav-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 66, 115, 0.1) 0%, rgba(6, 66, 115, 0.8) 100%);
  z-index: 1;
  transition: all 0.3s ease;
}

.nav-card:hover .nav-card__overlay {
  background: linear-gradient(180deg, rgba(6, 66, 115, 0.3) 0%, rgba(6, 66, 115, 0.9) 100%);
}

.nav-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transition: all 0.3s ease;
  text-align: center;
}

.nav-card:hover .nav-card__content {
  transform: translateY(-4px);
}

.nav-card__icon {
  display: none;
}

.nav-card__title {
  font-size: 24px;
  color: white;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.nav-card__description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: center;
}

.value-pillar {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.value-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.value-pillar__icon {
  width: 72px;
  height: 72px;
  background: #e8ddd0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #042a49;
  font-size: 24px;
}

.value-pillar h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #1e2d3d;
}

.value-pillar p {
  font-size: 15px;
  line-height: 1.7;
  color: #064273;
  margin-bottom: 0;
}

.connection-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 66, 115, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 250px;
}
.connection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 66, 115, 0.2);
}

.connection-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #064273, #042a49);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 1.5rem;
}

.connection-card h3 {
  margin-bottom: 1rem;
  color: #1e2d3d;
}

.connection-card p {
  margin-bottom: 1.5rem;
  color: #064273;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nav-card {
    height: 260px;
  }
}
@media (max-width: 640px) {
  .nav-grid__container {
    gap: 1rem;
  }

  .nav-card {
    height: 220px;
  }

  .nav-card__content {
    padding: 1.5rem;
    text-align: center;
  }

  .nav-card__title {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .nav-card__description {
    font-size: 14px;
    text-align: center;
  }

  .value-pillar {
    padding: 1.5rem;
  }

  .value-pillar__icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .connection-card {
    min-height: 200px;
    padding: 2rem 1.5rem;
  }

  .connection-card__icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .nav-card {
    height: 300px;
  }

  .connection-card {
    padding: 2rem 1.5rem;
  }
}
/*--------------------------------------------------------------
# FORMS
--------------------------------------------------------------*/
.contact-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-form-header h2 {
  margin-bottom: 0.75rem;
  color: #1e2d3d;
  font-size: 1.75rem;
}
.contact-form-header p {
  color: #064273;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-form {
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #1e2d3d;
  font-size: 13px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #faf7f4;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #064273;
  box-shadow: 0 0 0 2px rgba(29, 162, 216, 0.1);
}
.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder {
  color: #9CA3AF;
  font-size: 13px;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-size: 14px;
}
.radio-option:hover {
  background: rgba(29, 162, 216, 0.05);
  border-radius: 4px;
  padding-left: 0.25rem;
}
.radio-option input[type=radio] {
  display: none;
}

.radio-checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #E5E7EB;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}
.radio-checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #064273;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease;
}

.radio-option input[type=radio]:checked + .radio-checkmark {
  border-color: #064273;
}
.radio-option input[type=radio]:checked + .radio-checkmark::after {
  transform: translate(-50%, -50%) scale(1);
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: #6B7280;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.newsletter-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.newsletter-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.newsletter-form .form-group {
  margin-bottom: 1rem;
}
.newsletter-form .form-group label {
  display: flex;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #1e2d3d;
  font-size: 13px;
}
.newsletter-form .form-group input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}
.newsletter-form .form-group input:focus {
  outline: none;
  border-color: #064273;
  box-shadow: 0 0 0 2px rgba(29, 162, 216, 0.1);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.checkbox-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.checkbox-option:hover {
  background: rgba(29, 162, 216, 0.05);
}
.checkbox-option input[type=checkbox] {
  display: none;
}
.checkbox-option span {
  font-size: 12px;
  color: #1e2d3d;
  line-height: 1.3;
}

.checkbox-checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #E5E7EB;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.checkbox-checkmark::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.3s ease;
}

.checkbox-option input[type=checkbox]:checked + .checkbox-checkmark {
  background: #064273;
  border-color: #064273;
}
.checkbox-option input[type=checkbox]:checked + .checkbox-checkmark::after {
  transform: rotate(45deg) scale(1);
}

.waitlist-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}

.waitlist-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.waitlist-form .form-group {
  margin-bottom: 1rem;
}
.waitlist-form .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #1e2d3d;
  font-size: 13px;
}
.waitlist-form .form-group input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}
.waitlist-form .form-group input:focus {
  outline: none;
  border-color: #064273;
  box-shadow: 0 0 0 2px rgba(29, 162, 216, 0.1);
}

@media (max-width: 1024px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .waitlist-form .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .waitlist-form-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-form-header {
    padding: 0;
    margin-bottom: 1rem;
  }
  .contact-form-header h2 {
    font-size: 1.5rem;
  }

  .radio-group {
    gap: 0.375rem;
  }

  .newsletter-form .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .newsletter-form-wrapper {
    padding: 1.5rem;
  }

  .waitlist-form-wrapper {
    padding: 1.25rem;
    margin: 0 1rem;
  }
}
@media (max-width: 640px) {
  .checkbox-option {
    padding: 0.5rem 0.375rem;
  }

  .form-group {
    margin-bottom: 0.75rem;
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .contact-form-header {
    margin-bottom: 0.75rem;
  }
  .contact-form-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.community-cta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.community-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.community-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 66, 115, 0.8), rgba(29, 162, 216, 0.8));
  z-index: 1;
}

.community-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.community-cta__content h2 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.community-cta__content p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-header {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: 80px;
}

.page-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 66, 115, 0.7);
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-header__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #042a49;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.page-header__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header__description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-header {
    height: 50vh;
    min-height: 400px;
  }

  .page-header__content {
    padding: 0 1rem;
  }
}
/*--------------------------------------------------------------
# HERO SECTION
--------------------------------------------------------------*/
.hero {
  position: relative;
  height: 60vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #e8ddd0;
  overflow: hidden;
  margin-top: 80px;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 66, 115, 0.5);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  color: white;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #042a49;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero__description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  position: relative;
  margin-bottom: 0.5rem;
}

.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1px;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite ease-in-out;
}

@keyframes scroll-wheel {
  0%, 20% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}
.page-header {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: 80px;
}

.page-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 66, 115, 0.5);
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-header__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header__description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .hero__content {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 480px;
    padding: 3rem 0;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__description {
    font-size: 15px;
    margin-bottom: 2rem;
  }

  .page-header {
    height: 45vh;
    min-height: 340px;
  }

  .page-header__content {
    padding: 0 1.25rem;
  }

  .page-header__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .page-header__description {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# NAVIGATION GRID
--------------------------------------------------------------*/
.nav-grid {
  background: #f3ede6;
}

.nav-grid__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

@media (max-width: 480px) {
  .nav-grid__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/*--------------------------------------------------------------
# PHILOSOPHY SECTIONS
--------------------------------------------------------------*/
.philosophy {
  background: #faf7f4;
}

.philosophy__content {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy__intro {
  font-size: 18px;
  line-height: 1.8;
  color: #064273;
  margin-top: 1.5rem;
}

.philosophy-highlight {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
  border-left: 4px solid #064273;
}
.philosophy-highlight h3 {
  color: #042a49;
  margin-bottom: 1rem;
  font-size: 20px;
}
.philosophy-highlight p {
  color: #064273;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.philosophy-highlight p:last-child {
  margin-bottom: 0;
}

.community-values {
  padding: 6rem 0;
  background: #faf7f4;
}

.community-values__content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.value-circle {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 66, 115, 0.08);
}
.value-circle:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 66, 115, 0.15);
}

.value-circle__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #76b6c4, #4a8fa0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 1.5rem;
  box-shadow: none;
}

.value-circle h3 {
  margin-bottom: 1rem;
  color: #1e2d3d;
  font-size: 1.25rem;
}

.value-circle p {
  color: #2c3e50;
  margin: 0;
  line-height: 1.6;
}

.service-philosophy {
  margin-bottom: 4rem;
}
.service-philosophy h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #042a49;
  font-size: 1.5rem;
}
.service-philosophy > p {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #2c3e50;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.philosophy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}
.philosophy-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.philosophy-item__icon {
  width: 60px;
  height: 60px;
  background: #e8ddd0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #042a49;
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.philosophy-item h4 {
  margin-bottom: 1rem;
  color: #1e2d3d;
  font-size: 18px;
}

.philosophy-item p {
  color: #064273;
  line-height: 1.6;
  margin: 0;
}

.philosophy-list {
  max-width: 700px;
  margin: 0 auto;
}
.philosophy-list .philosophy-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.philosophy-list .philosophy-point:last-child {
  margin-bottom: 0;
}
.philosophy-list .philosophy-icon {
  width: 40px;
  height: 40px;
  background: #e8ddd0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #042a49;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.philosophy-list .philosophy-content {
  flex: 1;
}
.philosophy-list .philosophy-content h4 {
  margin-bottom: 0.5rem;
  color: #1e2d3d;
  font-size: 16px;
  font-weight: 600;
}
.philosophy-list .philosophy-content p {
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .values-grid {
    gap: 1.5rem;
  }

  .value-circle {
    padding: 2rem 1.5rem;
  }

  .value-circle__icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

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

  .philosophy-item {
    padding: 1.5rem;
  }

  .philosophy-list {
    padding: 0 1rem;
  }

  .philosophy-point {
    padding: 1.5rem;
  }

  .philosophy-highlight {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 640px) {
  .philosophy-highlight {
    padding: 1.5rem;
  }
}
/*--------------------------------------------------------------
# CLEAN ABOUT PAGE
--------------------------------------------------------------*/
.about-mission {
  background: #faf7f4;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.about-intro h2 {
  margin-bottom: 1.5rem;
  color: #1e2d3d;
}
.about-intro .lead {
  color: #2c3e50;
  line-height: 1.7;
}

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

.mission-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-card__icon {
  width: 70px;
  height: 70px;
  background: #064273;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 28px;
  box-shadow: none;
}

.mission-card h3 {
  margin-bottom: 1rem;
  color: #1e2d3d;
  font-size: 1.25rem;
}

.mission-card p {
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
}

.about-founder {
  background: #f3ede6;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.founder-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.founder-content h2 {
  margin-bottom: 1.5rem;
  color: #1e2d3d;
}
.founder-content .lead {
  color: #76b6c4;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.founder-content p {
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.7;
}

.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.credential i {
  color: #064273;
  font-size: 18px;
  width: 24px;
  flex-shrink: 0;
}
.credential span {
  color: #1e2d3d;
  font-weight: 500;
}

.services-philosophy {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.services-philosophy h3 {
  margin-bottom: 1.5rem;
  color: #042a49;
  font-size: 1.5rem;
}
.services-philosophy p {
  color: #2c3e50;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}
.services-philosophy p strong {
  color: #042a49;
}

.about-expect {
  background: #faf7f4;
}

.expect-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.expect-content h2 {
  margin-bottom: 1.5rem;
  color: #1e2d3d;
}
.expect-content .lead {
  color: #2c3e50;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left;
}

.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.expect-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.expect-item i {
  color: #064273;
  font-size: 24px;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.expect-item div {
  flex: 1;
}
.expect-item div h4 {
  margin-bottom: 0.5rem;
  color: #1e2d3d;
  font-size: 1.1rem;
}
.expect-item div p {
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
}

.about-cta {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.about-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 66, 115, 0.8), rgba(29, 162, 216, 0.8));
  z-index: 1;
}

.about-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}
.about-cta__content h2 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 2.5rem;
}
.about-cta__content p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .mission-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .expect-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-intro {
    margin-bottom: 2rem;
  }

  .mission-card {
    padding: 2rem 1.5rem;
  }

  .mission-card__icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .founder-grid {
    gap: 2rem;
  }

  .founder-credentials {
    justify-content: center;
  }

  .services-philosophy {
    padding: 2rem;
  }

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

  .expect-item {
    padding: 1.5rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .about-cta {
    min-height: 300px;
  }

  .about-cta__content {
    padding: 0 1rem;
  }
  .about-cta__content h2 {
    font-size: 2rem;
  }
  .about-cta__content p {
    font-size: 1.1rem;
  }
}
@media (max-width: 640px) {
  .mission-card {
    padding: 1.5rem;
  }

  .mission-card__icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .services-philosophy {
    padding: 1.5rem;
  }

  .expect-item {
    padding: 1.25rem;
  }

  .about-cta__content h2 {
    font-size: 1.75rem;
  }
}
/*--------------------------------------------------------------
# CLEAN SERVICES PAGE
--------------------------------------------------------------*/
.services-main {
  background: #faf7f4;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.services-intro h2 {
  margin-bottom: 1.5rem;
  color: #1e2d3d;
}
.services-intro .lead {
  color: #2c3e50;
}

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

.service-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 66, 115, 0.08);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.service-card--primary {
  background: #064273;
  color: white;
}
.service-card--primary * {
  color: white !important;
}
.service-card--primary h3, .service-card--primary p, .service-card--primary span {
  color: white !important;
}
.service-card--primary .service-card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
}
.service-card--primary .service-feature {
  color: white !important;
}
.service-card--primary .service-feature i {
  color: white !important;
}
.service-card--primary .service-feature span {
  color: white !important;
}
.service-card--primary .btn, .service-card--primary .btn--lg {
  color: white !important;
  background: transparent !important;
  border: 2px solid white !important;
}
.service-card--primary .btn:hover, .service-card--primary .btn--lg:hover {
  background: white !important;
  color: #064273 !important;
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: #e8ddd0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #042a49;
  font-size: 32px;
  box-shadow: none;
}

.service-card__content h3 {
  margin-bottom: 1.5rem;
  color: #1e2d3d;
  font-size: 1.5rem;
}
.service-card__content > p {
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #2c3e50;
  font-size: 15px;
}
.service-feature i {
  color: #064273;
  font-size: 16px;
  flex-shrink: 0;
}

.services-philosophy {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: #f3ede6;
  border-radius: 20px;
}
.services-philosophy h3 {
  margin-bottom: 1.5rem;
  color: #042a49;
  font-size: 1.5rem;
}
.services-philosophy p {
  color: #2c3e50;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}
.services-philosophy p strong {
  color: #042a49;
}

.services-investment {
  background: #f3ede6;
}

.investment-simple {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.investment-simple h2 {
  margin-bottom: 1.5rem;
  color: #1e2d3d;
}
.investment-simple > p {
  color: #2c3e50;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.investment-note {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  margin-bottom: 3rem;
  border-left: 4px solid #064273;
}
.investment-note i {
  color: #064273;
  font-size: 24px;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.investment-note div {
  flex: 1;
}
.investment-note div h4 {
  color: #042a49;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.investment-note div p {
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
}

.services-cta {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.services-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.services-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 66, 115, 0.8), rgba(29, 162, 216, 0.8));
  z-index: 1;
}

.services-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}
.services-cta__content h2 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 2.5rem;
}
.services-cta__content p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .services-grid {
    gap: 2rem;
  }

  .service-card {
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-card__icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .services-philosophy {
    padding: 2rem;
    margin: 2rem 0;
  }

  .investment-note {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .services-cta {
    min-height: 300px;
  }

  .services-cta__content h2 {
    font-size: 2rem;
  }
  .services-cta__content p {
    font-size: 1.1rem;
  }
}
@media (max-width: 640px) {
  .service-card {
    padding: 1.5rem;
  }

  .service-card__icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 1.5rem;
  }

  .service-features {
    gap: 0.75rem;
  }

  .service-feature {
    font-size: 14px;
  }

  .services-philosophy {
    padding: 1.5rem;
  }

  .investment-note {
    padding: 1.5rem;
  }

  .services-cta__content {
    padding: 0 1rem;
  }
  .services-cta__content h2 {
    font-size: 1.75rem;
  }
}
/*--------------------------------------------------------------
# SIMPLIFIED CONTACT PAGE
--------------------------------------------------------------*/
.contact-simple {
  background: #faf7f4;
}

.contact-simple__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-simple__intro {
  margin-bottom: 4rem;
}
.contact-simple__intro h2 {
  margin-bottom: 1.5rem;
  color: #1e2d3d;
}
.contact-simple__intro .lead {
  color: #2c3e50;
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-option {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 66, 115, 0.08);
}
.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.contact-option--primary {
  background: #064273;
  color: white;
}
.contact-option--primary * {
  color: white !important;
}
.contact-option--primary h3, .contact-option--primary p {
  color: white !important;
}
.contact-option--primary .contact-option__icon {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
}
.contact-option--primary .btn, .contact-option--primary .btn--lg {
  color: white !important;
  background: transparent !important;
  border: 2px solid white !important;
}
.contact-option--primary .btn:hover, .contact-option--primary .btn--lg:hover {
  background: white !important;
  color: #064273 !important;
}

.contact-option__icon {
  width: 80px;
  height: 80px;
  background: #e8ddd0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #042a49;
  font-size: 32px;
}

.contact-option__content h3 {
  margin-bottom: 1rem;
  color: #1e2d3d;
  font-size: 1.5rem;
}
.contact-option__content p {
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #2c3e50;
  font-size: 15px;
}
.contact-detail i {
  color: #064273;
  font-size: 18px;
}

.contact-faq {
  background: #f3ede6;
}

.contact-faq__content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-faq__content h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #1e2d3d;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-accordion__item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #064273;
  overflow: hidden;
}
.faq-accordion__item[open] .faq-accordion__question::after {
  transform: rotate(180deg);
}

.faq-accordion__question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  color: #042a49;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 500;
  user-select: none;
}
.faq-accordion__question::-webkit-details-marker {
  display: none;
}
.faq-accordion__question::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #064273;
  border-bottom: 2px solid #064273;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  margin-bottom: 3px;
}

.faq-accordion__answer {
  padding: 0 2rem 1.5rem;
}
.faq-accordion__answer p {
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-option {
    padding: 2rem 1.5rem;
  }

  .contact-option__icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 1.5rem;
  }

  .contact-details {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .faq-accordion__question {
    padding: 1.25rem 1.5rem;
  }

  .faq-accordion__answer {
    padding: 0 1.5rem 1.25rem;
  }
}
@media (max-width: 640px) {
  .contact-simple__intro {
    margin-bottom: 3rem;
  }

  .contact-option {
    padding: 1.5rem;
  }

  .contact-option__content h3 {
    font-size: 1.25rem;
  }
}
/*--------------------------------------------------------------
# CONTACT MODAL
--------------------------------------------------------------*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.9);
  transition: all 0.3s ease;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 0;
  border-bottom: 1px solid rgba(6, 66, 115, 0.1);
  margin-bottom: 2rem;
}
.modal__header h2 {
  color: #1e2d3d;
  margin: 0;
  font-size: 1.5rem;
}

.modal__close {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2c3e50;
  transition: all 0.3s ease;
}
.modal__close:hover {
  background: rgba(29, 162, 216, 0.1);
  color: #042a49;
}
.modal__close i {
  font-size: 20px;
}

.modal__body {
  padding: 0 2rem 2rem;
}

.modal__intro {
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.modal-form .form-group {
  margin-bottom: 1.25rem;
}
.modal-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1e2d3d;
  font-size: 14px;
}
.modal-form .form-group input, .modal-form .form-group select, .modal-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}
.modal-form .form-group input:focus, .modal-form .form-group select:focus, .modal-form .form-group textarea:focus {
  outline: none;
  border-color: #064273;
  box-shadow: 0 0 0 3px rgba(29, 162, 216, 0.15);
}
.modal-form .form-group input::placeholder, .modal-form .form-group select::placeholder, .modal-form .form-group textarea::placeholder {
  color: #9CA3AF;
}
.modal-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.modal-form .form-group select {
  cursor: pointer;
}
.modal-form .btn--full {
  width: 100%;
  margin-top: 0.5rem;
}
.modal-form .form-note {
  text-align: center;
  font-size: 12px;
  color: #6B7280;
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 1rem;
  }

  .modal {
    max-height: 95vh;
  }

  .modal__header {
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1.5rem;
  }
  .modal__header h2 {
    font-size: 1.25rem;
  }

  .modal__body {
    padding: 0 1.5rem 1.5rem;
  }

  .modal-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .modal-form .form-group {
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .modal-overlay {
    padding: 0.5rem;
  }

  .modal__header {
    padding: 1rem 1rem 0;
    margin-bottom: 1rem;
  }

  .modal__body {
    padding: 0 1rem 1rem;
  }
}
.modal-open {
  overflow: hidden;
}

/*--------------------------------------------------------------
# RESOURCES PAGE SECTIONS
--------------------------------------------------------------*/
.resources-intro {
  background: linear-gradient(180deg, #faf7f4 0%, #f3ede6 100%);
}

.resources-intro__content {
  max-width: 800px;
  margin: 0 auto;
}

.resource-category:nth-child(even) {
  background: #f3ede6;
}

.herbal-section {
  background: #f3ede6;
}

.resource-category__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.resource-category__icon {
  width: 80px;
  height: 80px;
  background: #064273;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  flex-shrink: 0;
}

.resource-category__content {
  text-align: left;
}
.resource-category__content h2 {
  margin-bottom: 1rem;
  color: #1e2d3d;
}
.resource-category__content p {
  color: #064273;
  margin: 0;
}

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

.resource-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 66, 115, 0.1);
  display: flex;
  flex-direction: column;
}
.resource-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 66, 115, 0.2);
}

.resource-item__content {
  padding: 2rem;
  flex: 1;
}
.resource-item__content h3 {
  margin-bottom: 1rem;
  color: #1e2d3d;
  font-size: 20px;
}
.resource-item__content p {
  color: #064273;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.resource-item__footer {
  padding: 1rem 2rem;
  background: #f3ede6;
  border-top: 1px solid rgba(6, 66, 115, 0.1);
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #042a49;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.resource-link:hover {
  color: #1e2d3d;
}
.resource-link i {
  font-size: 16px;
}

.recommended-reading {
  background: #faf7f4;
}

.recommended-reading__header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.book-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 66, 115, 0.1);
}
.book-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 66, 115, 0.2);
}

.book-item__icon {
  width: 64px;
  height: 64px;
  background: #064273;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 1.5rem;
}

.book-item__content h3 {
  margin-bottom: 0.5rem;
  color: #1e2d3d;
  font-size: 18px;
  line-height: 1.3;
}
.book-item__content .book-author {
  color: #76b6c4;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}
.book-item__content p {
  color: #064273;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.newsletter-signup {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.newsletter-signup__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.newsletter-signup__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newsletter-signup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 66, 115, 0.85), rgba(29, 162, 216, 0.85));
  z-index: 1;
}

.newsletter-signup__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.newsletter-header {
  margin-bottom: 3rem;
}
.newsletter-header h2 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.newsletter-header p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin: 0;
}

.newsletter-benefits {
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.benefit-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.checkbox-option .checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  width: 100%;
}
.checkbox-option .checkbox-label:hover {
  background: rgba(29, 162, 216, 0.08);
  border-color: rgba(29, 162, 216, 0.2);
  transform: translateY(-1px);
}
.checkbox-option input[type=checkbox] {
  display: none;
}
.checkbox-option span {
  font-size: 14px;
  color: #1e2d3d;
  line-height: 1.4;
  font-weight: 500;
  flex: 1;
}

.checkbox-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.checkbox-checkmark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkbox-option input[type=checkbox]:checked + .checkbox-checkmark {
  background: #064273;
  border-color: #064273;
  box-shadow: 0 2px 8px rgba(29, 162, 216, 0.3);
}
.checkbox-option input[type=checkbox]:checked + .checkbox-checkmark::after {
  transform: rotate(45deg) scale(1);
}

.checkbox-option .checkbox-label:focus-within .checkbox-checkmark {
  outline: 2px solid #064273;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .checkbox-option .checkbox-label {
    padding: 0.75rem;
  }
}
@media (max-width: 1024px) {
  .resource-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .resource-category__header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .resource-category__header .resource-category__content {
    text-align: center;
  }

  .resource-category__icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .resource-item__content {
    padding: 1.5rem;
  }

  .resource-item__footer {
    padding: 1rem 1.5rem;
  }

  .books-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .book-item {
    padding: 1.5rem;
  }

  .book-item__icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .newsletter-form-wrapper {
    padding: 2rem;
  }

  .newsletter-benefits {
    margin-bottom: 2rem;
  }
}
@media (max-width: 640px) {
  .newsletter-signup {
    min-height: 600px;
  }

  .newsletter-form-wrapper {
    padding: 1.5rem;
  }

  .benefit-item {
    padding: 0.75rem 0;
  }

  .benefit-item__icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .resource-tags {
    gap: 0.25rem;
  }

  .resource-tag {
    font-size: 11px;
    padding: 0.2rem 0.6rem;
  }
}
/*--------------------------------------------------------------
# CLEAN CIRCLES PAGE
--------------------------------------------------------------*/
.circles-values {
  background: #faf7f4;
}

.circles-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.circles-intro .lead {
  color: #2c3e50;
  line-height: 1.7;
  font-size: 1.2rem;
}

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

.value-circle {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 66, 115, 0.08);
}
.value-circle:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 66, 115, 0.15);
}

.value-circle__icon {
  width: 80px;
  height: 80px;
  background: #064273;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 1.5rem;
  box-shadow: none;
}

.value-circle h3 {
  margin-bottom: 1rem;
  color: #1e2d3d;
  font-size: 1.25rem;
}

.value-circle p {
  color: #2c3e50;
  margin: 0;
  line-height: 1.6;
}

.circles-launch {
  background: #f3ede6;
}

.launch-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #064273;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: none;
  margin-bottom: 2rem;
}
.launch-badge i {
  font-size: 18px;
}

.launch-content h2 {
  color: #042a49;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
}
.launch-content .lead {
  color: #2c3e50;
  font-size: 1.1rem;
  margin: 0;
}

.circles-offerings {
  background: #faf7f4;
}

.offerings-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.offerings-header h2 {
  color: #1e2d3d;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
}
.offerings-header p {
  color: #2c3e50;
  font-size: 1.1rem;
}

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

.offering-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}
.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.offering-card__icon {
  width: 70px;
  height: 70px;
  background: #064273;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 1.5rem;
  box-shadow: none;
}

.offering-card h3 {
  margin-bottom: 0.5rem;
  color: #1e2d3d;
  font-size: 1.25rem;
}

.offering-frequency {
  background: #def3f6;
  color: #042a49;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: inline-block;
}

.offering-card p {
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.other-gatherings {
  background: #f3ede6;
  padding: 6rem 0;
}

.other-gatherings__header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}
.other-gatherings__header h2 {
  color: #1e2d3d;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
}
.other-gatherings__header p {
  color: #2c3e50;
  font-size: 1.1rem;
}

.gatherings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gathering-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}
.gathering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.gathering-card--wide {
  grid-column: 1/-1;
  min-height: 280px;
  flex-direction: row;
}
.gathering-card--wide .gathering-card__image {
  width: 40%;
  height: 100%;
}
.gathering-card--wide .gathering-card__content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.gathering-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.gathering-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gathering-card:hover .gathering-card__image img {
  transform: scale(1.05);
}

.gathering-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.gathering-card__icon {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #042a49;
  font-size: 20px;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.gathering-card__content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gathering-card__content h3 {
  margin-bottom: 1rem;
  color: #1e2d3d;
  font-size: 1.25rem;
}
.gathering-card__content p {
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.circles-cta {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.circles-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.circles-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.circles-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 66, 115, 0.8), rgba(29, 162, 216, 0.8));
  z-index: 1;
}

.circles-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}
.circles-cta__content h2 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 2.5rem;
}
.circles-cta__content p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .offerings-grid {
    gap: 1.5rem;
  }

  .gatherings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .values-grid {
    gap: 1.5rem;
  }

  .value-circle {
    padding: 2rem 1.5rem;
  }

  .value-circle__icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

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

  .offering-card {
    padding: 2rem 1.5rem;
  }

  .offering-card__icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .gatherings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .gatherings-grid .gathering-card--wide {
    flex-direction: column;
  }
  .gatherings-grid .gathering-card--wide .gathering-card__image {
    width: 100%;
    height: 200px;
  }
  .gatherings-grid .gathering-card--wide .gathering-card__content {
    width: 100%;
    padding: 2rem;
  }

  .gathering-card {
    min-height: 300px;
  }

  .gathering-card__image {
    height: 160px;
  }

  .gathering-card__content {
    padding: 1.5rem;
  }

  .gathering-card__icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 1rem;
    left: 1rem;
  }

  .circles-cta {
    min-height: 300px;
  }

  .circles-cta__content {
    padding: 0 1rem;
  }
  .circles-cta__content h2 {
    font-size: 2rem;
  }
  .circles-cta__content p {
    font-size: 1.1rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .launch-badge {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }
  .launch-badge i {
    font-size: 16px;
  }

  .offering-card {
    padding: 1.5rem;
  }

  .offering-card__icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .circles-cta__content h2 {
    font-size: 1.75rem;
  }
}
/*--------------------------------------------------------------
# COMMUNITY CTA SECTIONS
--------------------------------------------------------------*/
.community-cta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.community-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.community-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 66, 115, 0.8), rgba(29, 162, 216, 0.8));
  z-index: 1;
}

.community-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.community-cta__content h2 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.community-cta__content p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .community-cta {
    min-height: 500px;
  }
}
/*--------------------------------------------------------------
# ANIMATIONS
--------------------------------------------------------------*/
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  animation: staggerFadeIn 0.8s ease forwards;
}

.stagger-children > *:nth-child(1) {
  animation-delay: 0.1s;
}

.stagger-children > *:nth-child(2) {
  animation-delay: 0.2s;
}

.stagger-children > *:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes staggerFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scroll-wheel {
  0%, 20% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# PROFESSIONAL CHW WEBSITE - COMPLETE CSS
--------------------------------------------------------------*/

/*# sourceMappingURL=main.css.map */
