@charset "UTF-8";
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Waverly CF", system-ui, sans-serif;
  background: #FAF7F2;
  color: #1f3446;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1f3446;
  margin-bottom: 0.875rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: #1f3446;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.0625rem;
  color: rgb(96.48, 104.08, 110.92);
  line-height: 1.75;
}

.btn, .btn-white, .btn-gold, .btn-ghost, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.875rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover, .btn-white:hover, .btn-gold:hover, .btn-ghost:hover, .btn-primary:hover {
  transform: translateY(-2px);
}
.btn:active, .btn-white:active, .btn-gold:active, .btn-ghost:active, .btn-primary:active {
  transform: translateY(0);
}

.btn-primary {
  background: #203446;
  color: white;
  border-color: #203446;
}
.btn-primary:hover {
  background: rgb(17.6, 28.6, 38.5);
  border-color: rgb(17.6, 28.6, 38.5);
  box-shadow: 0 8px 28px rgba(32, 52, 70, 0.32);
}

.btn-ghost {
  background: transparent;
  color: #203446;
  border-color: rgba(32, 52, 70, 0.3);
}
.btn-ghost:hover {
  border-color: #203446;
  background: rgba(32, 52, 70, 0.05);
}

.btn-gold {
  background: #3e99a5;
  color: #1f3446;
  border-color: #3e99a5;
}
.btn-gold:hover {
  background: rgb(50.8563876652, 125.5004405286, 135.3436123348);
  border-color: rgb(50.8563876652, 125.5004405286, 135.3436123348);
  box-shadow: 0 8px 28px rgba(62, 153, 165, 0.35);
}

.btn-white {
  background: white;
  color: #203446;
  border-color: white;
}
.btn-white:hover {
  background: #FAF7F2;
  box-shadow: 0 8px 28px rgba(31, 52, 70, 0.15);
}

#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1.25rem 0;
  transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#nav.scrolled {
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(212, 126, 101, 0.25), 0 4px 20px rgba(31, 52, 70, 0.06);
  padding: 0.875rem 0;
}
#nav .nav-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #nav .nav-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
#nav .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
#nav .nav-logo-img {
  height: 55px;
  width: auto;
  display: block;
}
#nav .nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
@media (min-width: 900px) {
  #nav .nav-links {
    display: flex;
  }
}
#nav .nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(96.48, 104.08, 110.92);
  transition: color 0.2s;
}
#nav .nav-links a:hover {
  color: #203446;
}
#nav .nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#nav .nav-cta {
  display: none;
}
@media (min-width: 900px) {
  #nav .nav-cta {
    display: inline-flex;
  }
}
#nav .nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
@media (min-width: 900px) {
  #nav .nav-toggle {
    display: none;
  }
}
#nav .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #203446;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#nav .nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#nav .nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
#nav .nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: #FAF7F2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
#mobile-menu.open {
  display: flex;
}
#mobile-menu a {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 500;
  color: #1f3446;
  transition: color 0.2s;
}
#mobile-menu a:hover {
  color: #3e99a5;
}
#mobile-menu .mobile-cta {
  margin-top: 1rem;
}

#hero {
  min-height: 100svh;
  padding-top: 8rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#hero .hero-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #hero .hero-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  #hero .hero-inner {
    grid-template-columns: 1fr 480px;
    gap: 4rem;
  }
}
#hero .hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(220.26, 236.64, 238.8);
  color: rgb(31.3550660793, 77.3762114537, 83.4449339207);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
