/* =========================================================
   NEXA BUDDY
   GLOBAL STYLESHEET
   PART 1/8 — FOUNDATION & DESIGN SYSTEM
   ========================================================= */

/* =========================================================
   01. DESIGN TOKENS
   ========================================================= */

:root {
  /* ---------------------------------------------------------
     BRAND COLORS
     --------------------------------------------------------- */

  --color-primary: #6384ff;
  --color-secondary: #546182;

  /* ---------------------------------------------------------
     CORE COLORS
     --------------------------------------------------------- */

  --color-white: #ffffff;
  --color-black: #000000;

  --color-dark: #111827;
  --color-text: #263047;
  --color-muted: #69748d;

  --color-light: #f7f9fc;
  --color-lighter: #fbfcff;

  --color-border: #e7eaf1;

  /* ---------------------------------------------------------
     TYPOGRAPHY
     --------------------------------------------------------- */

  --font-primary:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;

  /* ---------------------------------------------------------
     LAYOUT
     --------------------------------------------------------- */

  --container-width: 1200px;
  --container-padding: 24px;

  /* ---------------------------------------------------------
     BORDER RADIUS
     --------------------------------------------------------- */

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* ---------------------------------------------------------
     SHADOWS
     --------------------------------------------------------- */

  --shadow-sm: 0 4px 14px rgba(17, 24, 39, 0.06);

  --shadow-md: 0 10px 30px rgba(17, 24, 39, 0.08);

  --shadow-lg: 0 20px 50px rgba(17, 24, 39, 0.1);

  /* ---------------------------------------------------------
     TRANSITIONS
     --------------------------------------------------------- */

  --transition-fast: 0.2s ease;

  --transition-normal: 0.3s ease;

  --transition-slow: 0.5s ease;

  /* ---------------------------------------------------------
     Z-INDEX
     --------------------------------------------------------- */

  --z-base: 1;
  --z-header: 1000;
  --z-menu: 2000;
}

/* =========================================================
   02. GLOBAL RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;

  scroll-behavior: smooth;

  scroll-padding-top: 80px;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;

  font-family: var(--font-primary);

  color: var(--color-text);

  background-color: var(--color-white);

  text-rendering: optimizeLegibility;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   03. ELEMENT NORMALIZATION
   ========================================================= */

img,
picture,
svg,
video,
canvas {
  display: block;

  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  margin: 0;
  padding: 0;

  cursor: pointer;
}

a {
  color: inherit;

  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;

  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* =========================================================
   04. ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline: 3px solid rgba(99, 132, 255, 0.45);

  outline-offset: 3px;
}

::selection {
  color: var(--color-white);

  background-color: var(--color-primary);
}

/* =========================================================
   05. GLOBAL CONTAINER
   ========================================================= */

.container {
  width: min(
    calc(100% - (var(--container-padding) * 2)),
    var(--container-width)
  );

  margin-inline: auto;
}

/* =========================================================
   06. GLOBAL SECTION FOUNDATION
   ========================================================= */

.section {
  position: relative;

  width: 100%;

  padding-block: 100px;
}

.section--white {
  background-color: var(--color-white);
}

.section--light {
  background-color: var(--color-light);
}

/* =========================================================
   07. SHARED SECTION LABEL
   ========================================================= */

.section-label {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--color-primary);

  font-size: 13px;
  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================================
   08. SHARED SECTION TITLE
   ========================================================= */

.section-title {
  color: var(--color-dark);

  font-size: clamp(36px, 4vw, 56px);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -0.04em;
}

/* =========================================================
   09. SHARED SECTION DESCRIPTION
   ========================================================= */

