/* ==========================================================
   FLUX MARKETING CO LTD
   HEADER + FOOTER
========================================================== */


/* ==========================================================
   VARIABLES
========================================================== */

:root {

  --charcoal:
    #111111;

  --charcoal-deep:
    #080808;

  --charcoal-soft:
    #1b1b1b;

  --cream:
    #f5f0e8;

  --warm-white:
    #fffdf8;

  --lime:
    #c7ff35;

  --orange:
    #ff9f43;

  --coral:
    #ff5f45;

  --muted:
    #9e9a93;

  --border-dark:
    rgba(17, 17, 17, 0.12);

  --border-light:
    rgba(255, 255, 255, 0.12);

  --flux-gradient:
    linear-gradient(
      100deg,
      var(--lime) 0%,
      var(--orange) 55%,
      var(--coral) 100%
    );

  --container:
    1280px;

}


/* ==========================================================
   RESET
========================================================== */

* {

  margin: 0;
  padding: 0;

  box-sizing: border-box;

}


html {

  scroll-behavior: smooth;

}


body {

  min-height: 100vh;

  background:
    var(--charcoal);

  color:
    var(--cream);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  overflow-x: hidden;

}


body.menu-open {

  overflow: hidden;

}


img {

  display: block;

  max-width: 100%;

}


a {

  color: inherit;

  text-decoration: none;

}


button {

  font: inherit;

}


.page-container {

  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  margin-inline: auto;

}


/* ==========================================================
   HEADER
========================================================== */

.site-header {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  pointer-events: none;

}


.header-shell {

  position: relative;

  width: min(
    calc(100% - 48px),
    1380px
  );

  margin: 20px auto 0;

  pointer-events: auto;

  z-index: 1003;

}


/* ==========================================================
   NAVBAR
========================================================== */

.navbar {

 position: relative;

  min-height: 88px;

  display: grid;

  grid-template-columns:
    250px
    1fr
    auto;

  align-items: center;

  gap: 36px;

  padding:
    12px 14px
    12px 30px;

  background:
    rgba(245, 240, 232, 0.97);

  border:
    1px solid rgba(255, 255, 255, 0.72);

  border-radius: 28px;

  box-shadow:
    0 18px 65px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  transition:
    min-height 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;

}


/* SCROLL STATE */

.site-header.scrolled
.navbar {

  min-height: 78px;

  background:
    rgba(245, 240, 232, 0.985);

  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.30);

}


/* ==========================================================
   NAV LOGO
========================================================== */

.nav-brand {

  display: inline-flex;

  align-items: center;

  width: fit-content;

}


.nav-logo {

  width: 215px;

  height: 64px;

  object-fit: contain;

  object-position: left center;

  transform: scale(1.12);

  transform-origin: left center;

}


/* ==========================================================
   DESKTOP NAVIGATION
========================================================== */

.nav-links {

  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(28px, 3vw, 48px);

}


.nav-links a {

  position: relative;

  padding: 14px 0;

  color: #111111;

  font-size: 0.94rem;
  font-weight: 650;

  letter-spacing: -0.01em;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;

}


.nav-links a:hover {

  opacity: 0.68;

  transform: translateY(-1px);

}


/* COLOURED DOT */

.nav-links a::after {

  content: "";

  position: absolute;

  left: 50%;
  bottom: 3px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #c7ff35;

  box-shadow:
    0 0 14px rgba(199, 255, 53, 0.8);

  transform:
    translateX(-50%)
    scale(0);

  transition:
    transform 0.25s ease;

}


.nav-links a:hover::after {

  transform:
    translateX(-50%)
    scale(1);

}


/* ==========================================================
   NAV CTA
========================================================== */

.nav-cta {

  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 0 28px;

  border-radius: 999px;

  background: #c7ff35;

  color: #111111;

  font-size: 0.84rem;
  font-weight: 900;

  letter-spacing: 0.045em;

  box-shadow:
    0 10px 24px rgba(199, 255, 53, 0.18);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;

}


.nav-cta:hover {

  background: #ff6b4a;

  transform:
    translateY(-3px);

  box-shadow:
    0 16px 34px rgba(255, 107, 74, 0.30);

}


.nav-cta-arrow {

  font-size: 1.2rem;

  transition:
    transform 0.3s ease;

}


.nav-cta:hover
.nav-cta-arrow {

  transform:
    translate(4px, -4px);

}


/* ==========================================================
   NAVBAR WAVE
========================================================== */

.nav-wave {

  position: absolute;

  left: 5%;
  right: 5%;

  bottom: -15px;

  height: 34px;

  pointer-events: none;

  overflow: visible;

}


.nav-wave svg {

  width: 100%;
  height: 100%;

  overflow: visible;

}


.wave-path {

  fill:
    none;

  stroke:
    url(
      #navWaveGradient
    );

  stroke-linecap:
    round;

}


.wave-path-main {

  stroke-width: 4.5;

  stroke-dasharray: none;

  filter:
    drop-shadow(
      0 2px 5px
      rgba(255, 159, 67, 0.18)
    );

}


.wave-path-soft {

    stroke-width: 2;

    opacity: 0.22;

}


/* optional subtle movement */

.wave-path-main {
  animation:
    fluxWavePulse
    5s ease-in-out
    infinite alternate;
}


@keyframes fluxWavePulse {
  from {
    opacity: 0.82;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(1.5px);
  }
}



/* ==========================================================
   MOBILE MENU BUTTON
========================================================== */

.menu-toggle {

  display:
    none;

  position:
    relative;

  width:
    50px;

  height:
    50px;

  border:
    none;

  border-radius:
    50%;

  background:
    var(--charcoal);

  cursor:
    pointer;

}


.menu-toggle span {

  position:
    absolute;

  left:
    50%;

  width:
    19px;

  height:
    2px;

  border-radius:
    10px;

  background:
    var(--cream);

  transform:
    translateX(-50%);

  transition:

    top 0.3s ease,
    transform 0.3s ease;

}


.menu-toggle span:first-child {

  top:
    20px;

}


.menu-toggle span:last-child {

  top:
    28px;

}


.menu-toggle.active {
  background: var(--coral);

  box-shadow:
    0 8px 24px
    rgba(255, 95, 69, 0.25);
}

.menu-toggle.active
span:first-child {

  top:
    24px;

  transform:
    translateX(-50%)
    rotate(45deg);

}


.menu-toggle.active
span:last-child {

  top:
    24px;

  transform:
    translateX(-50%)
    rotate(-45deg);

}


/* ==========================================================
   MOBILE FULLSCREEN MENU
========================================================== */

.mobile-menu {

  position: fixed;

  inset: 0;

  z-index: 1001;

  background: var(--charcoal-deep);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-14px);

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;

  pointer-events: auto;

  overflow: hidden;

}


.mobile-menu.active {

  opacity:
    1;

  visibility:
    visible;

  transform:
    translateY(0);

}


.mobile-menu-noise {

  position:
    absolute;

  inset: 0;

  opacity:
    0.05;

  pointer-events:
    none;

  background-image:

    radial-gradient(
      rgba(
        255,
        255,
        255,
        0.85
      )
      0.7px,
      transparent
      0.7px
    );

  background-size:
    7px 7px;

}


.mobile-orb {

  position:
    absolute;

  border-radius:
    50%;

  filter:
    blur(100px);

}


.mobile-orb-one {

  width:
    330px;

  height:
    330px;

  right:
    -130px;

  top:
    17%;

  background:
    rgba(
      199,
      255,
      53,
      0.22
    );

}


.mobile-orb-two {

  width:
    360px;

  height:
    360px;

  left:
    -150px;

  bottom:
    -80px;

  background:
    rgba(
      255,
      95,
      69,
      0.2
    );

}


.mobile-menu-content {

  position:
    relative;

  z-index:
    2;

  width:
    min(
      calc(100% - 32px),
      620px
    );

  height:
    100%;

  margin:
    0 auto;

  padding:
    120px 0 26px;

  display:
    flex;

  flex-direction:
    column;

}


.mobile-menu-label {

  margin-bottom:
    20px;

  color:
    var(--lime);

  font-size:
    0.71rem;

  font-weight:
    800;

  letter-spacing:
    0.22em;

}


.mobile-links {

  display:
    flex;

  flex-direction:
    column;

}


.mobile-link {

  display: grid;

  grid-template-columns:
    36px 1fr;

  align-items: center;

  gap: 12px;

  padding: 16px 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.11);

  color: var(--cream);

  font-size: clamp(
    1.55rem,
    5.5vw,
    2.5rem
  );

  font-weight: 650;

  letter-spacing: -0.04em;

  line-height: 1.05;

  transition:
    color 0.25s ease,
    transform 0.25s ease;

}