#hero .hero-badge-pill .pill-dot {
  width: 8px;
  height: 8px;
  background: #3e99a5;
  border-radius: 50%;
  display: block;
}
#hero h1 {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 600;
  line-height: 1.07;
  color: #1f3446;
  margin-bottom: 1.5rem;
}
#hero h1 em {
  font-style: italic;
  color: #203446;
}
#hero h1 .h1-gold {
  color: #3e99a5;
  display: block;
}
#hero .hero-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgb(96.48, 104.08, 110.92);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
#hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  margin-bottom: 3rem;
}
#hero .hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgb(96.48, 104.08, 110.92);
}
#hero .hero-trust .trust-avatars {
  display: flex;
}
#hero .hero-trust .trust-avatars .ta {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #FAF7F2;
  background: linear-gradient(135deg, rgb(220.26, 236.64, 238.8), #3e99a5);
  margin-left: -8px;
}
#hero .hero-trust .trust-avatars .ta:first-child {
  margin-left: 0;
}
#hero .hero-trust .trust-avatars .ta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #203446;
}
#hero .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
#hero .hero-visual .hero-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgb(220.26, 236.64, 238.8);
  z-index: 0;
}
#hero .hero-visual .hero-ring::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1.5px dashed rgba(62, 153, 165, 0.45);
}
#hero .hero-visual .hero-photo {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 390px;
  border-radius: 55% 45% 50% 50%/50% 45% 55% 50%;
  background: linear-gradient(155deg, rgb(101.1938325991, 186.0202643172, 197.2061674009) 0%, #3e99a5 45%, #203446 100%);
  box-shadow: 0 28px 72px rgba(32, 52, 70, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero .hero-visual .hero-photo .photo-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  padding: 1rem;
}
#hero .hero-visual .hero-photo .photo-placeholder .pp-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
#hero .hero-visual .hero-photo .photo-placeholder .pp-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
#hero .hero-visual .hero-photo::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
#hero .hero-visual .float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 8px 36px rgba(31, 52, 70, 0.12);
  z-index: 2;
}
#hero .hero-visual .float-card--years {
  top: 10%;
  right: 2%;
}
#hero .hero-visual .float-card--years .fc-num {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3e99a5;
  line-height: 1;
}
#hero .hero-visual .float-card--years .fc-label {
  font-size: 0.72rem;
  color: rgb(96.48, 104.08, 110.92);
}
#hero .hero-visual .float-card--sessions {
  bottom: 14%;
  left: 2%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
#hero .hero-visual .float-card--sessions .fc-icon {
  font-size: 1.375rem;
}
#hero .hero-visual .float-card--sessions .fc-num {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #203446;
  line-height: 1;
}
#hero .hero-visual .float-card--sessions .fc-label {
  font-size: 0.7rem;
  color: rgb(96.48, 104.08, 110.92);
}
#hero .hero-stats-bar {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #hero .hero-stats-bar {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#hero .hero-stats-bar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 126, 101, 0.28);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
}
#hero .hero-stats-bar .stat .stat-num {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #203446;
  line-height: 1;
}
#hero .hero-stats-bar .stat .stat-num .suf {
  color: #3e99a5;
}
#hero .hero-stats-bar .stat .stat-label {
  font-size: 0.8125rem;
  color: rgb(96.48, 104.08, 110.92);
  margin-top: 0.2rem;
}
#hero .hero-deco-word {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-55%) rotate(-90deg);
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 16vw;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 126, 101, 0.1);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #hero .hero-deco-word {
    display: none;
  }
}

.marquee-band {
  background: #203446;
  border-top: 3px solid #3e99a5;
  border-bottom: 3px solid #3e99a5;
  padding: 0.875rem 0;
  overflow: hidden;
}
.marquee-band .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-band .marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.marquee-band .marquee-inner .mi-item {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 0 1.75rem;
}
.marquee-band .marquee-inner .mi-sep {
  color: #3e99a5;
  font-size: 1rem;
  padding: 0 0.25rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#about {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: white;
}
#about .about-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #about .about-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#about .about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  #about .about-inner {
    grid-template-columns: 400px 1fr;
  }
}
#about .about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
#about .about-visual .photo-blob {
  width: 340px;
  height: 420px;
  background: linear-gradient(145deg, rgb(220.26, 236.64, 238.8) 0%, #3e99a5 50%, rgb(24, 39, 52.5) 100%);
  /* make the container oval */
  border-radius: 50%/60%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 56px rgba(32, 52, 70, 0.22);
  position: relative;
  overflow: hidden;
}
#about .about-visual .photo-blob .pb-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
#about .about-visual .photo-blob .pb-content .pb-icon {
  font-size: 3rem;
  opacity: 0.65;
  margin-bottom: 0.625rem;
}
#about .about-visual .photo-blob .pb-content .pb-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
#about .about-visual .photo-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  position: relative;
  z-index: 2;
  display: block;
}
#about .about-visual .photo-blob::after {
  content: "";
  position: absolute;
  top: 8%;
  left: 10%;
  width: 80%;
  height: 70%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
