/* Fonts */
/* poppins-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Clash Display";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/ClashDisplay-Semibold.woff2") format("woff2");
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/inter-v19-latin-300.woff2") format("woff2");
}

/* inter semi bold */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/poppins-v23-latin-700.woff2") format("woff2");
}

/* visible-only-on-focus skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  padding: 0.6rem 1rem;
  background: #000;
  color: #fff;
  border-radius: 0.375rem;
}

/* visually hidden but screen-reader readable */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* always show a focus style */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Global Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

:root {
  --space-xs: 10px;
  --space-sm: 20px;
  --space-smmd: 35px;
  --space-md: 50px;
  --space-lg: 65px;

  --main-brand-blue: #19c8ff;
  --main-brand-blue-dark: #0aa7e0;
  --accent-glow: #38d8ff;

  --bg-colour-1: #060911;
  --bg-colour-2: #0a0e1a;
  --bg-colour-3: #0d2238;
  --bg-colour-4: #112c47;

  --text-colour-1: #d1d5db;
  --text-colour-2: #90a5bc;

  --border-colour-1: rgba(25, 201, 255, 0.366);
  --border-colour-2: rgba(255, 255, 255, 0.08);

  --shadow-glow-primary: 0 0 30px rgba(25, 200, 255, 0.28);
  --shadow-glow-soft: 0 0 60px rgba(25, 200, 255, 0.12);

  --maxW: 80rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  --headerFont: "Clash Display", system-ui, sans-serif;
  --bodyFont: "Inter", system-ui, sans-serif;
}

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

body {
  font-family: var(--bodyFont);
  font-weight: 300;
  color: var(--text-colour-1);
  background-color: var(--bg-colour-1);
  line-height: 1.5;
}

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

li {
  color: var(--text-colour-1);
}

p {
  color: var(--text-colour-1);
  font-weight: 300;
  line-height: 1.5;
  font-size: 1rem;
}

.title-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  white-space: nowrap;
}

/* Auto center content with padding and max width
Apply to any content needing outer container */
.container {
  margin: 0 auto;
  max-width: var(--maxW);
}

section {
  padding: var(--sectionPadding);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headerFont);
  font-weight: 500;
  color: #fff;
  line-height: 1em;
}

h1 {
  font-size: clamp(2.9rem, 7vw, 4.5rem);
}

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

h3 {
  font-size: clamp(1.2rem, 2vw, 1.35rem);
}

.built-by-link {
  cursor: pointer;
}

.built-by-link:hover {
  color: var(--main-brand-blue);
  transition: color 0.4s ease;
}

.brand-accent {
  color: var(--main-brand-blue);
  text-shadow: 0 0 12px #00bfff9d;
}

.icon {
  fill: var(--main-brand-blue);
  width: 25px;
  height: 25px;
}

.icon-small {
  width: 20px;
  height: 20px;
}

/* CTA Styles */
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-md);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--headerFont);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
}

.cta-button:focus-visible {
  outline: 2px solid var(--main-brand-blue);
  outline-offset: 3px;
}

.cta-button--primary {
  background: linear-gradient(180deg, #22d3ff 0%, #11bdf4 100%);
  color: #03111d;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 10px 30px rgba(25, 200, 255, 0.28),
    0 0 22px rgba(25, 200, 255, 0.22);
}

.cta-button--primary:hover,
.cta-button--primary:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 14px 34px rgba(25, 200, 255, 0.34),
    0 0 28px rgba(25, 200, 255, 0.26);
}

.cta-button--secondary {
  border: 1px solid var(--border-colour-1);
  background: rgba(9, 28, 47, 0.55);
  color: var(--text-colour-1);
}

.cta-button--secondary:hover,
.cta-button--secondary:focus-visible {
  border-color: rgba(25, 200, 255, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 22px rgba(25, 200, 255, 0.12);
}

.cta-button-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-smmd);
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--border-colour-1);
  border-radius: 999px;
  background: rgb(14 42 70);
  color: var(--main-brand-blue);
  font-family: var(--bodyFont);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1;
}

.sub-heading {
  font-weight: 500;
  color: white;
  font-family: var(--headerFont);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.1em;
}

.service-link {
  font-weight: 500;
  text-decoration: none;
}

/* ==== Nav Component Styles ==== */
#nav1-navigation {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  z-index: 1000;
  padding: 0.5rem;
  padding-top: 0;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease;
}