.mobile-link:hover {
  color: var(--lime);

  transform: translateX(5px);
}


.mobile-number {

  color:
    var(--orange);

  font-size:
    0.7rem;

  font-weight:
    800;

  letter-spacing:
    0.1em;

}


.mobile-cta {

  margin-top: 26px;

  min-height: 60px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  border-radius: 16px;

  background: var(--lime);

  color: var(--charcoal);

  font-size: 0.86rem;

  font-weight: 850;

  transition:
    background 0.25s ease,
    transform 0.25s ease;

}

.mobile-cta:hover {
  background: var(--orange);

  transform: translateY(-2px);
}


.mobile-menu-bottom {

  margin-top:
    auto;

  padding-top:
    26px;

  display:
    flex;

  justify-content:
    space-between;

  gap:
    20px;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.1
    );

  color:
    rgba(
      255,
      255,
      255,
      0.4
    );

  font-size:
    0.67rem;

  letter-spacing:
    0.08em;

}


/* ==========================================================
   TEMPORARY CONTENT
========================================================== */



/* ==========================================================
   FOOTER
========================================================== */

.site-footer {

    position: relative;

    padding:  90px 0 45px;;

    background: #080808;

    color: #f5f0e8;

    overflow: hidden;

}


/* ==========================================================
   FOOTER WAVE
========================================================== */

.footer-wave {

  position:
    absolute;

  top:
    0;

  left:
    0;

  width:
    100%;

  height:
    120px;

  transform:
    translateY(-44%);

}


.footer-wave svg {

  width:
    100%;

  height:
    100%;

}


.footer-wave path {

  fill:
    none;

  stroke:
    url(
      #footerWaveGradient
    );

  stroke-width:
    7;

  stroke-linecap:
    round;

}


/* ==========================================================
   FOOTER GLOW
========================================================== */

.footer-orb {

  position:
    absolute;

  border-radius:
    50%;

  filter:
    blur(140px);

  pointer-events:
    none;

}


.footer-orb-lime {

  top:
    13%;

  right:
    -220px;

  width:
    520px;

  height:
    520px;

  background:
    rgba(
      199,
      255,
      53,
      0.12
    );

}


.footer-orb-coral {

  left:
    -170px;

  bottom:
    12%;

  width:
    450px;

  height:
    450px;

  background:
    rgba(
      255,
      95,
      69,
      0.13
    );

}


.footer-inner {

  position:
    relative;

  z-index:
    3;

}



/* ==========================================================
   FOOTER INFORMATION
========================================================== */

.footer-information {

  display:
    grid;

  grid-template-columns:
    1.6fr
    repeat(3, 1fr);

  gap:
    70px;

  padding:
     60px 0 55px;

}


.footer-brand-block {

  max-width:
    340px;

}


/* FOOTER LOGO TILE */

.footer-logo-card {

  width:
    225px;

  min-height:
    105px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    15px 20px;

  border-radius:
    20px;

  background:
    #f5f0e8;

  transform:
    rotate(-1deg);

  transition:

    transform 0.3s ease,
    box-shadow 0.3s ease;

}


.footer-logo-card:hover {

  transform:
    rotate(0deg)
    translateY(-4px);

  box-shadow:

    0 18px 45px
    rgba(
      0,
      0,
      0,
      0.35
    );

}


.footer-logo {

  width:
    190px;

  height:
    auto;

}


.footer-brand-description {

  max-width:
    315px;

  margin-top:
    28px;

  color:
    rgba(
      245,
      240,
      232,
      0.46
    );

  line-height:
    1.7;

}


.footer-column {

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

  gap:
    14px;

}


.footer-column-heading {

  margin-bottom:
    9px;

  color:
    rgba(247, 114, 6, 0.972);

  font-size:
    0.9rem;

  font-weight:
    800;

  letter-spacing:
    0.16em;

  text-transform:
    uppercase;

}


.footer-column a {

  display:
    flex;

  gap:
    7px;

  align-items:
    center;

  color:
    rgba(245, 240, 232, 0.82);

  font-size:
    0.96rem;

  transition:

    color 0.25s ease,
    transform 0.25s ease;

}


.footer-column a:hover {

  color:
    #c7ff35;

  transform:
    translateX(4px);

}


/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.footer-bottom {
  min-height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);

  position: relative;

  z-index: 4;
}

.footer-bottom p {

  color:
    rgba(
      245,
      240,
      232,
      0.36
    );

  font-size:
    0.78rem;

}


.back-to-top {

  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  color:
    rgba(
      245,
      240,
      232,
      0.66
    );

  font-size:
    0.79rem;

  transition:
    color 0.25s ease;

}


.back-to-top span {

  display:
    grid;

  place-items:
    center;

  width:
    32px;

  height:
    32px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.15
    );

  border-radius:
    50%;

}


.back-to-top:hover {

  color:
    var(--lime);

}


/* ==========================================================
   HUGE FLUX FOOTER WORD
========================================================== */

.footer-line-art {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 220px;

  pointer-events: none;
  overflow: hidden;

  opacity: 0.38;

  z-index: 1;
}


.footer-line-art svg {
  width: 100%;
  height: 100%;
}


.footer-line-art path {
  fill: none;

  stroke: url(#footerLineGradient);

  stroke-width: 3;

  stroke-linecap: round;
}

.footer-line-art::after {
  content: "";

  position: absolute;

  right: 8%;
  bottom: 20px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(199,255,53,0.09),
      transparent 68%
    );

  filter: blur(20px);
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

  .navbar {
    grid-template-columns:
      220px
      1fr
      auto;

    gap: 24px;
  }


  .nav-logo {
    width: 190px;

    transform: scale(1.08);
  }


  .nav-links {
    gap: 24px;
  }


  .nav-cta {
    padding: 0 22px;
  }

}




/* ==========================================================
   TABLET
========================================================== */

@media
(max-width: 1060px) {

  .navbar {

    grid-template-columns:
      190px
      1fr
      auto;

  }


  .nav-logo {

    width:
      160px;

  }


  .nav-links {

    gap:
      21px;

  }


  .footer-information {

    grid-template-columns:
      1.5fr
      repeat(2, 1fr);

  }


  .footer-information
  .footer-column:last-child {

    grid-column:
      2;

  }

}


/* ==========================================================
   MOBILE NAVIGATION
========================================================== */

@media
(max-width: 860px) {

  .header-shell {

    width: calc(100% - 22px);

    margin-top: 10px;

  }


  .navbar {

    min-height: 72px;

    grid-template-columns:
      1fr
      auto;

    gap: 20px;

    padding:
      9px 9px
      9px 18px;

    border-radius: 22px;

  }


  .nav-logo {

    width: 165px;
    height: 54px;

    transform: scale(1.08);

  }


  .nav-links,
  .nav-cta {

    display:
      none;

  }


  .menu-toggle {

    display:
      block;

  }


  .nav-wave {

    left: 8%;
    right: 8%;

    bottom: -12px;

    height: 26px;

  }

  .wave-path-main {
    stroke-width: 3.5;
  }


  .footer-heading-row {

    grid-template-columns:
      1fr;

  }


  .footer-circle-cta {

    width:
      165px;

  }


  .footer-information {

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

    gap:
      55px 40px;

  }


  .footer-brand-block {

    grid-column:
      1 / -1;

  }


  .footer-information
  .footer-column:last-child {

    grid-column:
      auto;

  }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media
(max-width: 600px) {

  .page-container {

    width:
      calc(
        100% - 28px
      );

  }


  .placeholder-hero {

    padding-top:
      140px;

  }


  .site-footer {

    padding-top:
      115px;

  }


  .footer-cta-section {

    padding-bottom:
      75px;

  }


  .footer-information {

    grid-template-columns:
      1fr;

    gap:
      48px;

    padding:
      65px 0;

  }


  .footer-brand-block {

    grid-column:
      auto;

  }


  .footer-logo-card {

    width:
      225px;

  }


  .footer-bottom {

    padding:
      26px 0;

    flex-direction:
      column;

    align-items:
      flex-start;

  }


  .footer-big-word {

    margin-top:
      10px;

    transform:
      translateY(5%);

  }


  .mobile-menu-bottom {

    flex-direction:
      column;

  }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media
(prefers-reduced-motion: reduce) {

  html {

    scroll-behavior:
      auto;

  }


  .wave-path-main {

    animation:
      none;

  }


  *,
  *::before,
  *::after {

    transition-duration:
      0.01ms !important;

  }

}


/* ==========================================================
   HERO
========================================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    190px 0
    45px;

  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(199, 255, 53, 0.10),
      transparent 27%
    ),
    radial-gradient(
      circle at 14% 82%,
      rgba(255, 95, 69, 0.10),
      transparent 30%
    ),
    #111111;

  overflow: hidden;
}


/* ==========================================================
   HERO GRID
========================================================== */

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(420px, 0.95fr);

  align-items: center;

  gap:
    clamp(50px, 7vw, 120px);
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
  position: relative;

  z-index: 4;
}


.hero-kicker {
  margin-bottom: 26px;

  color: #c7ff35;

  font-size: 0.73rem;
  font-weight: 850;

  letter-spacing: 0.20em;
}


.hero-title {
  max-width: 830px;

  color: #f5f0e8;

  font-size:
    clamp(
      4.8rem,
      8vw,
      9.3rem
    );

  line-height: 0.86;

  letter-spacing: -0.075em;

  font-weight: 850;
}


.hero-title span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #c7ff35 0%,
      #ff9f43 52%,
      #ff5f45 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.hero-subtitle {
  margin-top: 35px;

  color: #f5f0e8;

  font-size:
    clamp(
      1.15rem,
      2vw,
      1.5rem
    );

  font-weight: 650;

  letter-spacing: -0.025em;
}