#about .about-visual .about-badge {
  position: absolute;
  bottom: 4%;
  right: 0%;
  background: #203446;
  color: white;
  border-radius: 16px;
  padding: 1rem 1.375rem;
  box-shadow: 0 10px 28px rgba(32, 52, 70, 0.35);
  z-index: 3;
}
#about .about-visual .about-badge strong {
  display: block;
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.875rem;
  color: #3e99a5;
  line-height: 1;
}
#about .about-visual .about-badge span {
  font-size: 0.725rem;
  opacity: 0.75;
}
#about .about-visual .about-deco-circle {
  position: absolute;
  top: -6%;
  left: -6%;
  width: 110px;
  height: 110px;
  background: rgb(220.26, 236.64, 238.8);
  border-radius: 50%;
  z-index: -1;
}
#about .about-text h2 {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: #1f3446;
  margin-bottom: 0.875rem;
}
#about .about-text .about-lead {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #203446;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
#about .about-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgb(96.48, 104.08, 110.92);
  margin-bottom: 1rem;
}
#about .about-text .creds-list {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
#about .about-text .creds-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgb(96.48, 104.08, 110.92);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgb(221.55, 224.55, 227.25);
}
#about .about-text .creds-list li .cred-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #3e99a5;
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 8px 36px rgba(31, 52, 70, 0.12);
  z-index: 3;
}
.float-card--years .fc-num {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3e99a5;
  line-height: 1;
}
.float-card--years .fc-label {
  font-size: 0.72rem;
  color: rgb(96.48, 104.08, 110.92);
}
.float-card--sessions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.float-card--sessions .fc-icon {
  font-size: 1.375rem;
}
.float-card--sessions .fc-num {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #203446;
  line-height: 1;
}
.float-card--sessions .fc-label {
  font-size: 0.7rem;
  color: rgb(96.48, 104.08, 110.92);
}

#services {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #FAF7F2;
}
#services .services-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #services .services-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  #services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#services .service-card {
  background: white;
  border: 1.5px solid rgba(212, 126, 101, 0.22);
  border-radius: 20px;
  padding: 2rem 1.875rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s;
}
#services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(32, 52, 70, 0.11);
  border-color: #3e99a5;
}
#services .service-card:hover .sc-arrow {
  transform: translateX(4px);
}
#services .service-card .sc-num {
  position: absolute;
  top: -0.75rem;
  right: 0.75rem;
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(62, 153, 165, 0.11);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
#services .service-card .sc-icon {
  width: 46px;
  height: 46px;
  background: rgb(220.26, 236.64, 238.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
#services .service-card h3 {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f3446;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
#services .service-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgb(96.48, 104.08, 110.92);
  margin-bottom: 1.5rem;
}
#services .service-card .sc-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #203446;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s;
}
#services .service-card .sc-link .sc-arrow {
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#services .service-card .sc-link:hover {
  color: #3e99a5;
}

#approach {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #203446;
}
#approach .approach-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #approach .approach-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#approach .approach-quote-wrap {
  text-align: center;
  margin-bottom: 5rem;
}
#approach .approach-quote-wrap blockquote {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: white;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding: 0 1.5rem;
}
#approach .approach-quote-wrap blockquote::before, #approach .approach-quote-wrap blockquote::after {
  font-size: 8rem;
  line-height: 0;
  position: absolute;
  color: rgba(62, 153, 165, 0.35);
  font-style: normal;
}
#approach .approach-quote-wrap blockquote::before {
  content: "“";
  top: 1.25rem;
  left: -0.75rem;
}
#approach .approach-quote-wrap blockquote::after {
  content: "”";
  bottom: -0.5rem;
  right: -0.75rem;
}
#approach .approach-quote-wrap .quote-byline {
  display: block;
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(62, 153, 165, 0.75);
}
#approach .pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  #approach .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#approach .pillar {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#approach .pillar:hover {
  background: rgba(255, 255, 255, 0.12);
}
#approach .pillar .pillar-num {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(62, 153, 165, 0.3);
  line-height: 1;
  margin-bottom: 0.375rem;
}
#approach .pillar h3 {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: white;
  line-height: 1.15;
  margin-bottom: 0.875rem;
}
#approach .pillar p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

#process {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: white;
}
#process .process-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #process .process-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#process .steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(212, 126, 101, 0.18);
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #process .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#process .process-step {
  background: white;
  padding: 3rem 2.5rem;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#process .process-step:hover {
  background: rgb(220.26, 236.64, 238.8);
}
#process .process-step .ps-num {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(62, 153, 165, 0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
}
#process .process-step h3 {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.625rem;
  font-weight: 600;
  color: #1f3446;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
#process .process-step p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgb(96.48, 104.08, 110.92);
}