/* Scrolled state */
#nav1-navigation.nav1-scrolled {
  background: rgba(6, 17, 31, 0.72);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Keep nav solid when mobile menu is open */
#nav1-navigation.nav1-active {
  background: var(--bg-colour-2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.nav1-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.4rem;
  max-width: var(--maxW);
  margin: 0 auto;
}

.nav1-ul li a {
  font-family: var(--bodyFont);
  font-weight: 300;
  color: var(--text-colour-1);
  text-decoration: none;
}

.nav1-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-family: "Poppins";
  font-weight: 300;
  display: flex;
  align-items: center;
}

.nav1-toggle {
  background: transparent;
  border: none;
  border-radius: 4px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.6s;
}

.nav1-toggle-box {
  width: 24px;
  height: 18px;
  position: relative;
}

.nav1-line {
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  border-radius: 1px;
}

.nav1-line:nth-child(1) {
  top: 0;
}
.nav1-line:nth-child(2) {
  top: 8px;
}
.nav1-line:nth-child(3) {
  bottom: 0;
}

/* Animate to "X" */
.nav1-toggle.active .nav1-line:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.nav1-toggle.active .nav1-line:nth-child(2) {
  opacity: 0;
}
.nav1-toggle.active .nav1-line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: auto;
  top: 8px;
}

/* Menu */
.nav1-ul-wrapper {
  width: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
  overflow: hidden;
}

.nav1-ul {
  list-style: none;
  padding: 1.5rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav1-ul a:hover {
  color: var(--main-brand-blue);
  transition: color 0.3s;
}

.nav1-ul .active {
  color: var(--main-brand-blue);
}

/* Button */
.header-btn {
  display: none;
}

/* Show menu when active */
#nav1-navigation.nav1-active .nav1-ul-wrapper {
  transform: scaleY(1);
  transition-delay: 0.2s;
}

.nav1-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease 0.3s,
    visibility 0.4s linear 0.6s;
  z-index: 90;
  transform-origin: top;
}

.nav1-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition:
    opacity 0.3s ease,
    visibility 0s;
}

.icon-blue {
  fill: var(--main-brand-blue);
}

.nav1-ul-wrapper .header-btn {
  display: none;
}

/* ==== Nav Top Bar ==== */
.nav1-topbar {
  background: transparent;
  font-size: 0.9rem;
  transform: translateY(0);
  margin-bottom: 0;
  transition:
    background-color 0.35s ease,
    transform 0.35s ease,
    margin-bottom 0.35s ease,
    opacity 0.25s ease;
}

#nav1-navigation.nav1-scrolled .nav1-topbar,
#nav1-navigation.nav1-active .nav1-topbar {
  background: transparent;
}

.nav1-topbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  margin-bottom: -40px; /* same height as bar */
}

.nav1-topbar-container {
  max-width: var(--maxW);
  margin: auto;
  padding: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Social Icons */

.nav1-topbar-social {
  display: flex;
  gap: 0.8rem;
}

.nav1-topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav1-topbar-social .icon {
  transition: fill 0.5s;
}

.nav1-topbar-social .icon:hover {
  fill: #6fddff;
  transition: fill 0.5s;
}

.nav1-topbar-icon {
  width: 14px;
  height: 14px;
  fill: white;
}

/* Email */

.nav1-topbar-contact a {
  color: var(--text-colour-1);
  text-decoration: none;
  font-family: var(--bodyFont);
  font-weight: 300;
  transition: color 0.3s;
}

.nav1-topbar-contact a:hover {
  color: var(--main-brand-blue);
  transition: color 0.3s;
}

/* Sub menu styles */
/* === Down Arrow === */
.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: center;
}

.has-submenu .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.has-submenu.open .arrow {
  transform: rotate(-135deg);
  border-right: 3px solid var(--main-brand-blue);
  border-bottom: 3px solid var(--main-brand-blue);
}

.has-submenu.open .submenu {
  margin-top: 1rem;
  visibility: visible;
  opacity: 1;
  max-height: 300px;
  border-bottom: 3px solid var(--main-brand-blue);
  transform: scaleY(1);
  pointer-events: all;
  transition:
    opacity 0.3s,
    margin-top 0.4s,
    padding-top 0.4s,
    max-height 0.3s,
    transform 0.4s,
    visibility 0s;
}