.hero-copy {
  max-width: 580px;

  margin-top: 18px;

  color:
    rgba(
      245,
      240,
      232,
      0.55
    );

  font-size: 1rem;

  line-height: 1.8;
}


/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-actions {
  margin-top: 38px;

  display: flex;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}


.hero-primary-btn {
  min-height: 60px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  padding: 0 28px;

  border-radius: 999px;

  background: #c7ff35;

  color: #111111;

  font-size: 0.82rem;
  font-weight: 900;

  letter-spacing: 0.05em;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.hero-primary-btn:hover {
  background: #ff9f43;

  transform: translateY(-3px);

  box-shadow:
    0 18px 45px
    rgba(
      255,
      159,
      67,
      0.20
    );
}


.hero-primary-btn span:last-child {
  font-size: 1.2rem;

  transition:
    transform 0.3s ease;
}


.hero-primary-btn:hover span:last-child {
  transform:
    translate(
      4px,
      -4px
    );
}


.hero-secondary-btn {
  min-height: 60px;

  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding: 0 22px;

  color:
    rgba(
      245,
      240,
      232,
      0.78
    );

  font-size: 0.9rem;

  border-bottom:
    1px solid
    rgba(
      245,
      240,
      232,
      0.20
    );

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}


.hero-secondary-btn:hover {
  color: #c7ff35;

  border-color: #c7ff35;
}


/* ==========================================================
   HERO VISUAL
========================================================== */

.hero-visual {
  position: relative;

  min-height:
    clamp(
      460px,
      55vw,
      690px
    );

  display: flex;
  align-items: center;
  justify-content: center;
}


/* GLOW */

.hero-orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(100px);

  pointer-events: none;
}


.hero-orb-lime {
  width: 330px;
  height: 330px;

  right: 4%;
  top: 9%;

  background:
    rgba(
      199,
      255,
      53,
      0.13
    );
}


.hero-orb-coral {
  width: 280px;
  height: 280px;

  left: 5%;
  bottom: 5%;

  background:
    rgba(
      255,
      95,
      69,
      0.15
    );
}


/* ==========================================================
   ABSTRACT X
========================================================== */

.hero-x {
  position: absolute;

  width:
    min(
      82%,
      540px
    );

  aspect-ratio: 1;

  transform:
    rotate(-4deg);
}


.hero-x span {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 74%;
  height: 18%;

  border-radius: 20px;

  transform-origin: center;
}


.hero-x-dark {
  background:
    linear-gradient(
      90deg,
      #050505,
      #232323
    );

  transform:
    translate(
      -50%,
      -50%
    )
    rotate(46deg);
}


.hero-x-lime {
  background:
    linear-gradient(
      90deg,
      #c7ff35,
      #95d900
    );

  transform:
    translate(
      -50%,
      -50%
    )
    rotate(-46deg);

  box-shadow:
    0 0 60px
    rgba(
      199,
      255,
      53,
      0.10
    );
}


/* ==========================================================
   RIBBON
========================================================== */

.hero-ribbon {
  position: absolute;

  width: 100%;
  height: 100%;

  z-index: 3;

  pointer-events: none;
}


.hero-ribbon svg {
  width: 100%;
  height: 100%;

  overflow: visible;
}


.hero-ribbon-main {
  fill: none;

  stroke:
    url(#heroRibbonGradient);

  stroke-width: 18;

  stroke-linecap: round;

  filter:
    drop-shadow(
      0 10px 18px
      rgba(
        255,
        95,
        69,
        0.10
      )
    );

  stroke-dasharray:
    650;

  stroke-dashoffset:
    650;

  animation:
    heroRibbonDraw
    2.1s ease
    forwards;
}


.hero-ribbon-secondary {
  fill: none;

  stroke:
    rgba(
      245,
      240,
      232,
      0.90
    );

  stroke-width: 3;

  stroke-linecap: round;

  opacity: 0.85;
}


@keyframes heroRibbonDraw {

  to {
    stroke-dashoffset: 0;
  }

}


/* ==========================================================
   PIXELS
========================================================== */

.hero-pixels {
  position: absolute;

  right: 8%;
  top: 13%;

  width: 110px;
  height: 120px;

  z-index: 5;
}


.hero-pixels span {
  position: absolute;

  display: block;

  border-radius: 3px;
}


.hero-pixels span:nth-child(1) {
  width: 34px;
  height: 34px;

  left: 5px;
  bottom: 8px;

  background: #c7ff35;
}


.hero-pixels span:nth-child(2) {
  width: 27px;
  height: 27px;

  right: 18px;
  top: 35px;

  background: #ff9f43;
}


.hero-pixels span:nth-child(3) {
  width: 16px;
  height: 16px;

  right: 0;
  top: 2px;

  background: #ff5f45;
}


/* ==========================================================
   HERO BADGE
========================================================== */

.hero-badge {
  position: absolute;

  left: 2%;
  bottom: 11%;

  z-index: 5;

  min-width: 150px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding:
    14px 18px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.10
    );

  border-radius: 18px;

  background:
    rgba(
      255,
      255,
      255,
      0.04
    );

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);

  color:
    rgba(
      245,
      240,
      232,
      0.72
    );

  font-size: 0.69rem;

  font-weight: 800;

  letter-spacing: 0.08em;

  line-height: 1.4;
}


.hero-badge-number {
  color: #ff9f43;

  font-size: 0.75rem;
}


/* ==========================================================
   HERO BOTTOM
========================================================== */

.hero-bottom {
  margin-top: auto;

  padding-top: 45px;

  display: grid;

  grid-template-columns:
    auto
    1fr
    auto;

  align-items: center;

  gap: 22px;

  color:
    rgba(
      245,
      240,
      232,
      0.38
    );

  font-size: 0.68rem;

  font-weight: 750;

  letter-spacing: 0.12em;
}


.hero-scroll-line {
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(
        199,
        255,
        53,
        0.5
      ),
      rgba(
        255,
        159,
        67,
        0.2
      ),
      rgba(
        255,
        95,
        69,
        0.5
      )
    );
}


.hero-bottom a {
  display: flex;
  align-items: center;

  gap: 10px;

  transition:
    color 0.25s ease;
}


.hero-bottom a:hover {
  color: #c7ff35;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

  .hero {
    padding-top: 165px;
  }


  .hero-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .hero-content {
    max-width: 850px;
  }


  .hero-visual {
    min-height: 560px;

    max-width: 720px;

    width: 100%;

    margin-inline: auto;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .hero {
    padding:
      135px 0
      35px;
  }


  .hero-title {
    font-size:
      clamp(
        3.6rem,
        17vw,
        5.7rem
      );
  }


  .hero-copy {
    font-size: 0.94rem;
  }


  .hero-actions {
    align-items: stretch;

    flex-direction: column;
  }


  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;

    justify-content: space-between;
  }


  .hero-visual {
    min-height: 420px;
  }


  .hero-x {
    width: 90%;
  }


  .hero-pixels {
    right: 2%;
    top: 10%;

    transform: scale(0.75);
  }


  .hero-badge {
    left: 0;
    bottom: 5%;

    transform: scale(0.88);
    transform-origin: left bottom;
  }


  .hero-bottom {
    grid-template-columns:
      auto
      1fr;

    row-gap: 12px;
  }


  .hero-bottom a {
    grid-column:
      1 / -1;
  }

}