.section-description {
  max-width: 650px;
  color: var(--color-secondary);
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

/* =========================================================
   10. GLOBAL BUTTON SYSTEM
   ========================================================= */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding-inline: 22px;

  border: 1px solid transparent;

  border-radius: var(--radius-md);

  font-size: 15px;
  font-weight: 700;

  line-height: 1;

  text-align: center;

  transition:
    transform var(--transition-normal),
    color var(--transition-normal),
    background-color var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.button:hover {
  transform: translateY(-2px);
}

/* =========================================================
   11. PRIMARY BUTTON
   ========================================================= */

.button--primary {
  color: var(--color-white);

  background-color: var(--color-primary);

  box-shadow: 0 10px 25px rgba(99, 132, 255, 0.22);
}

.button--primary:hover {
  color: var(--color-white);

  background-color: #5a7cf7;

  box-shadow: 0 14px 32px rgba(99, 132, 255, 0.3);
}

/* =========================================================
   12. SECONDARY BUTTON
   ========================================================= */

.button--secondary {
  color: var(--color-secondary);

  background-color: var(--color-white);

  border-color: var(--color-border);
}

.button--secondary:hover {
  color: var(--color-primary);

  background-color: var(--color-white);

  border-color: rgba(99, 132, 255, 0.3);

  box-shadow: var(--shadow-sm);
}

/* =========================================================
   13. BUTTON ARROW
   ========================================================= */

.button__arrow {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  font-size: 18px;

  transition: transform var(--transition-normal);
}

.button:hover .button__arrow {
  transform: translateX(4px);
}

/* =========================================================
   14. VISIBILITY HELPERS
   ========================================================= */

.only-mobile {
  display: none;
}

.only-desktop {
  display: block;
}

/* =========================================================
   15. BODY SCROLL LOCK
   ========================================================= */

body.menu-open {
  overflow: hidden;
}

/* =========================================================
   16. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;
  }
}

/* =========================================================
   17. LARGE TABLET
   ========================================================= */

@media (max-width: 1000px) {
  :root {
    --container-padding: 22px;
  }

  .section {
    padding-block: 80px;
  }

  .only-mobile {
    display: block;
  }

  .only-desktop {
    display: none;
  }
}

/* =========================================================
   18. MOBILE FOUNDATION
   ========================================================= */

@media (max-width: 600px) {
  :root {
    --container-padding: 16px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .section {
    padding-block: 65px;
  }

  .section-title {
    font-size: clamp(32px, 9vw, 42px);

    line-height: 1.1;
  }

  .section-description {
    font-size: 16px;

    line-height: 1.65;
  }

  .button {
    min-height: 50px;

    padding-inline: 18px;

    font-size: 14px;
  }
}

/* =========================================================
   END OF PART 1/8
   ========================================================= */

/* =========================================================
   NEXA BUDDY
   GLOBAL STYLESHEET
   PART 2/8 — HEADER & MOBILE NAVIGATION
   ========================================================= */

/* =========================================================
   01. SITE HEADER
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  z-index: var(--z-header);

  width: 100%;

  background-color: rgba(255, 255, 255, 0.94);

  border-bottom: 1px solid rgba(231, 234, 241, 0.8);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* =========================================================
   02. HEADER INNER CONTAINER
   ========================================================= */

.site-header__inner {
  min-height: 78px;

  display: flex;

  align-items: center;

  gap: 30px;
}

/* =========================================================
   03. BRAND LOGO
   ========================================================= */

.brand-logo {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  flex-shrink: 0;

  color: var(--color-dark);
}

/* ---------------------------------------------------------
   Logo Mark
   --------------------------------------------------------- */

.brand-logo__mark {
  width: 38px;
  height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 11px;

  color: var(--color-white);

  background: linear-gradient(145deg, var(--color-primary), #7d99ff);

  font-size: 19px;
  font-weight: 800;

  line-height: 1;

  box-shadow: 0 7px 18px rgba(99, 132, 255, 0.22);
}

/* ---------------------------------------------------------
   Logo Text
   --------------------------------------------------------- */

.brand-logo__text {
  color: var(--color-dark);

  font-size: 20px;
  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.04em;
}

.brand-logo__text span {
  color: var(--color-primary);
}

/* =========================================================
   04. DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
  margin-left: auto;
}

.desktop-nav__list {
  display: flex;

  align-items: center;

  gap: 34px;
}

.desktop-nav__item {
  margin: 0;
  padding: 0;
}

/* =========================================================
   05. DESKTOP NAVIGATION LINKS
   ========================================================= */

.desktop-nav__link {
  position: relative;

  display: inline-flex;

  align-items: center;

  padding-block: 8px;

  color: var(--color-secondary);

  font-size: 14px;
  font-weight: 600;

  line-height: 1.4;

  transition: color var(--transition-normal);
}

/* ---------------------------------------------------------
   Active / Hover Indicator
   --------------------------------------------------------- */

.desktop-nav__link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 0;
  height: 2px;

  border-radius: var(--radius-full);

  background-color: var(--color-primary);

  transform: translateX(-50%);

  transition: width var(--transition-normal);
}

.desktop-nav__link:hover,
.desktop-nav__link--active {
  color: var(--color-primary);
}

.desktop-nav__link:hover::after,
.desktop-nav__link--active::after {
  width: 18px;
}

/* =========================================================
   06. HEADER CTA
   ========================================================= */

.header-cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  min-height: 44px;

  padding-inline: 18px;

  flex-shrink: 0;

  border-radius: var(--radius-md);

  color: var(--color-white);

  background-color: var(--color-primary);

  font-size: 14px;
  font-weight: 700;

  line-height: 1;

  box-shadow: 0 8px 20px rgba(99, 132, 255, 0.18);

  transition:
    transform var(--transition-normal),
    background-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.header-cta:hover {
  color: var(--color-white);

  background-color: #5a7cf7;

  transform: translateY(-2px);

  box-shadow: 0 12px 26px rgba(99, 132, 255, 0.27);
}

.header-cta__arrow {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  font-size: 17px;

  transition: transform var(--transition-normal);
}

.header-cta:hover .header-cta__arrow {
  transform: translateX(3px);
}

/* =========================================================
   07. MOBILE MENU TOGGLE
   ========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 5px;

  flex-shrink: 0;

  border: 1px solid var(--color-border);

  border-radius: var(--radius-md);

  color: var(--color-secondary);

  background-color: var(--color-white);

  transition:
    color var(--transition-normal),
    border-color var(--transition-normal),
    background-color var(--transition-normal),
    transform var(--transition-fast);
}

.menu-toggle:hover {
  color: var(--color-primary);

  border-color: rgba(99, 132, 255, 0.3);

  background-color: rgba(99, 132, 255, 0.04);
}

.menu-toggle:active {
  transform: scale(0.96);
}

/* =========================================================
   08. HAMBURGER LINES
   ========================================================= */

.menu-toggle__line {
  display: block;

  width: 19px;
  height: 2px;

  flex-shrink: 0;

  border-radius: var(--radius-full);

  background-color: currentColor;

  transition:
    transform var(--transition-normal),
    opacity var(--transition-normal);
}

/* =========================================================
   09. MOBILE MENU WRAPPER
   ========================================================= */

.mobile-menu {
  position: fixed;

  inset: 0;

  z-index: var(--z-menu);

  visibility: hidden;

  pointer-events: none;
}

/* =========================================================
   10. MOBILE MENU OVERLAY
   ========================================================= */

.mobile-menu__overlay {
  position: absolute;

  inset: 0;

  background-color: rgba(17, 24, 39, 0.48);

  opacity: 0;

  cursor: pointer;

  transition: opacity 0.3s ease;
}

/* =========================================================
   11. MOBILE SIDE DRAWER
   ========================================================= */

.mobile-menu__drawer {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;

  width: min(380px, 88vw);

  display: flex;

  flex-direction: column;

  overflow-y: auto;

  overscroll-behavior: contain;

  -webkit-overflow-scrolling: touch;

  background-color: var(--color-white);

  box-shadow: -20px 0 60px rgba(17, 24, 39, 0.14);

  transform: translateX(100%);

  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   12. MOBILE MENU OPEN STATE
   ========================================================= */

.mobile-menu.is-open {
  visibility: visible;

  pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu__drawer {
  transform: translateX(0);
}

/* =========================================================
   13. DRAWER HEADER
   ========================================================= */

.mobile-menu__header {
  min-height: 72px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-shrink: 0;

  padding-inline: var(--container-padding);

  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__title {
  color: var(--color-dark);

  font-size: 14px;
  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.01em;
}

/* =========================================================
   14. DRAWER CLOSE BUTTON
   ========================================================= */

.mobile-menu__close {
  position: relative;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border: 1px solid var(--color-border);

  border-radius: var(--radius-md);

  color: var(--color-secondary);

  background-color: var(--color-white);

  transition:
    color var(--transition-normal),
    background-color var(--transition-normal),
    border-color var(--transition-normal),
    transform var(--transition-fast);
}

.mobile-menu__close:hover {
  color: var(--color-primary);

  border-color: rgba(99, 132, 255, 0.35);

  background-color: rgba(99, 132, 255, 0.06);
}

.mobile-menu__close:active {
  transform: scale(0.95);
}

/* =========================================================
   15. CLOSE BUTTON — X ICON
   ========================================================= */

.mobile-menu__close span {
  position: absolute;

  width: 18px;
  height: 1.5px;

  border-radius: var(--radius-full);

  background-color: currentColor;
}

.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

/* =========================================================
   16. MOBILE NAVIGATION AREA
   ========================================================= */

.mobile-nav {
  flex: 1;

  padding: 22px var(--container-padding) 30px;
}

.mobile-nav__list {
  display: flex;

  flex-direction: column;

  gap: 2px;
}

/* =========================================================
   17. MOBILE NAVIGATION LINKS
   ========================================================= */

.mobile-nav__link {
  position: relative;

  min-height: 58px;

  display: flex;

  align-items: center;

  padding-inline: 4px;

  border-bottom: 1px solid rgba(231, 234, 241, 0.8);

  color: var(--color-secondary);

  font-size: 16px;
  font-weight: 650;

  line-height: 1.4;

  transition:
    color var(--transition-normal),
    padding var(--transition-normal),
    background-color var(--transition-normal);
}

.mobile-nav__link:hover {
  color: var(--color-primary);

  padding-left: 10px;
}

/* =========================================================
   18. MOBILE CTA
   ========================================================= */

.mobile-nav__item--cta {
  margin-top: 20px;
}

.mobile-nav__cta {
  min-height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  padding-inline: 20px;

  border-radius: var(--radius-md);

  color: var(--color-white);

  background-color: var(--color-primary);

  font-size: 14px;
  font-weight: 750;

  line-height: 1;

  box-shadow: 0 10px 25px rgba(99, 132, 255, 0.2);

  transition:
    transform var(--transition-normal),
    background-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.mobile-nav__cta:hover {
  color: var(--color-white);

  background-color: #5476f4;

  transform: translateY(-2px);

  box-shadow: 0 14px 30px rgba(99, 132, 255, 0.26);
}

.mobile-nav__cta-arrow {
  font-size: 17px;

  transition: transform var(--transition-normal);
}

.mobile-nav__cta:hover .mobile-nav__cta-arrow {
  transform: translateX(4px);
}

/* =========================================================
   19. DRAWER FOOTER
   ========================================================= */

.mobile-menu__footer {
  flex-shrink: 0;

  padding: 22px var(--container-padding) 28px;

  border-top: 1px solid var(--color-border);
}

.mobile-menu__brand {
  display: block;

  color: var(--color-dark);

  font-size: 13px;
  font-weight: 800;

  line-height: 1.3;
}

.mobile-menu__tagline {
  display: block;

  margin-top: 5px;

  color: var(--color-muted);

  font-size: 10px;

  line-height: 1.5;
}

/* =========================================================
   20. HAMBURGER ACTIVE STATE
   ========================================================= */

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   21. TABLET / MOBILE HEADER
   ========================================================= */

@media (max-width: 900px) {
  .site-header__inner {
    min-height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;

    margin-left: auto;
  }
}

/* =========================================================
   22. SMALL MOBILE HEADER
   ========================================================= */

@media (max-width: 600px) {
  .site-header__inner {
    min-height: 68px;

    gap: 16px;
  }

  .brand-logo {
    gap: 8px;
  }

  .brand-logo__mark {
    width: 36px;
    height: 36px;

    border-radius: 10px;

    font-size: 18px;
  }

  .brand-logo__text {
    font-size: 19px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu__drawer {
    width: min(360px, 92vw);
  }
}

/* =========================================================
   23. VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {
  .brand-logo__text {
    font-size: 18px;
  }

  .brand-logo__mark {
    width: 34px;
    height: 34px;

    font-size: 17px;
  }

  .mobile-menu__drawer {
    width: 94vw;
  }
}

/* =========================================================
   END OF PART 2/8
   ========================================================= */

/* =========================================================
   NEXA BUDDY
   GLOBAL STYLESHEET
   PART 3/8 — HERO SECTION
   ========================================================= */

/* =========================================================
   01. HERO BASE
   ========================================================= */

.hero-section {
  position: relative;

  width: 100%;

  min-height: calc(100vh - 78px);

  display: flex;

  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(99, 132, 255, 0.11),
      transparent 32%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

/* =========================================================
   02. HERO CONTAINER
   ========================================================= */

.hero-section__container {
  position: relative;

  z-index: 2;

  min-height: calc(100vh - 78px);

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(420px, 0.9fr);

  align-items: center;

  gap: 60px;

  padding-top: 90px;
  padding-bottom: 70px;
}

/* =========================================================
   03. HERO CONTENT
   ========================================================= */

.hero-content {
  max-width: 680px;
}

/* =========================================================
   04. HERO EYEBROW
   ========================================================= */

.hero-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 22px;

  padding: 8px 13px;

  border: 1px solid rgba(99, 132, 255, 0.18);

  border-radius: var(--radius-full);

  color: var(--color-primary);

  background-color: rgba(99, 132, 255, 0.06);

  font-size: 12px;
  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.07em;

  text-transform: uppercase;
}

/* ---------------------------------------------------------
   Eyebrow Indicator
   --------------------------------------------------------- */

.hero-eyebrow::before {
  content: "";

  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background-color: var(--color-primary);

  box-shadow: 0 0 0 4px rgba(99, 132, 255, 0.1);
}

/* =========================================================
   05. HERO TITLE
   ========================================================= */

.hero-title {
  max-width: 750px;

  color: var(--color-dark);

  font-size: clamp(48px, 5.4vw, 76px);

  font-weight: 800;

  line-height: 1.04;

  letter-spacing: -0.055em;
}

.hero-title span {
  display: block;

  color: var(--color-primary);
}

/* =========================================================
   06. HERO DESCRIPTION
   ========================================================= */

.hero-description {
  max-width: 600px;
  margin-top: 27px;
  color: var(--color-secondary);
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
}

/* =========================================================
   07. HERO ACTIONS
   ========================================================= */

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 13px;

  margin-top: 34px;
}

.hero-actions .button {
  min-height: 54px;

  padding-inline: 23px;
}

/* =========================================================
   08. HERO TRUST LINE
   ========================================================= */

.hero-trust {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-top: 26px;

  color: var(--color-muted);

  font-size: 13px;
  font-weight: 500;

  line-height: 1.5;
}

.hero-trust__icon {
  width: 21px;
  height: 21px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 6px;

  color: var(--color-primary);

  background-color: rgba(99, 132, 255, 0.09);

  font-size: 11px;
}

/* =========================================================
   09. HERO VISUAL
   ========================================================= */

.hero-visual {
  position: relative;

  min-height: 520px;

  display: flex;

  align-items: center;
  justify-content: center;
}

/* =========================================================
   10. HERO VISUAL GLOW
   ========================================================= */

.hero-visual__glow {
  position: absolute;

  width: 330px;
  height: 330px;

  border-radius: 50%;

  background: rgba(99, 132, 255, 0.15);

  filter: blur(40px);

  pointer-events: none;
}

/* =========================================================
   11. HERO VISUAL GRID
   ========================================================= */

.hero-visual__grid {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background-image:
    linear-gradient(rgba(99, 132, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 132, 255, 0.07) 1px, transparent 1px);

  background-size: 35px 35px;

  opacity: 0.8;

  mask-image: radial-gradient(circle, black 20%, transparent 70%);

  -webkit-mask-image: radial-gradient(circle, black 20%, transparent 70%);

  pointer-events: none;
}

/* =========================================================
   12. HERO CENTRAL CORE
   ========================================================= */

.hero-core {
  position: relative;

  z-index: 3;

  width: 190px;
  height: 190px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 46%;

  background: linear-gradient(145deg, var(--color-primary), #7c98ff);

  box-shadow:
    0 30px 70px rgba(99, 132, 255, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);

  transform: rotate(-7deg);

  animation: heroCoreFloat 5s ease-in-out infinite;
}

/* ---------------------------------------------------------
   Core Inner Border
   --------------------------------------------------------- */

.hero-core::before {
  content: "";

  position: absolute;

  inset: 14px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 40%;
}

/* ---------------------------------------------------------
   Core Inner Surface
   --------------------------------------------------------- */

.hero-core__inner {
  width: 112px;
  height: 112px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 15% 25% 15% 25%;

  backdrop-filter: blur(4px);

  -webkit-backdrop-filter: blur(4px);

  transform: rotate(7deg);
}

/* ---------------------------------------------------------
   Core Letter
   --------------------------------------------------------- */

.hero-core__logo {
  max-width: 100%;
}

/* =========================================================
   13. HERO FLOATING CARDS
   ========================================================= */

.hero-floating-card {
  position: absolute;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 9px;

  padding: 11px 14px;

  border: 1px solid rgba(255, 255, 255, 0.85);

  border-radius: 12px;

  color: var(--color-secondary);

  background: rgba(255, 255, 255, 0.88);

  box-shadow: 0 16px 40px rgba(38, 48, 71, 0.1);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  font-size: 12px;
  font-weight: 700;

  line-height: 1;

  white-space: nowrap;
}

/* =========================================================
   14. FLOATING CARD ICON
   ========================================================= */

.hero-floating-card__icon {
  width: 28px;
  height: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 8px;

  color: var(--color-primary);

  background: rgba(99, 132, 255, 0.09);

  font-size: 12px;
  font-weight: 800;
}

/* =========================================================
   15. CREATIVE CARD
   ========================================================= */

.hero-floating-card--creative {
  top: 65px;
  right: 5%;

  animation: heroCardFloatOne 5s ease-in-out infinite;
}

/* =========================================================
   16. TECHNOLOGY CARD
   ========================================================= */

.hero-floating-card--technology {
  bottom: 75px;
  left: 2%;

  animation: heroCardFloatTwo 6s ease-in-out infinite;
}

/* =========================================================
   17. GROWTH CARD
   ========================================================= */

.hero-floating-card--growth {
  right: 0;
  bottom: 150px;

  animation: heroCardFloatThree 5.5s ease-in-out infinite;
}

/* =========================================================
   18. DECORATIVE DOTS
   ========================================================= */

.hero-visual__dot {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background-color: var(--color-primary);

  box-shadow: 0 0 0 5px rgba(99, 132, 255, 0.08);

  pointer-events: none;
}

/* ---------------------------------------------------------
   Dot One
   --------------------------------------------------------- */

.hero-visual__dot--one {
  top: 18%;
  left: 12%;
}

/* ---------------------------------------------------------
   Dot Two
   --------------------------------------------------------- */

.hero-visual__dot--two {
  top: 24%;
  right: 18%;

  width: 5px;
  height: 5px;
}

/* ---------------------------------------------------------
   Dot Three
   --------------------------------------------------------- */

.hero-visual__dot--three {
  bottom: 20%;
  left: 18%;

  width: 5px;
  height: 5px;
}

/* =========================================================
   19. HERO ANIMATIONS
   ========================================================= */

/* ---------------------------------------------------------
   Central Core
   --------------------------------------------------------- */

@keyframes heroCoreFloat {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }

  50% {
    transform: rotate(-4deg) translateY(-10px);
  }
}

/* ---------------------------------------------------------
   Creative Card
   --------------------------------------------------------- */

@keyframes heroCardFloatOne {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* ---------------------------------------------------------
   Technology Card
   --------------------------------------------------------- */

@keyframes heroCardFloatTwo {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ---------------------------------------------------------
   Growth Card
   --------------------------------------------------------- */

@keyframes heroCardFloatThree {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* =========================================================
   20. HERO — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .hero-section {
    min-height: auto;
  }

  .hero-section__container {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 35px;

    padding-top: 75px;
    padding-bottom: 70px;
  }

  .hero-content {
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
  }
}

/* =========================================================
   21. HERO — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .hero-section__container {
    gap: 20px;

    padding-top: 84px;
    padding-bottom: 55px;
  }

  .hero-eyebrow {
    margin-bottom: 18px;

    padding: 7px 11px;

    font-size: 10px;

    letter-spacing: 0.045em;
  }

  .hero-title {
    font-size: clamp(40px, 11.5vw, 56px);

    line-height: 1.05;

    letter-spacing: -0.06em;
  }

  .hero-description {
    margin-top: 21px;

    font-size: 16px;

    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;

    width: 100%;

    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    justify-content: center;

    margin-top: 22px;

    font-size: 12px;

    line-height: 1.5;

    text-align: left;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual__glow {
    width: 240px;
    height: 240px;
  }

  .hero-visual__grid {
    width: 320px;
    height: 320px;

    background-size: 28px 28px;
  }

  .hero-core {
    width: 135px;
    height: 135px;
  }

  .hero-core::before {
    inset: 10px;
  }

  .hero-core__inner {
    width: 80px;
    height: 80px;
  }

  .hero-core__letter {
    font-size: 48px;
  }

  .hero-floating-card {
    padding: 8px 10px;

    font-size: 10px;
  }

  .hero-floating-card__icon {
    width: 23px;
    height: 23px;

    font-size: 10px;
  }

  .hero-floating-card--creative {
    top: 25px;
    right: 0;
  }

  .hero-floating-card--technology {
    bottom: 30px;
    left: 0;
  }

  .hero-floating-card--growth {
    right: 0;
    bottom: 95px;
  }

  .hero-visual__dot--one {
    left: 4%;
  }

  .hero-visual__dot--two {
    right: 8%;
  }

  .hero-visual__dot--three {
    left: 10%;
  }
}

/* =========================================================
   22. HERO — VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {
  .hero-section__container {
    padding-top: 80px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 39px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-floating-card--creative {
    right: -2px;
  }

  .hero-floating-card--technology {
    left: -2px;
  }

  .hero-floating-card--growth {
    right: -2px;
  }
}

/* =========================================================
   END OF PART 3/8
   ========================================================= */

/* =========================================================
   NEXA BUDDY
   GLOBAL STYLESHEET
   PART 4/8 — SERVICES + WHY NEXA BUDDY
   ========================================================= */

/* =========================================================
   SECTION 03 — SERVICES
   ========================================================= */

/* =========================================================
   01. SERVICES SECTION
   ========================================================= */

.services-section {
  position: relative;

  overflow: hidden;

  background-color: var(--color-white);
}

/* =========================================================
   02. SERVICES HEADER
   ========================================================= */

.services-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.85fr);

  align-items: end;

  gap: 60px;

  margin-bottom: 55px;
}

/* =========================================================
   SERVICES HEADING
   ========================================================= */

.services-heading {
  max-width: 760px;
}

.services-heading .section-title span {
  display: block;

  color: var(--color-primary);
}

/* =========================================================
   SERVICES DESCRIPTION
   ========================================================= */

.services-header__description {
  padding-bottom: 5px;
}

/* =========================================================
   03. SERVICES GRID
   ========================================================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;
}

/* =========================================================
   04. SERVICE CARD
   ========================================================= */

.service-card {
  position: relative;

  min-height: 390px;

  display: flex;

  flex-direction: column;

  padding: 28px;

  overflow: hidden;

  border: 1px solid var(--color-border);

  border-radius: var(--radius-lg);

  background-color: var(--color-white);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

/* =========================================================
   SERVICE CARD DECORATION
   ========================================================= */

.service-card::before {
  content: "";

  position: absolute;

  top: -100px;
  right: -100px;

  width: 200px;
  height: 200px;

  border-radius: 50%;

  background: rgba(99, 132, 255, 0.06);

  opacity: 0;

  transform: scale(0.8);

  transition:
    opacity var(--transition),
    transform var(--transition);
}

/* =========================================================
   SERVICE CARD HOVER
   ========================================================= */

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(99, 132, 255, 0.22);

  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  opacity: 1;

  transform: scale(1.2);
}

/* =========================================================
   05. SERVICE CARD TOP
   ========================================================= */

.service-card__top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 30px;
}

/* =========================================================
   06. SERVICE ICON
   ========================================================= */

.service-card__icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 13px;

  color: var(--color-primary);

  background: rgba(99, 132, 255, 0.08);

  font-size: 18px;

  font-weight: 800;

  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.service-card:hover .service-card__icon {
  color: var(--color-white);

  background-color: var(--color-primary);

  transform: rotate(-5deg);
}

/* =========================================================
   07. SERVICE NUMBER
   ========================================================= */

.service-card__number {
  color: #b7becc;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.08em;
}

/* =========================================================
   08. SERVICE TITLE
   ========================================================= */

.service-card__title {
  position: relative;

  z-index: 2;

  color: var(--color-dark);

  font-size: 22px;

  font-weight: 750;

  line-height: 1.25;

  letter-spacing: -0.025em;
}

/* =========================================================
   09. SERVICE DESCRIPTION
   ========================================================= */

.service-card__description {
  position: relative;
  z-index: 2;
  margin-top: 13px;
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 1.65;
  text-align: justify;
}

/* =========================================================
   10. SERVICE LIST
   ========================================================= */

.service-card__list {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-top: 22px;
}

.service-card__list li {
  position: relative;

  padding-left: 17px;

  color: var(--color-muted);

  font-size: 12px;

  line-height: 1.5;
}

.service-card__list li::before {
  content: "";

  position: absolute;

  top: 7px;
  left: 0;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background-color: var(--color-primary);
}

/* =========================================================
   11. SERVICE ARROW
   ========================================================= */

.service-card__arrow {
  position: absolute;

  right: 25px;
  bottom: 23px;

  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid var(--color-border);

  border-radius: 50%;

  color: var(--color-secondary);

  background-color: var(--color-white);

  font-size: 14px;

  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.service-card:hover .service-card__arrow {
  color: var(--color-white);

  background-color: var(--color-primary);

  border-color: var(--color-primary);

  transform: translate(2px, -2px);
}

/* =========================================================
   12. FEATURED SERVICE CARD
   ========================================================= */

.service-card--featured {
  color: var(--color-white);

  border-color: transparent;

  background: linear-gradient(145deg, var(--color-primary), #718eff);

  box-shadow: 0 15px 35px rgba(99, 132, 255, 0.18);
}

.service-card--featured::before {
  background: rgba(255, 255, 255, 0.1);
}

.service-card--featured:hover {
  border-color: transparent;

  box-shadow: 0 22px 45px rgba(99, 132, 255, 0.24);
}

/* =========================================================
   FEATURED CARD — ICON
   ========================================================= */

.service-card--featured .service-card__icon {
  color: var(--color-white);

  background: rgba(255, 255, 255, 0.14);
}

.service-card--featured:hover .service-card__icon {
  color: var(--color-primary);

  background-color: var(--color-white);
}

/* =========================================================
   FEATURED CARD — NUMBER
   ========================================================= */

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   FEATURED CARD — TITLE
   ========================================================= */

.service-card--featured .service-card__title {
  color: var(--color-white);
}

/* =========================================================
   FEATURED CARD — DESCRIPTION
   ========================================================= */

.service-card--featured .service-card__description {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   FEATURED CARD — LIST
   ========================================================= */

.service-card--featured .service-card__list li {
  color: rgba(255, 255, 255, 0.75);
}

.service-card--featured .service-card__list li::before {
  background-color: var(--color-white);
}

/* =========================================================
   FEATURED CARD — ARROW
   ========================================================= */

.service-card--featured .service-card__arrow {
  color: var(--color-primary);

  border-color: var(--color-white);

  background-color: var(--color-white);
}

.service-card--featured:hover .service-card__arrow {
  color: var(--color-white);

  border-color: rgba(255, 255, 255, 0.8);

  background: rgba(255, 255, 255, 0.15);
}

/* =========================================================
   SECTION 03 — SERVICES — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .services-header {
    grid-template-columns: 1fr;

    gap: 22px;

    margin-bottom: 40px;
  }

  .services-header__description {
    padding-bottom: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   SECTION 03 — SERVICES — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .services-header {
    margin-bottom: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .service-card {
    min-height: 350px;

    padding: 24px;
  }

  .service-card__top {
    margin-bottom: 25px;
  }

  .service-card__title {
    font-size: 20px;
  }

  .service-card__description {
    font-size: 13px;
  }
}

/* =========================================================
   SECTION 04 — WHY NEXA BUDDY
   ========================================================= */

/* =========================================================
   13. WHY SECTION
   ========================================================= */

.why-section {
  position: relative;

  overflow: hidden;

  background-color: var(--color-light);
}

/* =========================================================
   14. WHY LAYOUT
   ========================================================= */

.why-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  align-items: center;

  gap: 90px;
}

/* =========================================================
   15. WHY INTRO
   ========================================================= */

.why-intro {
  max-width: 500px;
}

.why-intro .section-title span {
  display: block;

  color: var(--color-primary);
}

/* =========================================================
   16. WHY INTRO TEXT
   ========================================================= */

.why-intro__text {
  max-width: 470px;

  margin-top: 20px;

  color: var(--color-secondary);

  font-size: 16px;

  line-height: 1.75;

  text-align: justify;
}

.why-intro__text + .why-intro__text {
  margin-top: 13px;
}

/* =========================================================
   17. WHY CTA
   ========================================================= */

.why-intro__button {
  margin-top: 30px;
}

/* =========================================================
   18. WHY VALUES
   ========================================================= */

.why-values {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

/* =========================================================
   19. WHY VALUE CARD
   ========================================================= */

.why-card {
  position: relative;

  display: grid;

  grid-template-columns: 45px 1fr;

  gap: 20px;

  padding: 25px 27px;

  border: 1px solid var(--color-border);

  border-radius: var(--radius-lg);

  background-color: var(--color-white);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.why-card:hover {
  transform: translateX(5px);

  border-color: rgba(99, 132, 255, 0.2);

  box-shadow: var(--shadow-sm);
}

/* =========================================================
   20. WHY CARD NUMBER
   ========================================================= */

.why-card__number {
  padding-top: 3px;

  color: #b9c0cd;

  font-size: 11px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.06em;
}

/* =========================================================
   21. WHY CARD CONTENT
   ========================================================= */

.why-card__content {
  position: relative;

  padding-left: 47px;
}

/* =========================================================
   22. WHY CARD ICON
   ========================================================= */

.why-card__icon {
  position: absolute;

  top: 0;
  left: 0;

  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  color: var(--color-primary);

  background: rgba(99, 132, 255, 0.08);

  font-size: 15px;

  font-weight: 700;

  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.why-card:hover .why-card__icon {
  color: var(--color-white);

  background-color: var(--color-primary);

  transform: rotate(-6deg);
}

/* =========================================================
   23. WHY CARD TITLE
   ========================================================= */

.why-card__title {
  color: var(--color-dark);

  font-size: 18px;

  font-weight: 750;

  line-height: 1.3;

  letter-spacing: -0.02em;
}

/* =========================================================
   24. WHY CARD DESCRIPTION
   ========================================================= */

.why-card__description {
  max-width: 560px;

  margin-top: 7px;

  color: var(--color-muted);

  font-size: 13px;

  line-height: 1.65;

  text-align: justify;
}

/* =========================================================
   SECTION 04 — WHY — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .why-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .why-intro {
    max-width: 700px;
  }

  .why-intro__text {
    max-width: 650px;
  }
}

/* =========================================================
   SECTION 04 — WHY — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .why-layout {
    gap: 35px;
  }

  .why-intro__text {
    font-size: 15px;
  }

  .why-intro__button {
    width: 100%;
  }

  .why-card {
    grid-template-columns: 30px 1fr;

    gap: 13px;

    padding: 21px;
  }

  .why-card__content {
    padding-left: 43px;
  }

  .why-card__title {
    font-size: 16px;
  }

  .why-card__description {
    font-size: 12px;

    line-height: 1.6;
  }
}

/* =========================================================
   END OF PART 4/8
   ========================================================= */

/* =========================================================
   NEXA BUDDY
   GLOBAL STYLESHEET
   PART 5/8 — PROCESS / HOW WE WORK
   ========================================================= */

/* =========================================================
   SECTION 05 — HOW WE WORK
   ========================================================= */

/* =========================================================
   01. PROCESS SECTION
   ========================================================= */

.process-section {
  position: relative;

  overflow: hidden;

  background-color: var(--color-white);
}

/* =========================================================
   02. PROCESS HEADER
   ========================================================= */

.process-header {
  max-width: 760px;

  margin-bottom: 70px;
}

.process-header .section-title span {
  display: block;

  color: var(--color-primary);
}

.process-header__description {
  margin-top: 20px;
}

/* =========================================================
   03. PROCESS TIMELINE
   ========================================================= */

.process-timeline {
  position: relative;

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 0;
}

/* =========================================================
   04. TIMELINE CONNECTING LINE
   ========================================================= */

.process-timeline::before {
  content: "";

  position: absolute;

  top: 24px;

  left: 9%;
  right: 9%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border) 10%,
    var(--color-border) 90%,
    transparent
  );

  z-index: 0;
}

/* =========================================================
   05. PROCESS STEP
   ========================================================= */

.process-step {
  position: relative;

  z-index: 1;

  padding-inline: 14px;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

/* =========================================================
   06. PROCESS MARKER
   ========================================================= */

.process-step__marker {
  width: 49px;
  height: 49px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  border: 1px solid rgba(99, 132, 255, 0.22);

  border-radius: 50%;

  color: var(--color-primary);

  background-color: var(--color-white);

  box-shadow: 0 0 0 7px var(--color-white);

  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

/* =========================================================
   07. MARKER NUMBER
   ========================================================= */

.process-step__marker span {
  font-size: 11px;

  font-weight: 800;

  line-height: 1;

  letter-spacing: 0.03em;
}

/* =========================================================
   08. MARKER HOVER
   ========================================================= */

.process-step:hover .process-step__marker {
  color: var(--color-white);

  background-color: var(--color-primary);

  border-color: var(--color-primary);

  transform: translateY(-3px);
}

/* =========================================================
   09. PROCESS EYEBROW
   ========================================================= */

.process-step__eyebrow {
  color: var(--color-primary);

  font-size: 11px;

  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================================
   10. PROCESS TITLE
   ========================================================= */

.process-step__title {
  max-width: 190px;

  margin-top: 8px;

  color: var(--color-dark);

  font-size: 18px;

  font-weight: 750;

  line-height: 1.3;

  letter-spacing: -0.025em;
}

/* =========================================================
   11. PROCESS DESCRIPTION
   ========================================================= */

.process-step__description {
  max-width: 210px;

  margin-top: 10px;

  color: var(--color-muted);

  font-size: 13px;

  line-height: 1.65;
  text-align: justify;
}

/* =========================================================
   12. PROCESS BOTTOM STATEMENT
   ========================================================= */

.process-bottom {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 65px;

  padding-top: 24px;

  border-top: 1px solid var(--color-border);
}

/* =========================================================
   13. PROCESS BOTTOM ACCENT
   ========================================================= */

.process-bottom__line {
  width: 35px;
  height: 2px;

  flex-shrink: 0;

  border-radius: var(--radius-full);

  background-color: var(--color-primary);
}

/* =========================================================
   14. PROCESS BOTTOM TEXT
   ========================================================= */

.process-bottom p {
  color: var(--color-secondary);

  font-size: 13px;

  font-weight: 600;

  line-height: 1.5;
}

/* =========================================================
   15. PROCESS STEP — SUBTLE HOVER
   ========================================================= */

.process-step__content {
  transition: transform var(--transition);
}

.process-step:hover .process-step__content {
  transform: translateY(-2px);
}

/* =========================================================
   SECTION 05 — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .process-header {
    margin-bottom: 50px;
  }

  /* -------------------------------------------------------
     Convert horizontal timeline to vertical timeline
     ------------------------------------------------------- */

  .process-timeline {
    grid-template-columns: 1fr;

    gap: 0;
  }

  /* -------------------------------------------------------
     Vertical Connecting Line
     ------------------------------------------------------- */

  .process-timeline::before {
    top: 24px;
    bottom: 24px;

    left: 24px;

    right: auto;

    width: 1px;
    height: auto;

    background: linear-gradient(
      180deg,
      transparent,
      var(--color-border) 10%,
      var(--color-border) 90%,
      transparent
    );
  }

  /* -------------------------------------------------------
     Process Step Layout
     ------------------------------------------------------- */

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    display: grid;

    grid-template-columns: 49px 1fr;

    gap: 25px;

    padding: 0 0 42px;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  /* -------------------------------------------------------
     Marker
     ------------------------------------------------------- */

  .process-step__marker {
    margin-bottom: 0;
  }

  /* -------------------------------------------------------
     Content
     ------------------------------------------------------- */

  .process-step__title {
    max-width: none;
  }

  .process-step__description {
    max-width: 600px;
  }
}

/* =========================================================
   SECTION 05 — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .process-header {
    margin-bottom: 40px;
  }

  .process-header__description {
    margin-top: 17px;

    font-size: 15px;

    line-height: 1.65;
  }

  /* -------------------------------------------------------
     Vertical Timeline
     ------------------------------------------------------- */

  .process-timeline::before {
    left: 20px;
  }

  /* -------------------------------------------------------
     Process Steps
     ------------------------------------------------------- */

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    grid-template-columns: 41px 1fr;

    gap: 18px;

    padding-bottom: 35px;
  }

  /* -------------------------------------------------------
     Mobile Marker
     ------------------------------------------------------- */

  .process-step__marker {
    width: 41px;
    height: 41px;

    box-shadow: 0 0 0 5px var(--color-white);
  }

  .process-step__marker span {
    font-size: 10px;
  }

  /* -------------------------------------------------------
     Mobile Content
     ------------------------------------------------------- */

  .process-step__title {
    font-size: 17px;
  }

  .process-step__description {
    font-size: 12px;

    line-height: 1.65;
  }

  /* -------------------------------------------------------
     Bottom Statement
     ------------------------------------------------------- */

  .process-bottom {
    align-items: flex-start;

    margin-top: 45px;

    padding-top: 20px;
  }

  .process-bottom p {
    font-size: 12px;

    line-height: 1.55;
  }
}

/* =========================================================
   16. VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {
  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    grid-template-columns: 38px 1fr;

    gap: 15px;
  }

  .process-step__marker {
    width: 38px;
    height: 38px;
  }

  .process-timeline::before {
    left: 18.5px;
  }

  .process-step__title {
    font-size: 16px;
  }

  .process-step__description {
    font-size: 11.5px;
  }
}

/* =========================================================
   END OF PART 5/8
   ========================================================= */

/* =========================================================
   NEXA BUDDY
   GLOBAL STYLESHEET
   PART 6/8 — ABOUT NEXA BUDDY
   ========================================================= */

/* =========================================================
   SECTION 06 — ABOUT NEXA BUDDY
   ========================================================= */

/* =========================================================
   01. ABOUT SECTION
   ========================================================= */

.about-section {
  position: relative;

  overflow: hidden;

  background-color: var(--color-light);
}

/* =========================================================
   02. ABOUT LAYOUT
   ========================================================= */

.about-layout {
  display: grid;

  grid-template-columns:
    minmax(380px, 0.9fr)
    minmax(0, 1.1fr);

  align-items: center;

  gap: 90px;
}

/* =========================================================
   03. ABOUT VISUAL
   ========================================================= */

.about-visual {
  position: relative;

  min-height: 480px;

  display: flex;

  align-items: center;
  justify-content: center;
}

/* =========================================================
   04. ABOUT ORBIT
   ========================================================= */

.about-visual__orbit {
  position: absolute;

  width: 340px;
  height: 340px;

  border: 1px solid rgba(99, 132, 255, 0.14);

  border-radius: 50%;

  transform: rotate(-15deg);
}

/* ---------------------------------------------------------
   Inner Orbit
   --------------------------------------------------------- */

.about-visual__orbit::before {
  content: "";

  position: absolute;

  inset: 35px;

  border: 1px dashed rgba(99, 132, 255, 0.12);

  border-radius: 50%;
}

/* =========================================================
   05. ORBIT DOT
   ========================================================= */

.about-visual__orbit-dot {
  position: absolute;

  top: 8px;
  left: 50%;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background-color: var(--color-primary);

  box-shadow: 0 0 0 6px rgba(99, 132, 255, 0.1);
}

/* =========================================================
   06. ABOUT VISUAL CORE
   ========================================================= */

.about-visual__core {
  position: relative;

  z-index: 3;

  width: 170px;
  height: 170px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 42%;

  background: linear-gradient(145deg, var(--color-primary), #7894ff);

  box-shadow: 0 25px 60px rgba(99, 132, 255, 0.22);

  transform: rotate(8deg);
}

/* ---------------------------------------------------------
   Core Inner Border
   --------------------------------------------------------- */

.about-visual__core::before {
  content: "";

  position: absolute;

  inset: 12px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 36%;
}

/* =========================================================
   07. ABOUT CORE LETTER
   ========================================================= */

.about-visual__logo {
  position: relative;

  z-index: 2;

  max-width: 75%;

  transform: rotate(-8deg);
}

/* =========================================================
   08. ABOUT VISUAL TAGS
   ========================================================= */

.about-visual__tag {
  position: absolute;

  z-index: 5;

  padding: 10px 14px;

  border: 1px solid rgba(255, 255, 255, 0.85);

  border-radius: 10px;

  color: var(--color-secondary);

  background: rgba(255, 255, 255, 0.88);

  box-shadow: 0 14px 35px rgba(38, 48, 71, 0.09);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  font-size: 11px;

  font-weight: 700;

  line-height: 1.3;

  white-space: nowrap;
}

/* =========================================================
   09. ABOUT TAG — TECHNOLOGY
   ========================================================= */

.about-visual__tag--technology {
  top: 65px;

  left: 3%;
}

/* =========================================================
   10. ABOUT TAG — CREATIVITY
   ========================================================= */

.about-visual__tag--creativity {
  top: 45%;

  right: 0;
}

/* =========================================================
   11. ABOUT TAG — PARTNERSHIP
   ========================================================= */

.about-visual__tag--partnership {
  bottom: 65px;

  left: 10%;
}

/* =========================================================
   12. ABOUT CONTENT
   ========================================================= */

.about-content {
  max-width: 650px;
}

.about-content .section-title span {
  display: block;

  color: var(--color-primary);
}

/* =========================================================
   13. ABOUT LEAD TEXT
   ========================================================= */

.about-content__lead {
  max-width: 600px;

  margin-top: 24px;

  color: var(--color-dark);

  font-size: 18px;

  font-weight: 500;

  line-height: 1.7;
}

/* =========================================================
   14. ABOUT BODY TEXT
   ========================================================= */

.about-content__text {
  max-width: 600px;

  margin-top: 15px;

  color: var(--color-secondary);

  font-size: 14px;

  line-height: 1.75;
  text-align: justify;
}

/* =========================================================
   15. ABOUT VALUES
   ========================================================= */

.about-values {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 12px;

  margin-top: 32px;
}

/* =========================================================
   16. ABOUT VALUE CARD
   ========================================================= */

.about-value {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  padding: 14px;

  border: 1px solid var(--color-border);

  border-radius: 12px;

  background-color: var(--color-white);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.about-value:hover {
  transform: translateY(-3px);

  border-color: rgba(99, 132, 255, 0.2);

  box-shadow: var(--shadow-sm);
}

/* =========================================================
   17. ABOUT VALUE ICON
   ========================================================= */

.about-value__icon {
  width: 29px;
  height: 29px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 8px;

  color: var(--color-primary);

  background: rgba(99, 132, 255, 0.08);

  font-size: 11px;

  font-weight: 800;
}

/* =========================================================
   18. ABOUT VALUE TITLE
   ========================================================= */

.about-value__title {
  color: var(--color-dark);

  font-size: 12px;

  font-weight: 750;

  line-height: 1.3;
}

/* =========================================================
   19. ABOUT VALUE DESCRIPTION
   ========================================================= */

.about-value__description {
  margin-top: 4px;

  color: var(--color-muted);

  font-size: 10px;

  line-height: 1.5;
}

/* =========================================================
   20. ABOUT VISUAL DECORATION
   ========================================================= */

.about-visual::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(99, 132, 255, 0.08);

  filter: blur(55px);

  z-index: 0;

  pointer-events: none;
}

/* =========================================================
   SECTION 06 — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .about-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  /* -------------------------------------------------------
     Visual appears below content on tablet
     ------------------------------------------------------- */

  .about-visual {
    min-height: 390px;

    order: 2;
  }

  .about-content {
    max-width: 750px;

    order: 1;
  }
}

/* =========================================================
   SECTION 06 — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .about-layout {
    gap: 30px;
  }

  /* -------------------------------------------------------
     Visual
     ------------------------------------------------------- */

  .about-visual {
    min-height: 300px;
  }

  .about-visual__orbit {
    width: 250px;
    height: 250px;
  }

  .about-visual__orbit::before {
    inset: 26px;
  }

  .about-visual__core {
    width: 125px;
    height: 125px;
  }

  .about-visual__core::before {
    inset: 9px;
  }

  .about-visual__letter {
    font-size: 46px;
  }

  /* -------------------------------------------------------
     Visual Tags
     ------------------------------------------------------- */

  .about-visual__tag {
    padding: 8px 10px;

    font-size: 9px;
  }

  .about-visual__tag--technology {
    top: 25px;

    left: 0;
  }

  .about-visual__tag--creativity {
    top: 44%;

    right: 0;
  }

  .about-visual__tag--partnership {
    bottom: 30px;

    left: 5%;
  }

  /* -------------------------------------------------------
     About Text
     ------------------------------------------------------- */

  .about-content__lead {
    margin-top: 20px;

    font-size: 16px;

    line-height: 1.7;
  }

  .about-content__text {
    font-size: 13px;

    line-height: 1.75;
  }

  /* -------------------------------------------------------
     About Values
     ------------------------------------------------------- */

  .about-values {
    grid-template-columns: 1fr;

    gap: 8px;

    margin-top: 25px;
  }

  .about-value {
    padding: 12px;
  }

  .about-value__description {
    font-size: 11px;
  }
}

/* =========================================================
   21. ABOUT — VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {
  .about-visual {
    min-height: 280px;
  }

  .about-visual__orbit {
    width: 225px;
    height: 225px;
  }

  .about-visual__core {
    width: 112px;
    height: 112px;
  }

  .about-visual__letter {
    font-size: 42px;
  }

  .about-visual__tag {
    font-size: 8px;

    padding: 7px 9px;
  }

  .about-visual__tag--technology {
    top: 20px;
  }

  .about-visual__tag--partnership {
    bottom: 20px;
  }
}

/* =========================================================
   22. REDUCED MOTION — ABOUT
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .about-value {
    transition: none;
  }
}

/* =========================================================
   END OF PART 6/8
   ========================================================= */

/* =========================================================
   NEXA BUDDY
   GLOBAL STYLESHEET
   PART 7/8 — FINAL CTA
   ========================================================= */

/* =========================================================
   SECTION 07 — FINAL CALL TO ACTION
   ========================================================= */

/* =========================================================
   01. CTA SECTION
   ========================================================= */

.cta-section {
  position: relative;

  overflow: hidden;

  padding-top: 30px;

  background-color: var(--color-white);
}

/* =========================================================
   02. CTA BOX
   ========================================================= */

.cta-box {
  position: relative;

  min-height: 430px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 70px;

  border-radius: 28px;

  background: linear-gradient(135deg, #546182 0%, #6384ff 55%, #7694ff 100%);

  box-shadow: 0 25px 70px rgba(84, 97, 130, 0.22);
}

/* =========================================================
   03. CTA CONTENT
   ========================================================= */

.cta-content {
  position: relative;

  z-index: 3;

  max-width: 690px;
}

/* =========================================================
   04. CTA LABEL
   ========================================================= */

.cta-label {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 11px;

  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

/* ---------------------------------------------------------
   CTA Label Indicator
   --------------------------------------------------------- */

.cta-label::before {
  content: "";

  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background-color: var(--color-white);
}

/* =========================================================
   05. CTA TITLE
   ========================================================= */

.cta-title {
  max-width: 700px;

  margin-top: 18px;

  color: var(--color-white);

  font-size: clamp(42px, 5vw, 68px);

  font-weight: 800;

  line-height: 1.05;

  letter-spacing: -0.055em;
}

.cta-title span {
  display: block;

  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   06. CTA DESCRIPTION
   ========================================================= */

.cta-description {
  max-width: 560px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 16px;

  line-height: 1.7;
  text-align: justify;
}

/* =========================================================
   07. CTA ACTIONS
   ========================================================= */

.cta-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 22px;

  margin-top: 32px;
}

/* =========================================================
   08. CTA PRIMARY WHITE BUTTON
   ========================================================= */

.button--white {
  color: var(--color-primary);

  background-color: var(--color-white);

  border-color: var(--color-white);

  box-shadow: 0 8px 25px rgba(35, 48, 78, 0.12);
}

.button--white:hover {
  color: var(--color-primary);

  background-color: #f5f7ff;

  border-color: #f5f7ff;

  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(35, 48, 78, 0.18);
}

/* ---------------------------------------------------------
   White Button Arrow
   --------------------------------------------------------- */

.button--white span {
  font-size: 18px;

  transition: transform var(--transition);
}

.button--white:hover span {
  transform: translateX(4px);
}

/* =========================================================
   09. CTA SECONDARY LINK
   ========================================================= */

.cta-secondary-link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;

  font-weight: 700;

  line-height: 1.5;

  transition: color var(--transition);
}

.cta-secondary-link:hover {
  color: var(--color-white);
}

/* ---------------------------------------------------------
   Secondary Link Arrow
   --------------------------------------------------------- */

.cta-secondary-link span {
  transition: transform var(--transition);
}

.cta-secondary-link:hover span {
  transform: translate(2px, -2px);
}

/* =========================================================
   10. CTA BACKGROUND GLOWS
   ========================================================= */

.cta-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

/* ---------------------------------------------------------
   Glow One
   --------------------------------------------------------- */

.cta-glow--one {
  top: -180px;
  right: -120px;

  width: 450px;
  height: 450px;

  background: rgba(255, 255, 255, 0.09);

  filter: blur(5px);
}

/* ---------------------------------------------------------
   Glow Two
   --------------------------------------------------------- */

.cta-glow--two {
  bottom: -200px;
  left: 25%;

  width: 430px;
  height: 430px;

  background: rgba(255, 255, 255, 0.06);

  filter: blur(15px);
}

/* =========================================================
   11. CTA GRID PATTERN
   ========================================================= */

.cta-pattern {
  position: absolute;

  top: 0;
  right: 0;

  width: 55%;
  height: 100%;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);

  background-size: 40px 40px;

  mask-image: linear-gradient(90deg, transparent, black);

  -webkit-mask-image: linear-gradient(90deg, transparent, black);

  pointer-events: none;
}

/* =========================================================
   12. CTA DECORATIVE N
   ========================================================= */

.cta-mark {
  position: absolute;

  z-index: 1;

  right: 6%;
  bottom: -70px;

  color: rgba(255, 255, 255, 0.08);

  font-size: 390px;

  font-weight: 900;

  line-height: 1;

  letter-spacing: -0.12em;

  user-select: none;

  pointer-events: none;
}

/* =========================================================
   13. CTA CONTENT SAFETY
   ========================================================= */

.cta-content,
.cta-label,
.cta-title,
.cta-description,
.cta-actions {
  isolation: isolate;
}

/* =========================================================
   SECTION 07 — CTA — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .cta-box {
    min-height: 400px;

    padding: 55px;
  }

  .cta-mark {
    right: 0;

    font-size: 320px;
  }
}

/* =========================================================
   SECTION 07 — CTA — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .cta-section {
    padding-top: 15px;
  }

  .cta-box {
    min-height: 470px;

    align-items: flex-start;

    padding: 42px 25px;

    border-radius: 22px;
  }

  .cta-title {
    margin-top: 15px;

    font-size: clamp(38px, 11vw, 52px);
  }

  .cta-description {
    margin-top: 18px;

    font-size: 14px;

    line-height: 1.7;
  }

  .cta-actions {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    margin-top: 28px;
  }

  .cta-actions .button {
    width: 100%;
  }

  .cta-secondary-link {
    padding-left: 2px;

    font-size: 12px;
  }

  .cta-pattern {
    width: 100%;

    opacity: 0.7;
  }

  .cta-mark {
    right: -20px;
    bottom: -45px;

    font-size: 240px;
  }
}

/* =========================================================
   SECTION 07 — CTA — VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {
  .cta-box {
    min-height: 450px;

    padding: 38px 20px;
  }

  .cta-title {
    font-size: 36px;
    text-align: justify;
  }

  .cta-description {
    font-size: 13px;
  }

  .cta-mark {
    right: -30px;

    font-size: 210px;
  }
}

/* =========================================================
   END OF PART 7/8
   ========================================================= */

/* =========================================================
   NEXA BUDDY
   GLOBAL STYLESHEET
   PART 8/8 — FOOTER + FINAL RESPONSIVE RULES
   ========================================================= */

/* =========================================================
   SECTION 08 — FOOTER
   ========================================================= */

/* =========================================================
   01. FOOTER BASE
   ========================================================= */

.site-footer {
  position: relative;

  padding-top: 75px;

  background-color: #182033;

  color: var(--color-white);
}

/* =========================================================
   02. FOOTER MAIN
   ========================================================= */

.footer-main {
  display: grid;

  grid-template-columns:
    1.5fr
    0.75fr
    1fr
    1fr;

  gap: 60px;

  padding-bottom: 65px;
}

/* =========================================================
   03. FOOTER BRAND
   ========================================================= */

.footer-brand {
  max-width: 340px;
}

/* =========================================================
   04. FOOTER LOGO
   ========================================================= */

.footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: var(--color-white);

  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 0.9;
}

/* ---------------------------------------------------------
   Logo Mark
   --------------------------------------------------------- */

.footer-logo__mark {
  width: 37px;
  height: 37px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  color: var(--color-white);

  background-color: var(--color-primary);

  font-size: 17px;

  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.04em;
}

/* ---------------------------------------------------------
   Logo Text
   --------------------------------------------------------- */

.footer-logo__text {
  font-size: 21px;

  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.035em;
}

.footer-logo__text span {
  color: #8da6ff;
}

/* =========================================================
   05. FOOTER DESCRIPTION
   ========================================================= */

.footer-brand__description {
  max-width: 310px;

  margin-top: 22px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 13px;

  line-height: 1.75;
}

/* =========================================================
   06. FOOTER EMAIL
   ========================================================= */

.footer-email {
  display: inline-block;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 13px;

  font-weight: 600;

  line-height: 1.5;

  transition: color var(--transition);
}

.footer-email:hover {
  color: #8da6ff;
}

/* =========================================================
   07. FOOTER COLUMN
   ========================================================= */

.footer-column {
  min-width: 0;
}

/* =========================================================
   08. FOOTER HEADINGS
   ========================================================= */

.footer-column__heading {
  margin-bottom: 20px;

  color: var(--color-white);

  font-size: 12px;

  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================================
   09. FOOTER LINKS LIST
   ========================================================= */

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 11px;
}

/* =========================================================
   10. FOOTER LINKS
   ========================================================= */

.footer-links a {
  display: inline-flex;

  align-items: center;

  width: fit-content;

  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;

  line-height: 1.5;

  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);

  transform: translateX(3px);
}

/* =========================================================
   11. FOOTER CONTACT TEXT
   ========================================================= */

.footer-contact__text {
  max-width: 240px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;

  line-height: 1.7;
}

/* =========================================================
   12. FOOTER CONTACT LINK
   ========================================================= */

.footer-contact__link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-top: 18px;

  color: #8da6ff;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.5;

  transition: color var(--transition);
}

.footer-contact__link:hover {
  color: var(--color-white);
}

/* ---------------------------------------------------------
   Contact Arrow
   --------------------------------------------------------- */

.footer-contact__link span {
  transition: transform var(--transition);
}

.footer-contact__link:hover span {
  transform: translate(2px, -2px);
}

/* =========================================================
   13. SOCIAL LINKS
   ========================================================= */

.footer-social {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-top: 25px;
}

/* =========================================================
   14. SOCIAL LINK
   ========================================================= */

.footer-social__link {
  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 9px;

  color: rgba(255, 255, 255, 0.65);

  background: rgba(255, 255, 255, 0.03);

  font-size: 11px;

  font-weight: 700;

  line-height: 1;

  transition:
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.footer-social__link:hover {
  color: var(--color-white);

  border-color: rgba(141, 166, 255, 0.5);

  background: rgba(99, 132, 255, 0.15);

  transform: translateY(-2px);
}

/* =========================================================
   15. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 75px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================================
   16. COPYRIGHT
   ========================================================= */

.footer-bottom__copyright {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 11px;

  line-height: 1.5;

  text-align: center;
}

/* =========================================================
   SECTION 08 — FOOTER — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .site-footer {
    padding-top: 65px;
  }

  .footer-main {
    grid-template-columns:
      1.2fr
      0.8fr
      1fr;

    gap: 45px;
  }

  /* -------------------------------------------------------
     Brand spans full first row
     ------------------------------------------------------- */

  .footer-brand {
    grid-column: span 3;

    max-width: 500px;
  }

  /* -------------------------------------------------------
     Footer Bottom
     ------------------------------------------------------- */

  .footer-bottom {
    grid-template-columns:
      1fr
      1fr;
  }

  .footer-legal {
    justify-content: flex-end;
  }

  .footer-bottom__tagline {
    display: none;
  }
}

/* =========================================================
   SECTION 08 — FOOTER — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .site-footer {
    padding-top: 55px;
  }

  /* -------------------------------------------------------
     Main Footer
     ------------------------------------------------------- */

  .footer-main {
    grid-template-columns: 1fr;

    gap: 38px;

    padding-bottom: 45px;
  }

  .footer-brand {
    grid-column: auto;

    max-width: 100%;
  }

  /* -------------------------------------------------------
     Brand Description
     ------------------------------------------------------- */

  .footer-brand__description {
    margin-top: 17px;

    font-size: 12px;
  }

  /* -------------------------------------------------------
     Footer Headings
     ------------------------------------------------------- */

  .footer-column__heading {
    margin-bottom: 15px;
  }

  /* -------------------------------------------------------
     Footer Links
     ------------------------------------------------------- */

  .footer-links {
    gap: 9px;
  }

  /* -------------------------------------------------------
     Contact
     ------------------------------------------------------- */

  .footer-contact__text {
    font-size: 12px;
  }

  /* -------------------------------------------------------
     Social Links
     ------------------------------------------------------- */

  .footer-social {
    margin-top: 21px;
  }

  /* -------------------------------------------------------
     Footer Bottom
     ------------------------------------------------------- */

  .footer-bottom {
    justify-content: center;

    min-height: 68px;

    padding-block: 18px;
  }

  .footer-bottom__copyright {
    font-size: 10px;
  }
}

/* =========================================================
   SECTION 08 — FOOTER — VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-main {
    gap: 32px;

    padding-bottom: 38px;
  }

  .footer-brand__description {
    font-size: 11.5px;
  }

  .footer-brand__email {
    font-size: 12px;
  }

  .footer-links a,
  .footer-contact__text,
  .footer-contact__link {
    font-size: 11px;
  }
}

/* =========================================================
   GLOBAL — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;
  }
}

/* =========================================================
   GLOBAL — TOUCH DEVICES
   ========================================================= */

@media (hover: none) {
  .service-card:hover,
  .why-card:hover,
  .about-value:hover {
    transform: none;
  }

  .service-card:hover::before {
    opacity: 0;
  }

  .service-card:hover .service-card__icon,
  .why-card:hover .why-card__icon {
    transform: none;
  }

  .footer-links a:hover {
    transform: none;
  }

  .footer-social__link:hover {
    transform: none;
  }
}

/* =========================================================
   GLOBAL — TEXT WRAPPING SAFETY
   ========================================================= */

.hero-title,
.section-title,
.cta-title,
.service-card__title,
.why-card__title,
.process-step__title {
  overflow-wrap: break-word;

  word-break: normal;
}

/* =========================================================
   GLOBAL — HORIZONTAL OVERFLOW PROTECTION
   ========================================================= */

html,
body {
  max-width: 100%;

  overflow-x: hidden;
}

/* =========================================================
   GLOBAL — BUTTON / LINK TAP SAFETY
   ========================================================= */

.button,
.header-cta,
.mobile-menu__cta,
.footer-social__link {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   GLOBAL — FOCUS SAFETY
   ========================================================= */

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(99, 132, 255, 0.45);

  outline-offset: 3px;
}

/* =========================================================
   GLOBAL — SMALL MOBILE BUTTON SAFETY
   ========================================================= */

@media (max-width: 600px) {
  .button,
  .header-cta,
  .mobile-menu__cta {
    min-width: 0;

    white-space: normal;
  }
}

/* =========================================================
   END OF NEXA BUDDY STYLE.CSS
   =========================================================

   Parts completed:

   01/8 — Foundation / Reset / Header
   02/8 — Header / Mobile Navigation
   03/8 — Hero
   04/8 — Services + Why Nexa Buddy
   05/8 — How We Work
   06/8 — About Nexa Buddy
   07/8 — Final CTA
   08/8 — Footer + Final Responsive Rules

   ========================================================= */

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */

.back-to-top {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 1500;

  width: 46px;
  height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(99, 132, 255, 0.18);

  border-radius: 50%;

  color: var(--color-white);

  background-color: var(--color-primary);

  box-shadow: 0 10px 28px rgba(99, 132, 255, 0.25);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform: translateY(12px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* =========================================================
   ICON
   ========================================================= */

.back-to-top span {
  display: block;

  font-size: 20px;

  font-weight: 500;

  line-height: 1;

  transform: translateY(-1px);

  transition: transform 0.3s ease;
}

/* =========================================================
   VISIBLE STATE
   ========================================================= */

.back-to-top.is-visible {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateY(0);
}

/* =========================================================
   HOVER
   ========================================================= */

.back-to-top:hover {
  background-color: #546182;

  box-shadow: 0 14px 32px rgba(84, 97, 130, 0.28);

  transform: translateY(-3px);
}

.back-to-top:hover span {
  transform: translateY(-4px);
}

/* =========================================================
   ACTIVE
   ========================================================= */

.back-to-top:active {
  transform: translateY(-1px) scale(0.96);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .back-to-top {
    right: 16px;
    bottom: 18px;

    width: 43px;
    height: 43px;
  }

  .back-to-top span {
    font-size: 18px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }

  .back-to-top span {
    transition: none;
  }
}

.site-logo__image {
  display: block;
  width: 200px;
  height: auto;
}

@media (max-width: 600px) {
  .site-logo__image {
    width: 200px;
  }
}

.footer-logo__image {
  display: block;
  width: 175px;
  height: auto;
}