.has-submenu.open > .submenu-dropdown {
  color: var(--main-brand-blue);
}

.has-submenu li {
  padding: 0.3rem 0;
}

.submenu-dropdown {
  font-family: var(--bodyFont);
  font-weight: 300;
  color: var(--text-colour-1);
  opacity: 0.9;
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  cursor: pointer;
}

/* === Submenu Styling === */
.submenu {
  list-style: none;
  visibility: hidden;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition:
    opacity 0.3s,
    margin-top 0.4s,
    padding-top 0.4s,
    max-height 0.3s,
    transform 0.4s,
    visibility 0s linear 0.4s;
  background-color: var(--bg-colour-3);
  width: 160px;
  max-height: 0;
  margin: 0 auto;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* Links inside submenu */
.submenu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.submenu li a:hover {
  color: var(--main-brand-blue);
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
  .nav1-toggle {
    display: none;
  }

  .nav1-ul-wrapper {
    transform: none !important;
    display: flex;
    align-items: center;
    height: auto;
  }

  .nav1-ul {
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    font-size: 0.9rem;
  }

  .header-btn {
    display: block;
  }

  .submenu {
    position: absolute;
  }

  .has-submenu.open .submenu {
    box-shadow: none;
    background-color: var(--bg-colour-2);
    margin-top: 0;
    padding-top: 1rem;
    border-bottom: 3px solid var(--main-brand-blue);
  }
}

@media screen and (max-width: 1023px) {
  .nav1-ul-wrapper {
    width: 100%;
    height: auto;
    background-color: var(--bg-colour-2);
    transform: scaleY(0);
    transform-origin: top;
    transition:
      opacity 0.3s,
      transform 0.4s;
    overflow: hidden;
    position: absolute;
    box-sizing: border-box;
    padding-bottom: 1rem;
    left: 0;
    top: 58px;
  }

  .nav1-ul {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    max-height: 90vh;
    width: 100%;
    box-sizing: border-box;
    overflow: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav1-ul li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav1-ul-wrapper .header-btn {
    display: flex;
    justify-content: center;
  }

  .nav1-ul-wrapper .header-btn .cta-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1023px) {
  /* Make the mobile menu always sit directly under the full header height (top bar + nav) */
  #nav1-navigation .nav1-ul-wrapper {
    top: 100%;
  }
}

#scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--main-brand-blue); /* or any brand accent */
  z-index: 9999;
  transition: width 0.1s ease-out;
  will-change: width;
}

/* ===== Footer Section ===== */
.site-footer {
  background: var(--bg-colour-1);
  color: var(--text-colour-1);
  padding: 2.5rem 1rem;
  border-top: 1px solid #1a1a1a;
  border-radius: 0 0 10px 10px;
  max-width: 1250px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: "Poppins";
}

.brand-accent {
  color: var(--main-brand-blue);
  opacity: 1;
}

.footer-description {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Columns */
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-columns h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #ddd;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-contact .icon {
  height: 20px;
  width: 20px;
}

.footer-contact a:hover {
  color: var(--main-brand-blue);
  transition: color 0.4s;
}

.footer-socials .icon:hover {
  fill: #6fddff;
  transition: fill 0.5s;
}

footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.5s;
}

.footer-links a:hover {
  color: var(--main-brand-blue);
}

/* Bottom Row */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: #aaa;
}

.footer-socials a {
  margin-left: 1rem;
  font-size: 1rem;
  color: #aaa;
  transition: color 0.3s;
}

.footer-socials a:first-child {
  margin-left: 0;
}

.footer-socials a:hover {
  color: var(--main-brand-blue);
}

/* Initial state (hidden and slightly below) */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

/* Final state when in view */
.fade-in-up.visible {
  animation: fadeInUp 0.7s ease-out forwards;
}

/* 1. Section */
.rb-section {
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--bg-colour-2);
}

.rb-section .container {
  padding-bottom: 0;
}

/* 3. Header */
.rb-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.rb-header h2 {
  color: var(--text-colour-1);
  margin-bottom: var(--space-xs);
}

.rb-header p {
  color: var(--text-colour-1);
}

/* 4. Grid */
.rb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-smmd);
}

/* 5. Card */
.rb-card {
  display: block;
  text-decoration: none;
  background-color: var(--bg-colour-3);
  padding: var(--space-sm);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    border 0.2s ease;
  border: 1px solid transparent;
}