/* ==========================================================
   SERVICES
========================================================== */

.services-section {
  position: relative;

  padding:
    140px 0
    125px;

  background:
    #f5f0e8;

  color:
    #111111;

  overflow: hidden;
}


/* ==========================================================
   SERVICES HEADER
========================================================== */

.services-header {
  display: grid;

  grid-template-columns:
    180px
    1fr;

  gap:
    clamp(40px, 7vw, 110px);

  padding-bottom:
    85px;

  border-bottom:
    1px solid
    rgba(17, 17, 17, 0.15);
}


.services-label {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  padding-top: 12px;

  font-size: 0.72rem;

  font-weight: 850;

  letter-spacing: 0.15em;
}


.services-label span {
  color: #ff5f45;
}


.services-label p {
  color:
    rgba(17, 17, 17, 0.50);
}


.services-heading-wrap {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    330px;

  gap: 60px;

  align-items: end;
}


.services-heading-wrap h2 {
  max-width: 820px;

  font-size: clamp(
    3.8rem,
    6.4vw,
    7.2rem
  );

  line-height: 0.88;

  letter-spacing: -0.075em;

  font-weight: 850;
}


.services-heading-wrap h2 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #9fd600 0%,
      #ff9f43 55%,
      #ff5f45 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.services-heading-wrap > p {
  max-width: 360px;

  color:
    rgba(17, 17, 17, 0.68);

  font-size: 1rem;

  line-height: 1.75;
}


/* ==========================================================
   SERVICES LIST
========================================================== */

.services-list {
  border-bottom:
    1px solid
    rgba(17, 17, 17, 0.15);
}


.service-item {
  position: relative;

  display: grid;

  grid-template-columns:
    70px
    minmax(300px, 1.5fr)
    minmax(250px, 1fr)
    60px;

  align-items: center;

  gap: 30px;

  min-height: 160px;

  padding:
    30px 10px;

  border-bottom:
    1px solid
    rgba(17, 17, 17, 0.13);

  transition:
    background 0.35s ease,
    padding 0.35s ease,
    transform 0.35s ease;
}


.service-item:last-child {
  border-bottom: 0;
}


/* COLOUR STRIPE */

.service-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 5px;
  height: 0;

  border-radius: 10px;

  background:
    linear-gradient(
      180deg,
      #c7ff35,
      #ff9f43,
      #ff5f45
    );

  transform:
    translateY(-50%);

  transition:
    height 0.35s ease;
}


.service-item:hover {
  background:
    rgba(255, 255, 255, 0.48);

  padding-left: 28px;
  padding-right: 28px;
}


.service-item:hover::before {
  height: 65%;
}


/* NUMBER */

.service-number {
  align-self: start;

  padding-top: 7px;

  color: #ff5f45;

  font-size: 0.72rem;

  font-weight: 900;

  letter-spacing: 0.1em;
}


/* MAIN CONTENT */

.service-main h3 {
  font-size:
    clamp(
      2rem,
      3vw,
      3.5rem
    );

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 750;

  transition:
    transform 0.35s ease;
}


.service-main p {
  max-width: 550px;

  margin-top: 13px;

  color:
    rgba(17, 17, 17, 0.62);

  font-size: 0.9rem;

  line-height: 1.65;

  opacity: 1;

  transition:
    opacity 0.3s ease;
}


.service-item:hover
.service-main h3 {
  transform:
    translateX(5px);
}


.service-item:hover
.service-main p {
  opacity: 1;
}


/* ==========================================================
   SERVICE TAGS
========================================================== */

.service-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  justify-content: flex-start;
}


.service-tags span {
  padding:
    9px 13px;

  border:
    1px solid
    rgba(17, 17, 17, 0.14);

  border-radius: 999px;

  color:
    rgba(17, 17, 17, 0.58);

  font-size: 0.72rem;

  font-weight: 750;

  letter-spacing: 0.03em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}


.service-item:hover
.service-tags span {
  background: #111111;

  color: #f5f0e8;

  border-color: #111111;
}


/* ==========================================================
   SERVICE ARROW
========================================================== */