#testimonials {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #FAF7F2;
}
#testimonials .testimonials-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #testimonials .testimonials-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#testimonials .testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  #testimonials .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#testimonials .testi-card {
  background: white;
  border: 1px solid rgba(212, 126, 101, 0.2);
  border-radius: 20px;
  padding: 2rem 1.875rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#testimonials .testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(32, 52, 70, 0.1);
}
#testimonials .testi-card .tc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.125rem;
}
#testimonials .testi-card .tc-stars span {
  color: #3e99a5;
  font-size: 0.875rem;
}
#testimonials .testi-card .tc-quote-mark {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: #3e99a5;
  display: block;
  margin-bottom: 1rem;
}
#testimonials .testi-card blockquote {
  font-size: 0.9875rem;
  line-height: 1.8;
  color: rgb(96.48, 104.08, 110.92);
  font-style: italic;
  margin-bottom: 1.5rem;
}
#testimonials .testi-card .tc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#testimonials .testi-card .tc-author .tc-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(220.26, 236.64, 238.8), #3e99a5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #203446;
}
#testimonials .testi-card .tc-author .tc-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f3446;
}
#testimonials .testi-card .tc-author .tc-info span {
  font-size: 0.775rem;
  color: #d47e65;
}

#faq {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: white;
}
#faq .faq-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #faq .faq-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#faq .faq-inner {
  max-width: 780px;
}
#faq .faq-item {
  border-bottom: 1px solid rgba(212, 126, 101, 0.28);
}
#faq .faq-item:first-of-type {
  border-top: 1px solid rgba(212, 126, 101, 0.28);
}
#faq .faq-item .faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
#faq .faq-item .faq-btn span {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f3446;
  transition: color 0.2s;
  line-height: 1.3;
}
#faq .faq-item .faq-btn .faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgb(221.55, 224.55, 227.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#faq .faq-item .faq-btn .faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: #203446;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), stroke 0.2s;
}
#faq .faq-item .faq-btn:hover span {
  color: #203446;
}
#faq .faq-item .faq-btn.open span {
  color: #203446;
}
#faq .faq-item .faq-btn.open .faq-icon {
  background: #3e99a5;
}
#faq .faq-item .faq-btn.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: white;
}
#faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#faq .faq-item .faq-answer p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgb(96.48, 104.08, 110.92);
  padding-bottom: 1.75rem;
}

#pricing {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: rgb(221.55, 224.55, 227.25);
}
#pricing .pricing-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #pricing .pricing-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#pricing .pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 660px;
  margin: 0 auto;
}
@media (min-width: 580px) {
  #pricing .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
#pricing .pricing-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#pricing .pricing-card:hover {
  border-color: #3e99a5;
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(62, 153, 165, 0.16);
}
#pricing .pricing-card.featured-card {
  background: #203446;
}
#pricing .pricing-card.featured-card .pc-type, #pricing .pricing-card.featured-card .pc-period, #pricing .pricing-card.featured-card .pc-feature {
  color: rgba(255, 255, 255, 0.7) !important;
}
#pricing .pricing-card.featured-card .pc-amount {
  color: #3e99a5 !important;
}
#pricing .pricing-card.featured-card .pc-currency {
  color: rgba(62, 153, 165, 0.8) !important;
}
#pricing .pricing-card.featured-card::before {
  border-color: rgba(62, 153, 165, 0.4) !important;
}
#pricing .pricing-card .pc-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d47e65;
  margin-bottom: 1.5rem;
}
#pricing .pricing-card .pc-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
#pricing .pricing-card .pc-price .pc-currency {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(96.48, 104.08, 110.92);
  margin-top: 0.6rem;
}
#pricing .pricing-card .pc-price .pc-amount {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: #203446;
}
#pricing .pricing-card .pc-period {
  font-size: 0.8125rem;
  color: rgb(96.48, 104.08, 110.92);
  margin-bottom: 2rem;
}
#pricing .pricing-card .pc-features {
  text-align: left;
  margin-bottom: 2rem;
}
#pricing .pricing-card .pc-features .pc-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: rgb(96.48, 104.08, 110.92);
  padding: 0.4rem 0;
}
#pricing .pricing-card .pc-features .pc-feature::before {
  content: "✓";
  color: #3e99a5;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
#pricing .pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1rem;
  color: rgb(96.48, 104.08, 110.92);
}
#pricing .pricing-note strong {
  color: #203446;
}