.rb-card:hover {
  transform: translateY(-4px);
  border: 1px solid var(--main-brand-blue);
}

/* 6. Content */
.rb-card__content h3 {
  color: var(--text-colour-1);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.rb-card__content p {
  color: var(--text-colour-1);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

/* 7. Link */
.rb-card__link {
  color: var(--main-brand-blue);
  font-size: 0.9rem;
}

/* 8. Responsive */
@media (max-width: 800px) {
  .rb-grid {
    grid-template-columns: 1fr;
  }
}

.what-i-do__badge {
  position: absolute;
  z-index: 2;
  bottom: var(--space-sm);
  left: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: var(--headerFont);
  font-weight: 500;
  color: var(--text-colour-1);
  background: rgba(9, 28, 47, 0.75);
  border: 1px solid var(--border-colour-1);
  backdrop-filter: blur(6px);
}

.what-i-do__badge span:first-child {
  color: var(--main-brand-blue);
  font-weight: 600;
}

.what-i-do__badge-divider {
  opacity: 0.6;
}

/*SECTIONS*/

/* Hero */
#hero-1 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(25, 200, 255, 0.22) 0%,
      rgba(25, 200, 255, 0.1) 18%,
      transparent 42%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(25, 200, 255, 0.14) 0%,
      rgba(25, 200, 255, 0.06) 14%,
      transparent 32%
    ),
    linear-gradient(180deg, #08192c 0%, #06111f 55%, #050d18 100%);
}

#hero-1::before,
#hero-1::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

#hero-1::before {
  top: -14rem;
  right: -12rem;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(
    circle,
    rgba(25, 200, 255, 0.22) 0%,
    rgba(25, 200, 255, 0.08) 38%,
    transparent 72%
  );
  filter: blur(50px);
}

#hero-1::after {
  left: -10rem;
  bottom: -12rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(
    circle,
    rgba(25, 200, 255, 0.16) 0%,
    rgba(25, 200, 255, 0.05) 40%,
    transparent 74%
  );
  filter: blur(45px);
}

#hero-1 .container {
  position: relative;
  z-index: 1;
  padding-top: 55px;
}

.hero-1__content {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
}

.hero-1__header h1 {
  margin: 0 auto;
  line-height: 0.95;
}

.hero-1__header .brand-accent {
  color: var(--main-brand-blue);
  text-shadow:
    0 0 14px rgba(25, 200, 255, 0.18),
    0 0 32px rgba(25, 200, 255, 0.12);
}

.hero-1__text {
  margin: 0 auto;
  padding-top: var(--space-md);
  color: var(--text-colour-1);
  font-size: 1.1rem;
  max-width: 600px;
}

.hero-1__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: var(--space-md);
}

.hero-1__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-colour-2);
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-1__benefit-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  color: var(--main-brand-blue);
}

@media screen and (max-width: 768px) {
  .hero-1__content {
    padding-block: 1.5rem;
  }

  .hero-1__benefits {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
}

/* ===== SECTION: What You Get START ===== */
#what-you-get {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-colour-2);
}

#what-you-get::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(25, 200, 255, 0.14),
    transparent 58%
  );
}

.what-you-get__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

#what-you-get h3 {
  font-family: var(--headerFont);
  line-height: 1.3em;
  padding-bottom: var(--space-xs);
}

.what-you-get__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.what-you-get__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-smmd);
  margin: 0 auto;
  max-width: 1150px;
}

.what-you-get__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-smmd);
  border: 1px solid var(--border-colour-1);
  border-radius: 1.5rem;
  background: rgba(90, 90, 90, 0.048);
}

.what-you-get__card--wide {
  grid-column: 1 / -1;
}

.what-you-get__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, #22d3ff 0%, #11bdf4 100%);
  color: #03111d;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 18px rgba(25, 200, 255, 0.18);
}

.what-you-get__icon-box svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.what-you-get__card-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-);
}

.what-you-get__card-text p {
  color: var(--text-colour-1);
  opacity: 0.8;
}

#what-you-get .cta__actions {
  margin-top: var(--space-sm);
}

@media screen and (max-width: 767px) {
  .what-you-get__content {
    gap: var(--space-md);
  }

  .what-you-get__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .what-you-get__card,
  .what-you-get__card--wide {
    grid-column: auto;
    min-height: auto;
    padding: var(--space-sm);
  }
}
/* ===== SECTION: What You Get END ===== */