.service-arrow {
  display: grid;

  place-items: center;

  width: 46px;
  height: 46px;

  justify-self: end;

  border:
    1px solid
    rgba(17, 17, 17, 0.18);

  border-radius: 50%;

  font-size: 1.15rem;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.service-item:hover
.service-arrow {
  background: #c7ff35;

  color: #111111;

  border-color: #c7ff35;

  transform:
    rotate(8deg)
    translate(
      3px,
      -3px
    );
}


/* ==========================================================
   SERVICES BOTTOM
========================================================== */

.services-bottom {
  padding-top: 55px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}


.services-bottom p {
  color:
    rgba(17, 17, 17, 0.48);

  font-size: 0.88rem;
}


.services-bottom a {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  padding-bottom: 7px;

  border-bottom:
    1px solid
    rgba(17, 17, 17, 0.22);

  color: #111111;

  font-size: 0.9rem;

  font-weight: 800;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}


.services-bottom a span {
  transition:
    transform 0.25s ease;
}


.services-bottom a:hover {
  color: #ff5f45;

  border-color: #ff5f45;
}


.services-bottom a:hover span {
  transform:
    translate(
      4px,
      -4px
    );
}


/* ==========================================================
   SERVICES TABLET
========================================================== */

@media (max-width: 1050px) {

  .services-header {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .services-heading-wrap {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .services-heading-wrap > p {
    max-width: 550px;
  }


  .service-item {
    grid-template-columns:
      50px
      1fr
      60px;

    gap: 25px;
  }


  .service-tags {
    grid-column:
      2 / 3;

    margin-top: -15px;
  }


  .service-arrow {
    grid-column: 3;

    grid-row:
      1 / span 2;
  }

}


/* ==========================================================
   SERVICES MOBILE
========================================================== */

@media (max-width: 650px) {

  .services-section {
    padding:
      95px 0
      85px;
  }


  .services-header {
    padding-bottom: 55px;
  }


  .services-heading-wrap h2 {
    font-size:
      clamp(
        3.2rem,
        15vw,
        5.4rem
      );
  }


  .service-item {
    grid-template-columns:
      35px
      1fr
      44px;

    gap: 15px;

    min-height: auto;

    padding:
      28px 0;
  }


  .service-item:hover {
    padding-left: 12px;
    padding-right: 12px;
  }


  .service-main h3 {
    font-size:
      clamp(
        1.8rem,
        8vw,
        2.5rem
      );
  }


  .service-main p {
    font-size: 0.85rem;
  }


  .service-tags {
    grid-column:
      2 / 4;

    margin-top: 6px;
  }


  .service-arrow {
    width: 40px;
    height: 40px;
  }


  .services-bottom {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* ==========================================================
   APPROACH
========================================================== */

.approach-section {
  position: relative;

  padding:
    145px 0
    130px;

  background:
    linear-gradient(
      180deg,
      #0b0b0b 0%,
      #101010 100%
    );

  color: #f5f0e8;

  overflow: hidden;
}


/* ==========================================================
   BACKGROUND GLOW
========================================================== */

.approach-bg-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;
}

.approach-glow-one {
  width: 420px;
  height: 420px;

  top: 8%;
  right: -120px;

  background:
    rgba(199, 255, 53, 0.12);
}

.approach-glow-two {
  width: 380px;
  height: 380px;

  left: -120px;
  bottom: 8%;

  background:
    rgba(255, 95, 69, 0.13);
}


/* ==========================================================
   APPROACH HEADER
========================================================== */

.approach-header {
  position: relative;
  z-index: 3;

  display: grid;

  grid-template-columns:
    180px
    1fr;

  gap:
    clamp(40px, 7vw, 110px);

  padding-bottom: 50px;
}

.approach-label {
  display: flex;
  align-items: flex-start;

  gap: 13px;

  padding-top: 12px;

  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.approach-label span {
  color: #ff9f43;
}

.approach-label p {
  color:
    rgba(245, 240, 232, 0.46);
}

.approach-heading-wrap {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    360px;

  gap: 60px;

  align-items: end;
}

.approach-heading-wrap h2 {
  max-width: 820px;

  font-size:
    clamp(4rem, 7vw, 8rem);

  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 850;
}

.approach-heading-wrap h2 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #c7ff35 0%,
      #ff9f43 55%,
      #ff5f45 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.approach-heading-wrap > p {
  max-width: 360px;

  color:
    rgba(245, 240, 232, 0.62);

  font-size: 1rem;
  line-height: 1.8;
}


/* ==========================================================
   FLOW LINE
========================================================== */

.approach-flow-line {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100px;

  margin:
    8px 0 34px;
}

.approach-flow-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.approach-flow-line path {
  fill: none;
  stroke: url(#approachLineGradient);
  stroke-width: 6;
  stroke-linecap: round;

  filter:
    drop-shadow(
      0 8px 20px rgba(255, 95, 69, 0.12)
    );
}


/* ==========================================================
   APPROACH STEPS
========================================================== */

.approach-steps {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.approach-step {
  position: relative;

  min-height: 320px;

  padding: 28px 28px 30px;

  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;

  background: #f2ebdd;

  color: #111111;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.10);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* top accent line */
.approach-step::before {
  content: "";

  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;

  height: 4px;
  border-radius: 0 0 10px 10px;

  background: linear-gradient(
    90deg,
    #c7ff35,
    #ff9f43,
    #ff5f45
  );

  opacity: 0.95;
}


.approach-step:hover {
  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.16);
}

/* slightly different border colour per card */
.approach-step:nth-child(1) {
  border-color: rgba(199, 255, 53, 0.22);
}

.approach-step:nth-child(2) {
  border-color: rgba(255, 159, 67, 0.22);
}

.approach-step:nth-child(3) {
  border-color: rgba(255, 95, 69, 0.22);
}


/* stronger hover border */
.approach-step:nth-child(1):hover {
  border-color: rgba(199, 255, 53, 0.55);
}

.approach-step:nth-child(2):hover {
  border-color: rgba(255, 159, 67, 0.55);
}

.approach-step:nth-child(3):hover {
  border-color: rgba(255, 95, 69, 0.55);
}



.approach-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 14px;
}

.approach-step-number {
  color: #ff7a45;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.approach-step-tag {
  padding: 8px 12px;

  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: 999px;

  background: rgba(17, 17, 17, 0.03);

  color: rgba(17, 17, 17, 0.72);

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.approach-step h3 {
  margin-top: 26px;

  color: #111111;

  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 750;
}

.approach-step p {
  margin-top: 16px;

  color: rgba(17, 17, 17, 0.68);

  font-size: 0.94rem;
  line-height: 1.75;
}

.approach-points {
  margin-top: 24px;

  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  list-style: none;
}

.approach-points li {
  padding: 8px 12px;

  border-radius: 999px;

  background: #ffffff;

  border: 1px solid rgba(17, 17, 17, 0.08);

  color: rgba(17, 17, 17, 0.76);

  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}


/* ==========================================================
   BOTTOM CTA
========================================================== */

.approach-bottom {
  position: relative;
  z-index: 3;

  margin-top: 55px;
  padding-top: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-top:
    1px solid rgba(255, 255, 255, 0.10);
}

.approach-bottom p {
  color:
    rgba(245, 240, 232, 0.46);

  font-size: 0.88rem;
}

.approach-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding-bottom: 7px;

  border-bottom:
    1px solid rgba(245, 240, 232, 0.18);

  color: #f5f0e8;

  font-size: 0.92rem;
  font-weight: 800;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.approach-bottom a span {
  transition:
    transform 0.25s ease;
}

.approach-bottom a:hover {
  color: #c7ff35;
  border-color: #c7ff35;
}

.approach-bottom a:hover span {
  transform:
    translate(4px, -4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

  .approach-header {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .approach-heading-wrap {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .approach-heading-wrap > p {
    max-width: 560px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-step {
    min-height: auto;
  }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .approach-section {
    padding:
      95px 0
      85px;
  }

  .approach-heading-wrap h2 {
    font-size:
      clamp(3.2rem, 15vw, 5.4rem);
  }

  .approach-flow-line {
    height: 72px;

    margin:
      0 0 26px;
  }

  .approach-flow-line path {
    stroke-width: 4.5;
  }

  .approach-step {
    padding:
      24px 22px 26px;

    border-radius: 22px;
  }

  .approach-step h3 {
    font-size:
      clamp(1.55rem, 8vw, 2rem);
  }

  .approach-step p {
    font-size: 0.9rem;
  }

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



/* ==========================================================
   ABOUT
========================================================== */

.about-section {
  position: relative;

  padding:
    145px 0
    120px;

  background: #fff9f1;

  color: #111111;

  overflow: hidden;
}


/* ==========================================================
   BIG BACKGROUND WORD
========================================================== */

.about-big-word {
  position: absolute;

  left: 50%;
  top: 46%;

  transform:
    translate(-50%, -50%);

  color:
    rgba(17, 17, 17, 0.025);

  font-size:
    clamp(12rem, 34vw, 34rem);

  font-weight: 950;

  letter-spacing: -0.10em;

  line-height: 0.7;

  white-space: nowrap;

  user-select: none;

  pointer-events: none;
}


/* ==========================================================
   ABOUT HEADER
========================================================== */

.about-header {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    180px
    1fr;

  gap:
    clamp(40px, 7vw, 110px);

  padding-bottom: 85px;

  border-bottom:
    1px solid rgba(17, 17, 17, 0.14);
}


.about-label {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  padding-top: 12px;

  font-size: 0.72rem;

  font-weight: 850;

  letter-spacing: 0.15em;
}


.about-label span {
  color: #ff5f45;
}


.about-label p {
  color:
    rgba(17, 17, 17, 0.48);
}


.about-heading-wrap h2 {
  max-width: 1040px;

  font-size:
    clamp(4rem, 7.2vw, 8rem);

  line-height: 0.88;

  letter-spacing: -0.075em;

  font-weight: 850;
}


.about-heading-wrap h2 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #9fd600 0%,
      #ff9f43 55%,
      #ff5f45 100%
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}


/* ==========================================================
   ABOUT CONTENT
========================================================== */

.about-content {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    0.9fr
    1.6fr;

  gap:
    clamp(50px, 8vw, 120px);

  padding:
    90px 0 75px;
}


/* INTRO */

.about-intro {
  max-width: 470px;
}


.about-intro p {
  color:
    rgba(17, 17, 17, 0.60);

  font-size: 1rem;

  line-height: 1.8;
}


.about-intro .about-lead {
  margin-bottom: 24px;

  color: #111111;

  font-size:
    clamp(1.6rem, 2.7vw, 2.5rem);

  line-height: 1.2;

  letter-spacing: -0.04em;

  font-weight: 650;
}


/* ==========================================================
   PRINCIPLES
========================================================== */

.about-principles {
  display: grid;

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

  gap: 22px;
}


.about-principle {
  position: relative;

  padding:
    26px 22px 28px;

  border-top:
    1px solid rgba(17, 17, 17, 0.14);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}


.about-principle:hover {
  transform:
    translateY(-5px);

  border-color:
    #ff9f43;
}


.about-principle-number {
  display: inline-block;

  margin-bottom: 34px;

  color: #ff5f45;

  font-size: 0.7rem;

  font-weight: 900;

  letter-spacing: 0.1em;
}


.about-principle h3 {
  font-size:
    clamp(1.5rem, 2vw, 2.2rem);

  line-height: 1.05;

  letter-spacing: -0.045em;

  font-weight: 750;
}


.about-principle p {
  margin-top: 15px;

  color:
    rgba(17, 17, 17, 0.58);

  font-size: 0.9rem;

  line-height: 1.7;
}


/* individual accents */

.about-principle:nth-child(1)::after,
.about-principle:nth-child(2)::after,
.about-principle:nth-child(3)::after {
  content: "";

  position: absolute;

  left: 22px;
  top: -1px;

  width: 52px;
  height: 3px;

  border-radius: 10px;
}


.about-principle:nth-child(1)::after {
  background: #c7ff35;
}


.about-principle:nth-child(2)::after {
  background: #ff9f43;
}


.about-principle:nth-child(3)::after {
  background: #ff5f45;
}


/* ==========================================================
   ABOUT BOTTOM
========================================================== */

.about-bottom {
  position: relative;

  z-index: 2;

  padding-top: 28px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border-top:
    1px solid rgba(17, 17, 17, 0.14);
}


.about-bottom p {
  color:
    rgba(17, 17, 17, 0.48);

  font-size: 0.88rem;
}


.about-bottom a {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  padding-bottom: 7px;

  border-bottom:
    1px solid rgba(17, 17, 17, 0.22);

  color: #111111;

  font-size: 0.92rem;

  font-weight: 800;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}


.about-bottom a span {
  transition:
    transform 0.25s ease;
}


.about-bottom a:hover {
  color: #ff5f45;

  border-color: #ff5f45;
}


.about-bottom a:hover span {
  transform:
    translate(4px, -4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

  .about-header {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .about-content {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .about-intro {
    max-width: 650px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

  .about-section {
    padding:
      95px 0
      85px;
  }


  .about-header {
    padding-bottom: 55px;
  }


  .about-heading-wrap h2 {
    font-size:
      clamp(3.1rem, 14vw, 5.2rem);
  }


  .about-content {
    padding:
      60px 0;
  }


  .about-principles {
    grid-template-columns: 1fr;
  }


  .about-principle {
    padding:
      24px 0 30px;
  }


  .about-principle:nth-child(1)::after,
  .about-principle:nth-child(2)::after,
  .about-principle:nth-child(3)::after {
    left: 0;
  }


  .about-bottom {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* ==========================================================
   FINAL CTA
========================================================== */

.final-cta {
  position: relative;

  padding:
    145px 0
    150px;

  background:
    #525050ac;

  color:
    #f5f0e8;

  overflow: hidden;
}


/* ==========================================================
   GLOW
========================================================== */

.final-cta-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(130px);

  pointer-events: none;
}


.final-cta-glow-one {
  width: 420px;
  height: 420px;

  right: -120px;
  top: 5%;

  background:
    rgba(
      199,
      255,
      53,
      0.12
    );
}


.final-cta-glow-two {
  width: 380px;
  height: 380px;

  left: -120px;
  bottom: 0;

  background:
    rgba(
      255,
      95,
      69,
      0.13
    );
}


/* ==========================================================
   INNER
========================================================== */

.final-cta-inner {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns:
    180px
    1fr;

  gap:
    clamp(
      40px,
      7vw,
      110px
    );
}


/* LABEL */

.final-cta-label {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  padding-top: 12px;

  font-size: 0.72rem;

  font-weight: 850;

  letter-spacing: 0.15em;
}


.final-cta-label span {
  color: #ff9f43;
}


.final-cta-label p {
  color:
    rgba(
      245,
      240,
      232,
      0.45
    );
}


/* ==========================================================
   CONTENT
========================================================== */

.final-cta-content {
  max-width: 1050px;
}


.final-cta-kicker {
  margin-bottom: 24px;

  color: #c7ff35;

  font-size: 0.72rem;

  font-weight: 850;

  letter-spacing: 0.2em;
}


.final-cta h2 {
  max-width: 1050px;

  font-size:
    clamp(
      4rem,
      7.5vw,
      8.7rem
    );

  line-height: 0.87;

  letter-spacing: -0.075em;

  font-weight: 850;
}


.final-cta h2 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #c7ff35 0%,
      #ff9f43 55%,
      #ff5f45 100%
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}


/* ==========================================================
   BOTTOM AREA
========================================================== */

.final-cta-bottom {
  margin-top: 48px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


.final-cta-bottom > p {
  max-width: 470px;

  color:
    rgba(
      245,
      240,
      232,
      0.57
    );

  font-size: 1rem;

  line-height: 1.8;
}


/* ==========================================================
   BUTTON
========================================================== */

.final-cta-button {
  min-width: 215px;
  min-height: 64px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  padding: 0 28px;

  border-radius: 999px;

  background: #c7ff35;

  color: #111111;

  font-size: 0.82rem;

  font-weight: 900;

  letter-spacing: 0.05em;

  box-shadow:
    0 18px 50px
    rgba(
      199,
      255,
      53,
      0.12
    );

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.final-cta-button:hover {
  background: #ff9f43;

  transform:
    translateY(-4px);

  box-shadow:
    0 22px 55px
    rgba(
      255,
      159,
      67,
      0.22
    );
}


.final-cta-arrow {
  font-size: 1.25rem;

  transition:
    transform 0.3s ease;
}


.final-cta-button:hover
.final-cta-arrow {
  transform:
    translate(
      4px,
      -4px
    );
}


/* ==========================================================
   DECORATIVE LINE
========================================================== */

.final-cta-line {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 10px;

  height: 130px;

  opacity: 0.75;

  pointer-events: none;
}


.final-cta-line svg {
  width: 100%;
  height: 100%;
}


.final-cta-line path {
  fill: none;

  stroke:
    url(#finalCtaGradient);

  stroke-width: 4;

  stroke-linecap: round;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

  .final-cta-inner {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .final-cta-bottom {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .final-cta {
    padding:
      95px 0
      120px;
  }


  .final-cta h2 {
    font-size:
      clamp(
        3.1rem,
        14vw,
        5.4rem
      );
  }


  .final-cta-button {
    width: 100%;

    justify-content: space-between;
  }


  .final-cta-line {
    height: 90px;
  }

}

/* ==========================================================
   MOBILE PERFORMANCE OPTIMISATION
   Keeps desktop effects, simplifies them on phones
========================================================== */

@media (max-width: 700px) {

  /* NAVBAR */
  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(245, 240, 232, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  }

  /* MOBILE MENU */
  .mobile-orb {
    filter: none;
    opacity: 0.18;
  }

  .mobile-orb-one {
    background: radial-gradient(
      circle,
      rgba(199, 255, 53, 0.25),
      transparent 70%
    );
  }

  .mobile-orb-two {
    background: radial-gradient(
      circle,
      rgba(255, 95, 69, 0.22),
      transparent 70%
    );
  }

  /* HERO */
  .hero-orb {
    filter: none;
    opacity: 0.5;
  }

  .hero-orb-lime {
    background: radial-gradient(
      circle,
      rgba(199, 255, 53, 0.15),
      transparent 68%
    );
  }

  .hero-orb-coral {
    background: radial-gradient(
      circle,
      rgba(255, 95, 69, 0.14),
      transparent 68%
    );
  }

  .hero-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(30, 30, 30, 0.92);
  }

  .hero-ribbon-main {
    filter: none;
  }

  /* APPROACH */
  .approach-bg-glow {
    filter: none;
    opacity: 0.35;
  }

  .approach-glow-one {
    background: radial-gradient(
      circle,
      rgba(199, 255, 53, 0.12),
      transparent 70%
    );
  }

  .approach-glow-two {
    background: radial-gradient(
      circle,
      rgba(255, 95, 69, 0.12),
      transparent 70%
    );
  }

  .approach-flow-line path {
    filter: none;
  }

  /* FINAL CTA */
  .final-cta-glow {
    filter: none;
    opacity: 0.3;
  }

  /* FOOTER */
  .footer-orb {
    display: none;
  }

  .footer-line-art::after {
    display: none;
  }

  /* Reduce costly large shadows */
  .service-item,
  .approach-step,
  .footer-logo-card,
  .final-cta-button,
  .hero-primary-btn {
    box-shadow: none;
  }

  /* Keep navbar wave, but make the animation lighter */
  .wave-path-main {
    animation-duration: 8s;
  }
}



/* ==========================================================
   CONTACT PAGE
========================================================== */

.contact-hero {
  position: relative;
  min-height: 100vh;

  padding:
    190px 0
    120px;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(199, 255, 53, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 14% 78%,
      rgba(255, 95, 69, 0.08),
      transparent 30%
    ),
    #111111;

  color: #f5f0e8;

  overflow: hidden;
}


/* ==========================================================
   BACKGROUND GLOWS
========================================================== */

.contact-hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;
}


.contact-glow-lime {
  width: 420px;
  height: 420px;

  right: -120px;
  top: 15%;

  background:
    rgba(199, 255, 53, 0.10);
}


.contact-glow-coral {
  width: 360px;
  height: 360px;

  left: -100px;
  bottom: 10%;

  background:
    rgba(255, 95, 69, 0.10);
}


/* ==========================================================
   GRID
========================================================== */

.contact-hero-grid {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(420px, 0.75fr);

  align-items: start;

  gap:
    clamp(
      50px,
      7vw,
      110px
    );
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.contact-hero-content {
  padding-top: 14px;
}


.contact-label {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 28px;

  font-size: 0.72rem;

  font-weight: 850;

  letter-spacing: 0.16em;
}


.contact-label span {
  color: #ff9f43;
}


.contact-label p {
  color:
    rgba(
      245,
      240,
      232,
      0.45
    );
}


/* ==========================================================
   HEADING
========================================================== */

.contact-hero h1 {
  max-width: 780px;

  color: #f5f0e8;

  font-size:
    clamp(
      4.0rem,
      6vw,
      6.8rem
    );

  line-height: 0.86;

  letter-spacing: -0.075em;

  font-weight: 850;
}


.contact-hero h1 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #c7ff35 0%,
      #ff9f43 52%,
      #ff5f45 100%
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}


/* ==========================================================
   LEAD
========================================================== */

.contact-lead {
  max-width: 560px;

  margin-top: 34px;

  color:
    rgba(
      245,
      240,
      232,
      0.62
    );

  font-size: 1.08rem;

  line-height: 1.75;
}


/* ==========================================================
   DIRECT CONTACT DETAILS
========================================================== */

.contact-direct {
  margin-top: 52px;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 26px;
}


.contact-direct-item {
  padding-top: 18px;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.13
    );
}


.contact-direct-label {
  display: block;

  margin-bottom: 10px;

  color:
    rgba(
      245,
      240,
      232,
      0.38
    );

  font-size: 0.67rem;

  font-weight: 850;

  letter-spacing: 0.13em;
}


.contact-direct-item a,
.contact-direct-item p {
  color: #f5f0e8;

  font-size: 1rem;

  font-weight: 700;
}


.contact-direct-item a {
  transition:
    color 0.25s ease;
}


.contact-direct-item a:hover {
  color: #c7ff35;
}


/* ==========================================================
   WHATSAPP CTA
========================================================== */

.contact-whatsapp {
  max-width: 470px;

  min-height: 105px;

  margin-top: 34px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;

  padding:
    22px 24px;

  border-radius: 22px;

  background: #c7ff35;

  color: #111111;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.contact-whatsapp:hover {
  transform: translateY(-5px);

  background: #ff9f43;

  box-shadow:
    0 20px 50px
    rgba(
      255,
      159,
      67,
      0.18
    );
}


.contact-whatsapp-small {
  display: block;

  margin-bottom: 7px;

  font-size: 0.65rem;

  font-weight: 850;

  letter-spacing: 0.14em;

  opacity: 0.55;
}


.contact-whatsapp strong {
  display: block;

  font-size: 1.45rem;

  font-weight: 900;

  letter-spacing: -0.03em;
}


.contact-whatsapp-arrow {
  font-size: 2rem;

  transition:
    transform 0.3s ease;
}


.contact-whatsapp:hover
.contact-whatsapp-arrow {
  transform:
    translate(
      5px,
      -5px
    );
}


/* ==========================================================
   FORM CARD
========================================================== */

.contact-form-card {
  position: relative;

  padding:
    30px;

  border-radius: 30px;

  background: #f2ebdd;

  color: #111111;

  box-shadow:
    0 30px 90px
    rgba(
      0,
      0,
      0,
      0.28
    );
}


.contact-form-card::before {
  content: "";

  position: absolute;

  left: 26px;
  right: 26px;
  top: 0;

  height: 4px;

  border-radius:
    0 0
    10px 10px;

  background:
    linear-gradient(
      90deg,
      #c7ff35,
      #ff9f43,
      #ff5f45
    );
}


/* ==========================================================
   FORM HEADER
========================================================== */

.contact-form-heading {
  min-height: 70px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-bottom: 24px;

  border-bottom:
    1px solid
    rgba(
      17,
      17,
      17,
      0.10
    );

  color: #111111;

  font-size: 0.74rem;

  font-weight: 900;

  letter-spacing: 0.14em;
}


.contact-form-heading span:last-child {
  font-size: 1.6rem;

  color: #ff5f45;
}


/* ==========================================================
   FORM
========================================================== */

.contact-form {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    24px 20px;

  margin-top: 26px;
}


/* ==========================================================
   FIELD
========================================================== */

.contact-field {
  display: flex;

  flex-direction: column;

  gap: 9px;
}


.contact-field-full {
  grid-column:
    1 / -1;
}


.contact-field label {
  color:
    rgba(
      17,
      17,
      17,
      0.58
    );

  font-size: 0.69rem;

  font-weight: 850;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* ==========================================================
   INPUTS
========================================================== */

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;

  border: none;

  border-bottom:
    1px solid
    rgba(
      17,
      17,
      17,
      0.16
    );

  border-radius: 0;

  padding:
    14px 0;

  background: transparent;

  color: #111111;

  font-family: inherit;

  font-size: 0.98rem;

  outline: none;

  transition:
    border-color 0.25s ease;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color:
    rgba(
      17,
      17,
      17,
      0.34
    );
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #ff9f43;
}


.contact-field textarea {
  min-height: 145px;

  resize: vertical;

  line-height: 1.6;
}


/* SELECT */

.contact-field select {
  cursor: pointer;
}


/* ==========================================================
   SUBMIT BUTTON
========================================================== */

.contact-submit {
  grid-column:
    1 / -1;

  min-height: 64px;

  margin-top: 6px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding:
    0 24px;

  border: none;

  border-radius: 999px;

  background: #111111;

  color: #f5f0e8;

  font-size: 0.78rem;

  font-weight: 900;

  letter-spacing: 0.08em;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}


.contact-submit:hover {
  transform:
    translateY(-4px);

  background: #c7ff35;

  color: #111111;

  box-shadow:
    0 15px 40px
    rgba(
      199,
      255,
      53,
      0.18
    );
}


.contact-submit span:last-child {
  font-size: 1.3rem;

  transition:
    transform 0.3s ease;
}


.contact-submit:hover
span:last-child {
  transform:
    translate(
      4px,
      -4px
    );
}


/* ==========================================================
   FLOW LINE
========================================================== */

.contact-flow-line {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 10px;

  height: 150px;

  opacity: 0.48;

  pointer-events: none;
}


.contact-flow-line svg {
  width: 100%;
  height: 100%;
}


.contact-flow-line path {
  fill: none;

  stroke:
    url(#contactFlowGradient);

  stroke-width: 4;

  stroke-linecap: round;
}


/* ==========================================================
   SUPPORT SECTION
========================================================== */

.contact-support {
  position: relative;

  padding:
    130px 0;

  background: #fff9f1;

  color: #111111;
}


.contact-support-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(320px, 0.8fr);

  align-items: start;

  gap:
    clamp(
      50px,
      8vw,
      120px
    );
}


.contact-support-label {
  margin-bottom: 22px;

  color:
    rgba(
      17,
      17,
      17,
      0.45
    );

  font-size: 0.7rem;

  font-weight: 850;

  letter-spacing: 0.16em;
}


.contact-support h2 {
  max-width: 780px;

  font-size:
    clamp(
      4rem,
      6.5vw,
      7.2rem
    );

  line-height: 0.9;

  letter-spacing: -0.065em;
}


.contact-support h2 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #c7ff35 0%,
      #ff9f43 55%,
      #ff5f45 100%
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}


.contact-support-copy {
  padding-top: 48px;
}


.contact-support-copy p {
  max-width: 460px;

  color:
    rgba(
      17,
      17,
      17,
      0.64
    );

  font-size: 1rem;

  line-height: 1.8;
}


.contact-support-copy p + p {
  margin-top: 18px;

  color: #111111;

  font-weight: 750;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

  .contact-hero {
    padding-top: 165px;
  }


  .contact-hero-grid {
    grid-template-columns:
      1fr;

    gap: 65px;
  }


  .contact-hero-content {
    max-width: 820px;
  }


  .contact-form-card {
    max-width: 760px;
  }


  .contact-support-grid {
    grid-template-columns:
      1fr;

    gap: 30px;
  }


  .contact-support-copy {
    padding-top: 0;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .contact-hero {
    min-height: auto;

    padding:
      135px 0
      95px;
  }


  .contact-hero h1 {
    font-size:
      clamp(
        3.6rem,
        16vw,
        5.3rem
      );
  }


  .contact-lead {
    margin-top: 24px;

    font-size: 0.96rem;
  }


  .contact-direct {
    grid-template-columns:
      1fr;

    margin-top: 40px;

    gap: 20px;
  }


  .contact-whatsapp {
    max-width: none;

    min-height: 88px;

    margin-top: 28px;
  }


  .contact-whatsapp strong {
    font-size: 1.2rem;
  }


  .contact-form-card {
    padding:
      24px 20px;

    border-radius: 24px;

    box-shadow:
      0 18px 45px
      rgba(
        0,
        0,
        0,
        0.18
      );
  }


  .contact-form {
    grid-template-columns:
      1fr;

    gap: 22px;
  }


  .contact-field-full,
  .contact-submit {
    grid-column:
      auto;
  }


  .contact-flow-line {
    height: 90px;

    opacity: 0.35;
  }


  .contact-support {
    padding:
      90px 0;
  }


  .contact-support h2 {
    font-size:
      clamp(
        3.1rem,
        13vw,
        5rem
      );
  }

}


/* ==========================================================
   CONTACT PAGE MOBILE PERFORMANCE
========================================================== */

@media (max-width: 700px) {

  .contact-hero-glow {
    filter: none;

    opacity: 0.30;
  }


  .contact-glow-lime {
    background:
      radial-gradient(
        circle,
        rgba(199, 255, 53, 0.10),
        transparent 70%
      );
  }


  .contact-glow-coral {
    background:
      radial-gradient(
        circle,
        rgba(255, 95, 69, 0.10),
        transparent 70%
      );
  }


  .contact-form-card {
    box-shadow:
      0 14px 32px
      rgba(
        0,
        0,
        0,
        0.16
      );
  }

}



/* ==========================================================
   PRIVACY PAGE
========================================================== */

.privacy-hero {
  position: relative;

  padding:
    205px 0
    115px;

  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(199, 255, 53, 0.08),
      transparent 28%
    ),
    #111111;

  color: #f5f0e8;

  overflow: hidden;
}


.privacy-hero-inner {
  max-width: 1100px;
}


.privacy-label {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 28px;

  font-size: 0.7rem;

  font-weight: 850;

  letter-spacing: 0.16em;
}


.privacy-label span {
  color: #ff9f43;
}


.privacy-label p {
  color: rgba(245, 240, 232, 0.44);
}


.privacy-hero h1 {
  max-width: 1000px;

  color: #f5f0e8;

  font-size:
    clamp(
      4.8rem,
      8vw,
      9rem
    );

  line-height: 0.86;

  letter-spacing: -0.075em;

  font-weight: 850;
}


.privacy-hero h1 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #c7ff35 0%,
      #ff9f43 52%,
      #ff5f45 100%
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}


.privacy-intro {
  max-width: 650px;

  margin-top: 34px;

  color: rgba(245, 240, 232, 0.62);

  font-size: 1.05rem;

  line-height: 1.8;
}


.privacy-updated {
  margin-top: 26px;

  color: rgba(245, 240, 232, 0.34);

  font-size: 0.72rem;

  font-weight: 750;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


/* ==========================================================
   CONTENT
========================================================== */

.privacy-content-section {
  position: relative;

  padding:
    120px 0
    140px;

  background: #fff9f1;

  color: #111111;
}


.privacy-layout {
  display: grid;

  grid-template-columns:
    240px
    minmax(0, 760px);

  justify-content: space-between;

  gap:
    clamp(
      50px,
      8vw,
      130px
    );
}


/* ==========================================================
   SIDE INDEX
========================================================== */

.privacy-index {
  position: sticky;

  top: 140px;

  align-self: start;

  display: flex;

  flex-direction: column;

  gap: 12px;
}


.privacy-index > p {
  margin-bottom: 12px;

  color: #ff5f45;

  font-size: 0.68rem;

  font-weight: 900;

  letter-spacing: 0.15em;
}


.privacy-index a {
  padding:
    9px 0;

  color: rgba(17, 17, 17, 0.50);

  font-size: 0.84rem;

  line-height: 1.4;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.privacy-index a:hover {
  color: #111111;

  transform: translateX(4px);
}


/* ==========================================================
   POLICY SECTIONS
========================================================== */

.privacy-policy section {
  padding:
    0 0
    70px;

  margin-bottom: 70px;

  border-bottom:
    1px solid
    rgba(17, 17, 17, 0.10);
}


.privacy-number {
  display: inline-block;

  margin-bottom: 16px;

  color: #ff9f43;

  font-size: 0.7rem;

  font-weight: 900;

  letter-spacing: 0.12em;
}


.privacy-policy h2 {
  max-width: 700px;

  margin-bottom: 24px;

  color: #111111;

  font-size:
    clamp(
      2rem,
      3.4vw,
      3.2rem
    );

  line-height: 1;

  letter-spacing: -0.045em;
}


.privacy-policy p {
  max-width: 690px;

  color:
    rgba(
      17,
      17,
      17,
      0.64
    );

  font-size: 1rem;

  line-height: 1.85;
}


.privacy-policy p + p {
  margin-top: 18px;
}


/* ==========================================================
   CONTACT BOX
========================================================== */

.privacy-contact-box {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

  padding:
    34px 36px;

  border-radius: 26px;

  background: #111111;

  color: #f5f0e8;
}


.privacy-contact-box > div > span {
  display: block;

  margin-bottom: 8px;

  color: #c7ff35;

  font-size: 0.66rem;

  font-weight: 850;

  letter-spacing: 0.14em;
}


.privacy-contact-box h3 {
  font-size:
    clamp(
      1.6rem,
      3vw,
      2.5rem
    );

  letter-spacing: -0.04em;
}


.privacy-contact-box > a {
  min-height: 55px;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  padding:
    0 22px;

  border-radius: 999px;

  background: #c7ff35;

  color: #111111;

  font-size: 0.72rem;

  font-weight: 900;

  letter-spacing: 0.08em;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.privacy-contact-box > a:hover {
  background: #ff9f43;

  transform: translateY(-3px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

  .privacy-layout {
    grid-template-columns:
      1fr;
  }


  .privacy-index {
    position: relative;

    top: auto;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    padding-bottom: 35px;

    border-bottom:
      1px solid
      rgba(17, 17, 17, 0.1);
  }


  .privacy-index > p {
    grid-column:
      1 / -1;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .privacy-hero {
    padding:
      145px 0
      85px;
  }


  .privacy-hero h1 {
    font-size:
      clamp(
        3.6rem,
        16vw,
        5.5rem
      );
  }


  .privacy-content-section {
    padding:
      85px 0
      95px;
  }


  .privacy-index {
    grid-template-columns:
      1fr;
  }


  .privacy-index > p {
    grid-column:
      auto;
  }


  .privacy-policy section {
    margin-bottom: 50px;

    padding-bottom: 50px;
  }


  .privacy-contact-box {
    align-items: flex-start;

    flex-direction: column;

    padding:
      28px 24px;
  }


  .privacy-contact-box > a {
    width: 100%;

    justify-content: space-between;
  }

}
/* ==========================================================
   GLOBAL HEADING SIZE REFINEMENT
   Better balance for laptops + desktops
========================================================== */

/* HOME HERO */
.hero-title {
  font-size: clamp(4rem, 6.5vw, 7.5rem);
  line-height: 0.9;
}

/* SERVICES */
.services-heading-wrap h2 {
  font-size: clamp(3.4rem, 5.3vw, 6rem);
  line-height: 0.92;
}

/* APPROACH */
.approach-heading-wrap h2 {
  font-size: clamp(3.4rem, 5.5vw, 6.2rem);
  line-height: 0.92;
}

/* ABOUT */
.about-heading-wrap h2 {
  font-size: clamp(3.4rem, 5.5vw, 6.2rem);
  line-height: 0.92;
}

/* FINAL CTA */
.final-cta h2 {
  font-size: clamp(3.4rem, 5.5vw, 6.2rem);
  line-height: 0.92;
}

/* CONTACT HERO */
.contact-hero h1 {
  font-size: clamp(3.6rem, 5vw, 5.8rem);
  line-height: 0.9;
}

/* CONTACT SECOND HEADING */
.contact-support h2 {
  font-size: clamp(3.3rem, 5vw, 5.6rem);
  line-height: 0.92;
}

/* PRIVACY HERO */
.privacy-hero h1 {
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  line-height: 0.9;
}

/* ==========================================================
   SMALL PHONE TYPOGRAPHY FIX
   For narrow devices such as 320px - 390px
========================================================== */

@media (max-width: 390px) {

  .page-container {
    width: calc(100% - 24px);
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .services-heading-wrap h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.92;
  }

  .service-main h3 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    letter-spacing: -0.04em;
  }

  .approach-heading-wrap h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.92;
  }

  .approach-step h3 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .about-heading-wrap h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.92;
  }

  .final-cta h2 {
    font-size: clamp(2.7rem, 12.5vw, 3.9rem);
    line-height: 0.92;
  }

  .contact-hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 4rem);
    line-height: 0.9;
  }

  .contact-support h2 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
    line-height: 0.92;
  }

  .privacy-hero h1 {
    font-size: clamp(2.9rem, 13vw, 4rem);
    line-height: 0.9;
  }

  .mobile-link {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
  }
}

@media (max-width: 350px) {

  .page-container {
    width: calc(100% - 20px);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .services-heading-wrap h2,
  .approach-heading-wrap h2,
  .about-heading-wrap h2 {
    font-size: 2.6rem;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }

  .contact-hero h1,
  .privacy-hero h1 {
    font-size: 2.7rem;
  }

  .contact-support h2 {
    font-size: 2.5rem;
  }
}


#formSuccessMessage {
  display: none;
  width: 100%;
  margin-top: 20px;
  padding: 18px 22px;

  border-radius: 16px;

  background: rgba(199, 255, 53, 0.12);
  border: 1px solid rgba(17, 17, 17, 0.14);

  color: #111111;

  font-size: 1rem;
  font-weight: 750;
  line-height: 1.5;

  letter-spacing: -0.01em;
}