
/* =========================================================
   01. RESET
========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================================
   02. ROOT VARIABLES
========================================================= */
:root {
  --_colors---black: #242424;
  --_colors---black-shade: #313131;
  --_colors---white: #ffffff;
  --_colors---white-shade: #b4b4b4;
  --_colors---green: #d1e09e;
  --_colors---light-green: #f7ffdb;
  --_colors---dark-green: #567000;
  --_colors---dark-grey: #4d4d4d;
  --_colors---grey: #989898;
  --_fonts---inter: Inter, sans-serif;

  --body: 0.875rem;
  --body-large: 1rem;
  --body-small: 0.75rem;
  --body-extra-large: 2.25rem;
  --h1: 4.5rem;
  --h2: 3rem;
  --h3: 1.5rem;
  --h4: 1.25rem;
  --h5: 1rem;
  --h6: 1rem;

  --_spacing---section-padding-top: 4.5rem;
  --_spacing---section-padding-left-and-right: 3.75rem;
}

/* =========================================================
   03. BASE / GLOBAL
========================================================= */
body {
  font-family: var(--_fonts---inter);
  background-color: var(--_colors---black);
  color: var(--_colors---white);
  font-size: var(--body);
  line-height: 140%;
  min-height: 100vh;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
  border: 0;
}

a {
  color: var(--_colors---white-shade);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--_colors---white);
}

p {
  color: var(--_colors---white-shade);
  margin-bottom: 0;
}

h1 {
  font-size: var(--h1);
  letter-spacing: -4px;
  margin: 0;
  font-weight: 400;
  line-height: 120%;
}

h2 {
  font-size: var(--h2);
  letter-spacing: -1.7px;
  margin: 0;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  font-size: var(--h3);
  margin: 0;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  font-size: var(--h4);
  margin: 0;
  font-weight: 400;
  line-height: 120%;
}

h5 {
  font-size: var(--h5);
  margin: 0;
  font-weight: 600;
  line-height: 120%;
}

h6 {
  font-size: var(--h6);
  margin: 0;
  font-weight: 400;
  line-height: 130%;
}

/* =========================================================
   04. UTILITY
========================================================= */
.page-content-wrapper {
  position: relative;
  min-height: 100vh;
}

.small-text {
  font-size: var(--body-small);
}

.large-text {
  font-size: var(--body-large);
  line-height: 130%;
}

.grey-text {
  color: var(--_colors---grey);
}

/* =========================================================
   05. SHARED BUTTON TEXT ANIMATION
========================================================= */
.button-text-wrapper {
  overflow: hidden;
  position: relative;
  max-height: 1.25rem;
}

.button-text {
  display: block;
  transition: transform 0.3s ease;
  line-height: 1.25rem;
}

.nav-button:hover .button-text,
.primary-button:hover .button-text {
  transform: translateY(-100%);
}

/* =========================================================
   06. NAVBAR
========================================================= */
.navbar {
  background-color: transparent;
  width: 100%;
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  background-color: var(--_colors---black-shade);
  outline: 4px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  max-width: 874px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  margin-right: auto;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* .brand-logo {
  width: 32px;
  height: 32px;
  display: block;
} */

.brand-logo {
  width: auto;
  height: 40px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-right: auto;
}

.nav-link {
  color: var(--_colors---white-shade);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.w--current {
  color: var(--_colors---white);
}

.nav-button {
  background-color: var(--_colors---white);
  color: var(--_colors---black);
  border-radius: 100px;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-button:hover {
  box-shadow: 0 0 8px 0 var(--_colors---green);
  color: var(--_colors---black);
}

/* =========================================================
   07. MOBILE MENU BUTTON
========================================================= */
.menu-button {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  background: transparent;
  border: none;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}

.menu-icon {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.menu-line {
  width: 100%;
  height: 2px;
  background-color: var(--_colors---white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-button.active .menu-line-1 {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.active .menu-line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.menu-button.active .menu-line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   08. MOBILE OVERLAY
========================================================= */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}



/* Hide desktop dashboard button on mobile */
@media (max-width: 767px) {
  .nav-button {
    display: none;
  }
}

/* Show mobile-only links only in mobile menu */
.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}

/* =========================================================
   09. SHARED SECTION / DASHED LINES / DIVIDERS
========================================================= */
.section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: var(--_spacing---section-padding-top) var(--_spacing---section-padding-left-and-right);
}

.content-container {
  position: relative;
  z-index: 2;
  gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 914px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.section-dashed-lines-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-dashed-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.16) 0 8px,
    transparent 8px 16px
  );
  background-repeat: repeat-y;
  background-size: 1px 16px;
}

.section-dashed-line:first-child {
  left: 25%;
  transform: translateX(-1px);
}

.section-dashed-line:last-child {
  right: 25%;
  transform: translateX(1px);
}

.section-divider-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  display: grid;
  grid-template-columns: 0.25fr minmax(0, 3.5fr) 0.25fr;
  z-index: 1;
  pointer-events: none;
}

.section-divider-wrapper.top {
  top: 0;
}

.section-divider-wrapper.bottom {
  top: auto;
  bottom: 0;
}

.section-divider {
  grid-column: 2;
  width: calc(100% - 2px);
  margin-left: 1px;
  margin-right: 1px;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.16) 0 8px,
    transparent 8px 16px
  );
}