/* ===== SECTION: Fully Managed Service START ===== */
#fully-managed-service {
  background-color: var(--bg-colour-2);
}

#fully-managed-service .eyebrow {
  margin-bottom: 0;
}

#fully-managed-service .sub-heading {
  font-family: var(--headerFont);
  color: white;
  font-size: 1.2rem;
  line-height: 1.3em;
}

.fully-managed-service__panel {
  padding: var(--space-md);
  border: 1px solid var(--border-colour-2);
  border-radius: 2rem;
  background:
    radial-gradient(
      circle at 80% 19%,
      rgba(25, 200, 255, 0.08),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      rgba(18, 28, 46, 0.4) 0%,
      rgba(7, 17, 31, 0.66) 50%,
      rgba(18, 28, 46, 0.4) 100%
    );
}

.fully-managed-service__content {
  max-width: 62rem;
  margin: 0 auto;
}

.fully-managed-service__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-smmd);
  text-align: center;
}

.fully-managed-service__intro {
  color: var(--text-colour-1);
}

.fully-managed-service__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-smmd);
  margin-top: var(--space-lg);
}

.fully-managed-service__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border: 1px solid var(--border-colour-1);
  border-radius: 1.5rem;
  background: rgba(90, 90, 90, 0.048);
}

.fully-managed-service__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background-color: rgba(30, 43, 67, 0.72);
  border: 1px solid var(--border-colour-2);
  color: var(--main-brand-blue);
  box-shadow: 0 0 18px rgba(25, 200, 255, 0.08);
}

.fully-managed-service__icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.fully-managed-service__card-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.fully-managed-service__card-text .sub-heading {
  margin-top: 0;
}

#fully-managed-service .cta__actions {
  margin-top: var(--space-lg);
}

@media screen and (min-width: 427px) and (max-width: 768px) {
  .fully-managed-service__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fully-managed-service__panel {
    padding: var(--space-sm);
  }

  .fully-managed-service__card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 426px) {
  .fully-managed-service__grid {
    grid-template-columns: 1fr;
  }

  .fully-managed-service__panel {
    padding: var(--space-sm);
  }
}
/* ===== SECTION: Fully Managed Service END ===== */

/* ===== SECTION: Portfolio START ===== */

#portfolio {
  background-color: var(--bg-colour-1);
}

#portfolio .container {
  max-width: 86rem;
}

.portfolio__content {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.portfolio__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.portfolio__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-smmd);
}

.portfolio__group > h3 {
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.portfolio__projects,
.portfolio__reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-smmd);
}

.portfolio__project-card:hover .project-title {
  color: var(--main-brand-blue);
}

.project-title {
  font-family: var(--headerFont);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  color: var(--text-colour-1);
  margin: 0;
  transition: color 0.3s;
}

.portfolio__review-card {
  overflow: hidden;
  border: 1px solid var(--border-colour-2);
  border-radius: 1.5rem;
  background: var(--bg-colour-2);
}

.portfolio__project-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-colour-2);
  border-radius: 1.5rem;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(25, 200, 255, 0.08),
      transparent 38%
    ),
    linear-gradient(180deg, rgba(14, 20, 33, 0.98) 0%, rgba(7, 12, 23, 1) 100%);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio__project-text {
  color: var(--text-colour-1);
  margin: 0;
}

.portfolio__project-image-link {
  display: block;
  aspect-ratio: 1 / 0.95;
  background-color: #d9d9d9;
  overflow: hidden;
}

.portfolio__project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.portfolio__project-card:hover,
.portfolio__project-card:focus-within {
  transform: translateY(-0.25rem);
  border-color: var(--border-colour-1);
  box-shadow: 0 0 1.5rem rgba(25, 200, 255, 0.08);
}

.portfolio__project-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.portfolio__project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--main-brand-blue);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.portfolio__project-link:hover {
  opacity: 0.8;
}

#portfolio .cta__actions {
  margin-top: var(--space-xs);
}

.portfolio__review-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-smmd);
}

.portfolio__stars {
  color: var(--main-brand-blue);
  letter-spacing: 0.18rem;
  font-size: 1.4rem;
  line-height: 1;
}

.portfolio__quote {
  margin: 0;
}

.portfolio__quote p {
  color: var(--text-colour-1);
}

.portfolio__reviewer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}

.portfolio__reviewer-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.portfolio__card-link {
  text-decoration: none;
}