#contact {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #FAF7F2;
}
#contact .contact-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  #contact .contact-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
#contact .contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  #contact .contact-inner {
    grid-template-columns: 360px 1fr;
  }
}
#contact .contact-info-col h2 {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1f3446;
  margin-bottom: 1rem;
}
#contact .contact-info-col > p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgb(96.48, 104.08, 110.92);
  margin-bottom: 2.5rem;
}
#contact .contact-info-col .ci-items {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
#contact .contact-info-col .ci-items .ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
#contact .contact-info-col .ci-items .ci-item .ci-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgb(220.26, 236.64, 238.8);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
#contact .contact-info-col .ci-items .ci-item .ci-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d47e65;
  margin-bottom: 0.2rem;
}
#contact .contact-info-col .ci-items .ci-item .ci-text span, #contact .contact-info-col .ci-items .ci-item .ci-text a {
  font-size: 0.9375rem;
  color: #1f3446;
  transition: color 0.2s;
}
#contact .contact-info-col .ci-items .ci-item .ci-text a:hover {
  color: #3e99a5;
}
#contact .contact-form-col {
  background: white;
  border: 1px solid rgba(212, 126, 101, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
}
#contact .contact-form-col h3 {
  font-family: "Hardcover Variable", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #1f3446;
  margin-bottom: 0.375rem;
}
#contact .contact-form-col .form-sub {
  font-size: 0.9rem;
  color: rgb(96.48, 104.08, 110.92);
  margin-bottom: 2rem;
}
#contact .contact-form-col .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  #contact .contact-form-col .form-row {
    grid-template-columns: 1fr;
  }
}
#contact .contact-form-col .form-group {
  margin-bottom: 1.125rem;
}
#contact .contact-form-col .form-group label {
  display: block;
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #203446;
  margin-bottom: 0.375rem;
}
#contact .contact-form-col .form-group input, #contact .contact-form-col .form-group textarea, #contact .contact-form-col .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(212, 126, 101, 0.33);
  border-radius: 12px;
  font-size: 1rem;
  color: #1f3446;
  background: #FAF7F2;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  appearance: none;
  -webkit-appearance: none;
}
#contact .contact-form-col .form-group input:focus, #contact .contact-form-col .form-group textarea:focus, #contact .contact-form-col .form-group select:focus {
  outline: none;
  border-color: #3e99a5;
  box-shadow: 0 0 0 3px rgba(62, 153, 165, 0.16);
}
#contact .contact-form-col .form-group input::placeholder, #contact .contact-form-col .form-group textarea::placeholder, #contact .contact-form-col .form-group select::placeholder {
  color: rgb(227.5847715736, 172.7543147208, 156.8152284264);
}
#contact .contact-form-col .form-group textarea {
  resize: vertical;
  min-height: 110px;
}
#contact .contact-form-col .form-submit {
  margin-top: 0.375rem;
}
#contact .contact-form-col .form-submit .btn-primary {
  width: 100%;
}
#contact .contact-form-col .form-submit .form-privacy {
  margin-top: 0.875rem;
  text-align: center;
  font-size: 0.73rem;
  color: #d47e65;
}
#contact .contact-form-col .form-submit .form-privacy a {
  text-decoration: underline;
  opacity: 0.75;
}
#contact .contact-form-col .form-submit .form-privacy a:hover {
  opacity: 1;
}

footer {
  background: #1f3446;
  padding: 2.5rem 0;
}
footer .footer-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  footer .footer-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  footer .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
footer .footer-logo-img {
  height: 180px;
  width: auto;
  display: block;
}
footer .footer-logo span {
  color: #3e99a5;
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
footer .footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
footer .footer-links a:hover {
  color: #3e99a5;
}
footer .footer-legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  max-width: 360px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(1),
.reveal-left:nth-child(1),
.reveal-right:nth-child(1) {
  transition-delay: 0s;
}

.reveal:nth-child(2),
.reveal-left:nth-child(2),
.reveal-right:nth-child(2) {
  transition-delay: 0.09s;
}

.reveal:nth-child(3),
.reveal-left:nth-child(3),
.reveal-right:nth-child(3) {
  transition-delay: 0.18s;
}

.reveal:nth-child(4),
.reveal-left:nth-child(4),
.reveal-right:nth-child(4) {
  transition-delay: 0.27s;
}

.reveal:nth-child(5),
.reveal-left:nth-child(5),
.reveal-right:nth-child(5) {
  transition-delay: 0.36s;
}

.reveal:nth-child(6),
.reveal-left:nth-child(6),
.reveal-right:nth-child(6) {
  transition-delay: 0.45s;
}

.reveal:nth-child(7),
.reveal-left:nth-child(7),
.reveal-right:nth-child(7) {
  transition-delay: 0.54s;
}

.reveal:nth-child(8),
.reveal-left:nth-child(8),
.reveal-right:nth-child(8) {
  transition-delay: 0.63s;
}

.reveal:nth-child(9),
.reveal-left:nth-child(9),
.reveal-right:nth-child(9) {
  transition-delay: 0.72s;
}

.reveal:nth-child(10),
.reveal-left:nth-child(10),
.reveal-right:nth-child(10) {
  transition-delay: 0.81s;
}

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