/* =========================================================
   10. TAG / HEADINGS
========================================================= */
.section-heading {
  text-align: center;
  max-width: 650px;
}

.section-heading.left-aligned {
  text-align: left;
  max-width: none;
}

.section-heading-left-aligned {
  gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section-tag-wrapper {
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.section-tag-background {
  z-index: 0;
  background-color: var(--_colors---green);
  filter: blur(15px);
  border-radius: 50px;
  width: 0;
  height: 12px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20%;
  padding-right: 20%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
}

.section-tag-rectangle {
  z-index: 2;
  background-color: var(--_colors---green);
  border-radius: 50px;
  width: 0;
  height: 4px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20%;
  padding-right: 20%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-2px);
}

.section-tag-content {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.25rem 0.75rem 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
}

.section-tag-highlighted {
  border: 1px solid var(--_colors---grey);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
}

.section-tag-content.no-highlight {
  padding: 0.25rem 0.75rem;
}

/* =========================================================
   11. PRIMARY BUTTON
========================================================= */
.primary-button {
  background-color: var(--_colors---white);
  color: var(--_colors---black);
  border-radius: 100px;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--body);
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.primary-button:hover {
  box-shadow: 0 0 8px 0 var(--_colors---green);
  color: var(--_colors---black);
}

/* =========================================================
   12. SHARED CARD SYSTEM
========================================================= */
.grey-card-wrapper {
  background-color: rgba(55, 55, 55, 0.25);
  background-image: linear-gradient(143deg, var(--_colors---dark-grey) 65%, var(--_colors---green));
  border-radius: 18px;
  padding: 4px;
  position: relative;
  overflow: hidden;
}

.grey-card-content {
  z-index: 1;
  gap: 2rem;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: rgba(36, 36, 36, 0.75);
  border-radius: 14px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 1.875rem 1.875rem 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grey-card-content.has-bottom-padding {
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0.875rem;
}

.grey-card-text-wrapper {
  gap: 0.5rem;
  flex-flow: column;
  /* justify-content: space-between; */
  /* align-items: flex-start; */
  height: 100%;
  display: flex;
}

/* =========================================================
   13. CONTACT HERO
========================================================= */
.page-hero-section.contact-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 3.75rem 4rem;
  position: relative;
  overflow: hidden;
}

.contact-hero-content-container {
  position: relative;
  z-index: 2;
  max-width: 874px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.hero-paragraph {
  max-width: 560px;
  margin-bottom: 0;
}

.hero-background-wrapper.contact {
  position: absolute;
  inset: 22% 0% -20%;
  z-index: 0;
  pointer-events: none;
  filter: blur(90px);
  background-image: url("https://cdn.prod.website-files.com/68920ca186c64ec6dc1a15d4/6893c1c7bd38c3012adb4beb_52f6f680ca68c0b10e936edf34a54e5f_home%20hero%20background.svg");
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.95;
}

/* =========================================================
   14. CONTACT SECTION
========================================================= */
.contact-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-paragraph {
  max-width: 480px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-info-card .grey-card-content {
  min-height: 168px;
}

.contact-info-label {
  color: var(--_colors---grey);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-form-card {
  background-image: linear-gradient(151deg, var(--_colors---dark-grey) 70%, var(--_colors---green));
}

.contact-form-content {
  gap: 1.5rem;
  align-items: stretch;
}

.contact-form-heading {
  height: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: var(--_colors---white);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--_colors---white);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--_colors---grey);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(209, 224, 158, 0.6);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(209, 224, 158, 0.08);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-submit-button {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* =========================================================
   15. FAQ SECTION
========================================================= */
.faq-grid {
  width: 100%;
  max-width: 650px;
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-wrapper {
  background-color: var(--_colors---black-shade);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.faq-wrapper:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--_colors---white);
  cursor: pointer;
  padding: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font: inherit;
}

.faq-question-text {
  color: var(--_colors---white);
  font-size: 1rem;
  line-height: 140%;
}

.plus-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.plus-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background-color: var(--_colors---white);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.plus-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-paragraph {
  padding: 0 1.125rem 1.125rem;
  color: var(--_colors---white-shade);
  font-size: 0.95rem;
  line-height: 150%;
}

.faq-wrapper.active .faq-answer {
  max-height: 160px;
}

.faq-wrapper.active .plus-vertical {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

/* =========================================================
   16. CTA + FOOTER WRAPPER
========================================================= */
.cta-and-footer-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-background-wrapper.cta {
  z-index: -1;
  filter: blur(90px);
  pointer-events: none;
  background-image: url("https://cdn.prod.website-files.com/68920ca186c64ec6dc1a15d4/6893c1c7bd38c3012adb4beb_52f6f680ca68c0b10e936edf34a54e5f_home%20hero%20background.svg");
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  inset: 15% 0% -20%;
}

/* =========================================================
   17. CTA SECTION
========================================================= */
.zoflo-cta-section {
  position: relative;
  overflow: hidden;
}

.section-heading-paragraph {
  max-width: 540px;
  text-align: center;
  color: var(--_colors---white-shade);
}

.cta-button-wrapper {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  text-align: center;
}

.home-hero-graphics-wrapper {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.home-hero-graphic {
  position: absolute;
  z-index: 2;
}

.zoflo-cta-section .home-hero-graphic.cta {
  top: 16%;
  left: 6%;
  width: 150px;
}

.zoflo-cta-section .home-hero-graphic.bottom-right {
  right: 5%;
  bottom: 10%;
  width: 150px;
}

/* =========================================================
   18. FOOTER
========================================================= */
.footer {
  position: relative;
  padding: var(--_spacing---section-padding-top) var(--_spacing---section-padding-left-and-right);
}

.footer-wrapper {
  max-width: 914px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem;
  border-radius: 18px;
  background-color: var(--_colors---black-shade);
  outline: 4px solid rgba(255, 255, 255, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.5fr 0.5fr;
  gap: 1rem;
}

.footer-grid-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  width: auto;
  height: 35px;
}

.footer-large-text {
  color: var(--_colors---white);
  font-size: 1.5rem;
  line-height: 130%;
  letter-spacing: -0.5px;
  max-width: 260px;
}

.footer-button-wrapper {
  margin-top: 0.5rem;
}

.footer-heading {
  color: var(--_colors---white);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--_colors---white-shade);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--_colors---white);
}

.footer-flex {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-flex-credits {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-flex-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =========================================================
   19. SCROLL / LOAD ANIMATIONS
========================================================= */
.reveal-up,
.pop-in {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.reveal-up {
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pop-in {
  transform: translateY(10px) scale(0.94);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible,
.pop-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

.grey-card-wrapper,
.faq-wrapper,
.footer-wrapper {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.grey-card-wrapper:hover,
.faq-wrapper:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .pop-in,
  .button-text {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   20. RESPONSIVE
========================================================= */
@media screen and (min-width: 1280px) {
  .section-dashed-line:first-child {
    left: 16.666%;
  }

  .section-dashed-line:last-child {
    right: 16.666%;
  }

  .section-divider-wrapper {
    grid-template-columns: 0.25fr minmax(0, 1fr) 0.25fr;
  }

  .page-hero-section.contact-hero-section {
    padding-top: 10.5vw;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --_spacing---section-padding-top: 3rem;
    --_spacing---section-padding-left-and-right: 2rem;
  }

  .nav-menu {
    gap: 1.25rem;
  }

  .nav-container {
    max-width: 100%;
  }

  .page-hero-section.contact-hero-section {
    padding-top: 20vw;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }

  .zoflo-cta-section .home-hero-graphic.cta {
    top: 15%;
    left: 4%;
    width: 74px;
  }

  .zoflo-cta-section .home-hero-graphic.bottom-right {
    right: 4%;
    bottom: 10%;
    width: 90px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --h1: 4rem;
    --h2: 2.75rem;
    --h3: 1.25rem;
    --h4: 1.15rem;
    --body-extra-large: 1.5rem;
    --_spacing---section-padding-top: 3rem;
    --_spacing---section-padding-left-and-right: 2rem;
  }

  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }

  .nav-container {
    max-width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 1rem;
    border-radius: 100px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    flex-shrink: 0;
  }

  .nav-button {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: var(--_colors---black-shade);
    border-radius: 18px;
    outline: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    padding: 0.75rem 1.25rem;
    margin-right: 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
    z-index: 1001;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .section-divider-wrapper {
    grid-template-columns: 0.22fr minmax(0, 1fr) 0.22fr;
  }

  .page-hero-section.contact-hero-section {
    min-height: 68vh;
    padding-top: 9.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }

  .contact-hero-content-container {
    max-width: 100%;
    gap: 1.25rem;
  }

  .contact-hero-content-container h1 {
    max-width: 320px;
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: -2.5px;
  }

  .hero-paragraph {
    max-width: 320px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    margin-top: 2rem;
  }

  .faq-column {
    gap: 1rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question-text {
    font-size: 0.95rem;
  }

  .faq-paragraph {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  .hero-background-wrapper.cta {
    inset: 22% 0% -18%;
  }

  .section-heading-paragraph {
    max-width: 320px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .cta-button-wrapper {
    margin-top: 0.5rem;
  }

  .zoflo-cta-section .home-hero-graphic.cta {
    top: 14%;
    left: 3%;
    width: 56px;
    transform: rotate(-6deg);
  }

  .zoflo-cta-section .home-hero-graphic.bottom-right {
    right: 3%;
    bottom: 12%;
    width: 68px;
    transform: rotate(-8deg);
  }

  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-wrapper {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-large-text {
    font-size: 1.25rem;
    max-width: none;
  }

  .footer-flex {
    margin-top: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --body: 0.75rem;
    --h1: 3rem;
    --h2: 2.25rem;
    --h3: 1.25rem;
    --h4: 1.15rem;
    --body-large: 0.875rem;
    --body-small: 0.6rem;
    --body-extra-large: 1.125rem;
    --_spacing---section-padding-top: 2rem;
    --_spacing---section-padding-left-and-right: 1.25rem;
  }

  h1 {
    letter-spacing: -2px;
  }

  h2 {
    letter-spacing: -1px;
  }

  .navbar {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-top: 0.25rem;
  }

  .nav-container {
    padding: 0.5rem 0.625rem 0.5rem 0.75rem;
  }

  /* .brand-logo {
    width: 28px;
    height: 28px;
  } */

  .brand-logo {
    width: auto;
    height: 40px;
    }
   

  .nav-menu {
    padding: 0.75rem 1rem;
    border-radius: 16px;
  }

  .nav-link {
    font-size: 0.9375rem;
    padding: 0.875rem 0;
  }

  .section-divider-wrapper {
    grid-template-columns: 25px minmax(0, 1fr) 25px;
  }

  .section-dashed-line:first-child {
    left: 25px;
  }

  .section-dashed-line:last-child {
    right: 25px;
  }

  .page-hero-section.contact-hero-section {
    min-height: 64vh;
    padding-top: 7.5rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-bottom: 1.5rem;
  }

  .contact-hero-content-container h1 {
    max-width: 300px;
    font-size: 3.35rem;
    line-height: 1.05;
    letter-spacing: -2px;
  }

  .hero-paragraph {
    max-width: 290px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .contact-form-content {
    padding-top: 1.25rem;
  }

  .faq-question {
    padding: 0.95rem;
    gap: 0.75rem;
  }

  .faq-question-text {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .faq-paragraph {
    padding: 0 0.95rem 0.95rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .plus-icon {
    width: 16px;
    height: 16px;
  }

  .plus-line {
    width: 12px;
  }

  .hero-background-wrapper.cta {
    inset: 26% 0% -14%;
  }

  .section-heading-paragraph {
    max-width: 290px;
    font-size: 0.9rem;
  }

  .zoflo-cta-section .home-hero-graphic.cta {
    top: 15%;
    left: 2%;
    width: 48px;
    transform: rotate(-6deg);
  }

  .zoflo-cta-section .home-hero-graphic.bottom-right {
    right: 2%;
    bottom: 13%;
    width: 58px;
    transform: rotate(-8deg);
  }

  .footer {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    padding-bottom: 3rem;
  }

  .footer-wrapper {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .footer-large-text {
    font-size: 1.125rem;
  }

  .footer-flex-credits {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}



/* =========================================================
   CONTACT HERO SECTION
========================================================= */
.contact-hero-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 3.75rem 4rem;
  position: relative;
  overflow: hidden;
}

.contact-hero-content-container {
  position: relative;
  z-index: 2;
  max-width: 874px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  width: 100%;
}

.hero-pragraph {
  max-width: 540px;
  margin-bottom: 2rem;
}

.contact-details-grid {
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.grey-card-wrapper.contact {
  background-color: rgba(55, 55, 55, 0.25);
  background-image: none;
  border-radius: 18px;
  padding: 4px;
  position: relative;
  overflow: hidden;
}

.grey-card-wrapper.contact .grey-card-content {
  background-color: rgba(36, 36, 36, 0.75);
}

.contact-details-card-flex {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-details-card-flex h3 {
  color: var(--_colors---white);
}

.contact-details-card-flex p {
  color: var(--_colors---white-shade);
}

.grey-card-wrapper.contact a {
  color: var(--_colors---white);
  text-decoration: underline;
  word-break: break-word;
}

.grey-card-wrapper.contact a:hover {
  color: var(--_colors---green);
}

.hero-background-wrapper.contact {
  position: absolute;
  inset: 22% 0% -20%;
  z-index: 0;
  pointer-events: none;
  filter: blur(90px);
  background-image: url("https://cdn.prod.website-files.com/68920ca186c64ec6dc1a15d4/6893c1c7bd38c3012adb4beb_52f6f680ca68c0b10e936edf34a54e5f_home%20hero%20background.svg");
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.95;
}


@media screen and (max-width: 991px) {
  .contact-hero-section {
    padding-top: 20vw;
  }
}

@media screen and (max-width: 767px) {
  .contact-hero-section {
    min-height: 100svh;
    padding-top: 9.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }

  .contact-hero-content-container {
    max-width: 100%;
    gap: 1.25rem;
  }

  .contact-hero-content-container h1 {
    max-width: 320px;
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: -2.5px;
  }

  .hero-pragraph {
    max-width: 320px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .hero-background-wrapper.contact {
    filter: blur(70px);
    background-position: 50% 0%;
    opacity: 0.95;
  }
}

@media screen and (max-width: 479px) {
  .contact-hero-section {
    min-height: 100svh;
    padding-top: 7.5rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-bottom: 1.5rem;
  }

  .contact-hero-content-container h1 {
    max-width: 300px;
    font-size: 3.35rem;
    line-height: 1.05;
    letter-spacing: -2px;
  }

  .hero-pragraph {
    max-width: 290px;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .contact-details-grid {
    gap: 0.9rem;
  }

  .hero-background-wrapper.contact {
    filter: blur(60px);
    opacity: 0.95;
  }
}

@media screen and (max-width: 767px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .contact-details-card-flex h3 {
    font-size: 1.2rem;
  }

  .contact-details-card-flex p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .grey-card-wrapper.contact a {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 479px) {
  .contact-details-grid {
    gap: 0.9rem;
    padding: 25px;
  }

  .contact-details-card-flex {
    gap: 0.35rem;
  }

  .contact-details-card-flex h3 {
    font-size: 1.05rem;
  }

  .contact-details-card-flex p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .grey-card-wrapper.contact a {
    font-size: 0.88rem;
  }
}


/* Add or update this in your contact.css file */

/* Contact Details Grid - Single Card Centering */
.contact-details-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  gap: 1.5rem;
}

.grey-card-wrapper.contact {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* If you want the single card to be centered and not full width */
@media screen and (min-width: 768px) {
  .grey-card-wrapper.contact {
    max-width: 480px;
  }
}

@media screen and (max-width: 767px) {
  .contact-details-grid {
    padding: 0 1rem;
  }
  
  .grey-card-wrapper.contact {
    max-width: 100%;
  }
}