.portfolio__reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.portfolio__reviewer-name,
.portfolio__reviewer-role {
  margin: 0;
}

.portfolio__reviewer-name {
  font-weight: 500;
  color: var(--text-colour-1);
}

.portfolio__reviewer-role {
  color: var(--text-colour-3);
  font-size: 0.9rem;
}

@media screen and (max-width: 426px) {
  .portfolio__projects,
  .portfolio__reviews {
    grid-template-columns: 1fr;
  }

  .portfolio__content {
    gap: 3rem;
  }
}

@media screen and (min-width: 427px) {
  .portfolio__projects,
  .portfolio__reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 769px) {
  .portfolio__projects,
  .portfolio__reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* ===== SECTION: Portfolio END ===== */

/* ===== SECTION: Pricing START ===== */
#pricing {
  background-color: var(--bg-colour-1);
}

.pricing__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing__card {
  width: min(100%, 40rem);
  margin: 0 auto;
  padding: var(--space-md);
  border: 2px solid var(--border-colour-1);
  border-radius: 2rem;
  background:
    radial-gradient(
      circle at 72% 20%,
      rgba(25, 200, 255, 0.12) 0%,
      rgba(25, 200, 255, 0.07) 14%,
      rgba(25, 200, 255, 0.03) 22%,
      transparent 42%
    ),
    linear-gradient(
      180deg,
      rgba(16, 24, 39, 0.96) 0%,
      rgba(10, 18, 32, 0.98) 100%
    );
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.pricing__toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-smmd);
}

.pricing__toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: min(100%, 16rem);
  padding: 0.35rem;
  border: 1px solid rgba(25, 200, 255, 0.22);
  border-radius: 999px;
  background: rgba(15, 28, 44, 0.82);
  color: var(--text-colour-1);
  cursor: pointer;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.pricing__toggle-track {
  position: absolute;
  inset: 0.35rem;
  pointer-events: none;
}

.pricing__toggle-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 0.175rem);
  height: 100%;
  border-radius: 999px;
  background: rgba(25, 200, 255, 0.14);
  box-shadow:
    0 0 18px rgba(25, 200, 255, 0.2),
    inset 0 0 0 1px rgba(25, 200, 255, 0.25);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.pricing__toggle-option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  font-family: var(--headerFont);
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    color 0.35s ease,
    opacity 0.35s ease;
}

.pricing__toggle-option--lump {
  opacity: 0.72;
}

.pricing__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.pricing__price-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.15rem;
  line-height: 1;
}

.pricing__price-currency,
.pricing__price-value {
  font-family: var(--headerFont);
  font-weight: 600;
  font-size: clamp(3rem, 6vw, 4rem);
  color: white;
}

.pricing__price-value {
  display: inline-block;
  text-align: center;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.pricing__price-period {
  padding-bottom: 0.55rem;
  color: var(--text-colour-2);
  font-size: 1.1rem;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.pricing__minimum,
.pricing__notice,
.pricing__microcopy {
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.pricing__minimum {
  color: var(--text-colour-2);
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.3rem;
  padding: 0.6rem 1rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  transition:
    background-color 0.35s ease,
    opacity 0.35s ease,
    border-color 0.35s ease;
}

.pricing__feature-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 1.2rem;
  border-radius: 50%;
  background: var(--main-brand-blue);
  color: #06111f; /* dark icon inside */
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
}

.pricing__icon {
  position: absolute;
  inset: 0;
  width: 75%;
  height: 75%;
  margin: auto;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.pricing__icon--cross {
  opacity: 0;
  transform: scale(0.75) rotate(-8deg);
}

.pricing__feature-text {
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.pricing__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-sm);
  padding: 0.7rem 1rem;
  border: 1px solid rgba(25, 200, 255, 0.24);
  border-radius: 0.8rem;
  background: rgba(9, 28, 47, 0.38);
  color: var(--main-brand-blue);
  font-weight: 500;
  text-align: center;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.pricing__microcopy {
  margin-top: var(--space-smmd);
  color: var(--text-colour-3);
  text-align: center;
}

#pricing .cta__actions {
  margin-top: var(--space-md);
}

/* ===== State: text fade out ===== */

.pricing__card.is-transitioning .pricing__price-value,
.pricing__card.is-transitioning .pricing__price-period,
.pricing__card.is-transitioning .pricing__minimum,
.pricing__card.is-transitioning .pricing__notice,
.pricing__card.is-transitioning [data-monthly-text] {
  opacity: 0;
  transform: translateY(0.2rem);
}

/* ===== State: lump sum ===== */
.pricing__card[data-plan="lump"] .pricing__toggle {
  border-color: rgba(25, 200, 255, 0.12);
  box-shadow: none;
}

.pricing__card[data-plan="lump"] .pricing__toggle-thumb {
  transform: translateX(100%);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 rgba(25, 200, 255, 0),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.pricing__card[data-plan="lump"] .pricing__toggle-option--monthly {
  opacity: 0.72;
}

.pricing__card[data-plan="lump"] .pricing__toggle-option--lump {
  opacity: 1;
}

.pricing__card[data-plan="monthly"] .pricing__toggle-option--monthly {
  opacity: 1;
}

.pricing__card[data-plan="monthly"] .pricing__toggle-option--lump {
  opacity: 0.72;
}

.pricing__card[data-plan="lump"] .pricing__feature--switches {
  background: rgba(255, 255, 255, 0.025);
}

.pricing__card[data-plan="lump"]
  .pricing__feature--switches
  .pricing__feature-icon {
  background: rgba(255, 107, 107, 0.12);
  border-color: rgba(255, 107, 107, 0.35);
  color: rgba(255, 107, 107, 0.9);
  box-shadow: none;
}

.pricing__card[data-plan="lump"]
  .pricing__feature--switches
  .pricing__icon--check {
  opacity: 0;
  transform: scale(0.75) rotate(8deg);
}

.pricing__card[data-plan="lump"]
  .pricing__feature--switches
  .pricing__icon--cross {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@media screen and (max-width: 767px) {
  .pricing__card {
    padding: var(--space-smmd) var(--space-sm);
    border-radius: 1.5rem;
  }

  .pricing__toggle {
    width: 100%;
    max-width: 16rem;
  }

  .pricing__price-period {
    font-size: 1rem;
    padding-bottom: 0.4rem;
  }

  .pricing__feature {
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
  }

  .pricing__notice {
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
  }
}

#pricing .cta__actions {
  margin-top: var(--space-sm);
}

/* ===== State: text fade out ===== */

.pricing__card.is-transitioning .pricing__price-value,
.pricing__card.is-transitioning .pricing__price-period,
.pricing__card.is-transitioning .pricing__minimum,
.pricing__card.is-transitioning .pricing__notice,
.pricing__card.is-transitioning [data-monthly-text] {
  opacity: 0;
  transform: translateY(0.2rem);
}

/* ===== State: lump sum ===== */
.pricing__card[data-plan="lump"] .pricing__toggle {
  border-color: rgba(25, 200, 255, 0.12);
  box-shadow: none;
}

.pricing__card[data-plan="lump"] .pricing__toggle-thumb {
  transform: translateX(100%);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 rgba(25, 200, 255, 0),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.pricing__card[data-plan="lump"] .pricing__toggle-option--monthly {
  opacity: 0.72;
}

.pricing__card[data-plan="lump"] .pricing__toggle-option--lump {
  opacity: 1;
}

.pricing__card[data-plan="monthly"] .pricing__toggle-option--monthly {
  opacity: 1;
}

.pricing__card[data-plan="monthly"] .pricing__toggle-option--lump {
  opacity: 0.72;
}

.pricing__card[data-plan="lump"] .pricing__feature--switches {
  background: rgba(255, 255, 255, 0.025);
}

.pricing__card[data-plan="lump"]
  .pricing__feature--switches
  .pricing__feature-icon {
  color: rgba(255, 107, 107);
}

.pricing__card[data-plan="lump"]
  .pricing__feature--switches
  .pricing__icon--check {
  opacity: 0;
  transform: scale(0.75) rotate(8deg);
}

.pricing__card[data-plan="lump"]
  .pricing__feature--switches
  .pricing__icon--cross {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@media screen and (max-width: 767px) {
  .pricing__card {
    padding: var(--space-smmd) var(--space-sm);
    border-radius: 1.5rem;
  }

  .pricing__toggle {
    width: 100%;
    max-width: 16rem;
  }

  .pricing__price-period {
    font-size: 1rem;
    padding-bottom: 0.4rem;
  }

  .pricing__feature {
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
  }

  .pricing__notice {
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
  }
}
/* ===== SECTION: Pricing END ===== */

/* ===== SECTION: Guarantees START ===== */
#guarantees {
  position: relative;
  background-color: var(--bg-colour-2);
  overflow: hidden;
}

#guarantees::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(25, 200, 255, 0.14),
    transparent 56%
  );
}

.guarantees__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.guarantees__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-smmd);
  max-width: 60rem;
  width: 100%;
  margin: 0 auto;
}

.guarantees__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-smmd);
  border: 1px solid var(--border-colour-1);
  border-radius: 1.5rem;
  background: rgba(90, 90, 90, 0.048);
}

.guarantees__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border-radius: 0.8rem;
  background: rgba(31, 43, 67, 0.8);
  border: 1px solid var(--border-colour-2);
  color: var(--main-brand-blue);
}

.guarantees__icon-box--primary {
  background: linear-gradient(180deg, #22d3ff 0%, #11bdf4 100%);
  border-color: transparent;
  color: #03111d;
  box-shadow:
    0 0 18px rgba(25, 200, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.guarantees__icon-box svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.guarantees__card-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.guarantees__card-text .sub-heading {
  margin-top: 0;
}

#guarantees .cta__actions {
  margin-top: var(--space-sm);
}

@media screen and (max-width: 767px) {
  .guarantees__content {
    gap: var(--space-md);
  }

  .guarantees__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .guarantees__card {
    min-height: auto;
    padding: var(--space-sm);
  }
}
/* ===== SECTION: Guarantees END ===== */

/* ===== SECTION: How It Works START ===== */
#how-it-works {
  position: relative;
  background-color: var(--bg-colour-1);
  overflow: hidden;
}

.how-it-works__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.how-it-works__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-it-works__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 54rem;
  width: 100%;
  margin: 0 auto;
  counter-reset: none;
}

.how-it-works__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 1.8rem;
  border: 1px solid var(--border-colour-2);
  border-radius: 1.5rem;
  background: var(--bg-colour-2);
}

.how-it-works__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border-radius: 0.85rem;
  background: rgba(31, 43, 67, 0.82);
  border: 1px solid var(--border-colour-2);
  color: var(--main-brand-blue);
  font-family: var(--headerFont);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.how-it-works__item--highlight .how-it-works__number {
  background: linear-gradient(180deg, #22d3ff 0%, #11bdf4 100%);
  border-color: transparent;
  color: #03111d;
  box-shadow:
    0 0 18px rgba(25, 200, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.how-it-works__item-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.how-it-works__item-text .sub-heading {
  margin-top: 0;
}

.how-it-works__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#how-it-works .cta__actions {
  margin-top: var(--space-smmd);
}

@media screen and (max-width: 767px) {
  .how-it-works__content {
    gap: var(--space-md);
  }

  .how-it-works__item {
    padding: var(--space-sm);
  }

  .how-it-works__number {
    width: 2.8rem;
    height: 2.8rem;
    flex-basis: 2.8rem;
    font-size: 1.4rem;
  }
}
/* ===== SECTION: How It Works END ===== */

/* ===== SECTION: Final CTA START ===== */
#final-cta {
  position: relative;
  background-color: var(--bg-colour-2);
  overflow: hidden;
}

#final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(25, 200, 255, 0.22) 0%,
    rgba(25, 200, 255, 0.06) 44%,
    rgba(25, 200, 255, 0.01) 62%,
    transparent 68%
  );
}

.final-cta__panel {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
  padding: 5rem 2rem;
  border: 2px solid var(--border-colour-1);
  border-radius: 2rem;
  background:
    radial-gradient(
      circle at 72% 26%,
      rgba(25, 200, 255, 0.12) 0%,
      rgba(25, 200, 255, 0.07) 28%,
      rgba(25, 200, 255, 0.06) 34%,
      transparent 62%
    ),
    linear-gradient(180deg, rgb(5 14 28 / 94%) 0%, rgb(3 11 21 / 98%) 100%);
}

.final-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.final-cta__sub {
  max-width: 35rem;
  color: var(--text-colour-3);
}

#final-cta .cta__actions {
  margin-top: var(--space-sm);
}

@media screen and (max-width: 767px) {
  .final-cta__panel {
    border-radius: 1.5rem;
  }

  .final-cta__content {
    gap: var(--space-sm);
  }
}
/* ===== SECTION: Final CTA END ===== */
