/*!
 * ============================================================================
 * Copyright (c) 2025 ATH SOLUTIONS (PTY) LTD. All rights reserved.
 * KwaZulu-Natal, Republic of South Africa.
 * ============================================================================
 *
 * @BEGIN Developer Log Header Block
 * @FILENAME: site.css
 * @TITLE: ATH Solutions - Public Site Stylesheet
 * @DESCRIPTION: Styles for the public ATH Solutions site (index.html,
 *               who-we-are.html, how-we-work.html, what-we-offer.html,
 *               contact.html). Depends on design-tokens.css being loaded
 *               first for colour/spacing vars.
 * @AUTHOR: Ary van der Pijl
 * @COMPANY: ATH SOLUTIONS (PTY) LTD
 * @WEBSITE: https://www.ath.solutions/
 * @EMAIL: info@ath.solutions
 * @COPYRIGHT: All Rights Reserved
 * @LICENSE: ATH SOLUTIONS - PROPRIETARY SOFTWARE LICENCE AGREEMENT (https://www.ath.solutions/documents/ath_solutions_software_licence_agreement.pdf)
 *
 * BEGIN CHANGELOG
 * @IMPORTANT NOTICE: Developers working on these files MUST update and maintain the Developers Change Log, failure to do is not an option:
 * !==================================================================================================================================================================
 * VERSION 1.0.0.2
 * - File Modified | Julia Hyde | 2026-08-18 | ATH-003 | Reworked page styling and visual layout, added desktop and mobile responsive styling, and refined components and sections across the website |
    VERSION 1.0.0.2
 * - File Modified | Ary van der Pijl | 2026-07-02 | ATH-001 | Rebuilt as the real ATH Solutions site: added page-hero, process-step, stat-item and difference-item components for the 4 new inner pages |
 * VERSION 1.0.0.1
 * - File Created | Ary van der Pijl | 2026-07-02 | EWC-001 | Initial brochure site stylesheet |
 * ==================================================================================================================================================================!
 * END CHANGELOG
 */

/* ─── Local Fonts ─────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto/Roboto-Regular.woff2') format('woff2'),
    url('/fonts/roboto/Roboto-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto/Roboto-Medium.woff2') format('woff2'),
    url('/fonts/roboto/Roboto-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto/Roboto-Bold.woff2') format('woff2'),
    url('/fonts/roboto/Roboto-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Local';
  src: url('/fonts/helveticaneueregular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Local';
  src: url('/fonts/helveticaneuemedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Local';
  src: url('/fonts/helveticaneuebold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── Base ────────────────────────────────────────────────────────────────── */

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background-color: var(--color-surface);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica Neue Local', 'Roboto', sans-serif;
  font-weight: 700;
  color: var(--color-primary);
}

a {
  color: var(--color-primary);
}

a:hover {
  color: var(--color-primary-hover);
}

.section {
  padding: var(--space-16) 0;
}

.section-muted {
  background-color: var(--color-bg);
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.section-lead {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Navbar ──────────────────────────────────────────────────────────────── */

.site-navbar {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: 'Helvetica Neue Local', sans-serif;
  font-weight: 700;
  color: var(--color-primary);
}

.site-navbar .navbar-brand img {
  height: 50px;
  width: auto;
}

.site-navbar .navbar-brand {
  margin-left: -30px;
}

.site-navbar .nav-link {
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-2) var(--space-4) !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--color-primary);
}

.navbar .btn-primary {
  background-color: #2563a6;
  border-color: #2563a6;
}

.navbar .btn-primary:hover {
  background-color: #1d4f87;
  border-color: #1d4f87;
}

/* ─── Page Hero Title ────────────────────────────────────────────────────── */

.page-hero-title {
  max-width: 760px;
  margin-bottom: var(--space-5);
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.08;
}

/* ─── Home Page ──────────────────────────────────────────────────────────── */

.home-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.home-hero-actions .btn {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  border-radius: var(--radius-md);
}

.home-hero .btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.home-hero .btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.home-hero .btn-hero-secondary i {
  transition: transform var(--transition-base);
}

.home-hero .btn-hero-secondary:hover i {
  transform: translateX(4px);
}

/* ─── Home Hero ──────────────────────────────────────────────────────────── */

.home-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background-image: url('/images/hero-backdrop.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(4, 18, 38, 0.92) 0%,
      rgba(4, 18, 38, 0.72) 32%,
      rgba(4, 18, 38, 0.2) 58%,
      rgba(4, 18, 38, 0.05) 100%);
}

.home-hero-container {
  position: relative;
  z-index: 2;
}

.home-hero-content {
  max-width: 720px;
}

.home-hero-content p {
  max-width: 560px;
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.home-hero .btn-primary {
  background-color: #2563a6;
  border-color: #2563a6;
  box-shadow: 0 10px 28px rgba(37, 99, 166, 0.28);
}

.home-hero .btn-primary:hover {
  background-color: #1b4f82;
  border-color: #1b4f82;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 99, 166, 0.35);
}

.home-hero-scroll {
  position: absolute;
  z-index: 2;
  right: 3.5%;
  bottom: var(--space-8);
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero-scroll span:first-child {
  writing-mode: vertical-rl;
}

.home-scroll-line {
  width: 1px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* ─── Introduction ───────────────────────────────────────────────────── */
.home-intro {
  position: relative;
  padding: 120px 0;
  background-color: #fff;
  overflow: hidden;
}

.home-intro::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  top: -250px;
  left: -180px;
  border: 1px solid rgba(27, 74, 121, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.home-intro-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 80px;
}

.home-intro-heading {
  padding: 45px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-intro-heading h2 {
  max-width: 560px;
  margin: var(--space-4) 0 var(--space-4);
  color: var(--color-primary);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.08;
}

.home-intro-statement {
  max-width: 500px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.5;
}

.home-intro-content {
  position: relative;
  padding: 50px;
  background-color: #f4f7fb;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(8, 30, 63, 0.06);
}

.home-intro-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(37, 99, 166, 0.1);
  border-radius: 50%;
  color: #2563a6;
  font-size: 1.2rem;
}

.home-intro-lead {
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.65;
}

.home-intro-content>p:not(.home-intro-lead) {
  margin-bottom: 30px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.home-intro-btn {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #2563a6;
  border: 1px solid #2563a6;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.home-intro-btn:hover {
  transform: translateY(-2px);
  background-color: #1d4f87;
  border-color: #1d4f87;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 166, 0.22);
}

.home-intro-btn i {
  transition: transform var(--transition-base);
}

.home-intro-btn:hover i {
  transform: translateX(4px);
}

/* ─── Home Services ──────────────────────────────────────────────────────── */

.home-services {
  position: relative;
  padding: 30px 0;
  background-color: #eef4f9;
  overflow: hidden;
}

.home-services .container {
  position: relative;
  z-index: 2;
}

.home-services-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.home-services-heading h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.2;
}

.home-services-heading>p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ─── ATH Bubble Decorations ────────────────────────────────────────────── */

.home-services-bubbles {
  position: absolute;
  z-index: 1;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.home-services-bubbles span {
  position: absolute;
  display: block;
  border: 2px solid rgba(27, 74, 121, 0.08);
  border-radius: 50%;
}

.home-services-bubbles-one {
  top: 40px;
  right: -70px;
}

.home-services-bubbles-one span:nth-child(1) {
  top: 0;
  right: 20px;
  width: 110px;
  height: 110px;
}

.home-services-bubbles-one span:nth-child(2) {
  top: 105px;
  right: 130px;
  width: 58px;
  height: 58px;
}

.home-services-bubbles-one span:nth-child(3) {
  top: 175px;
  right: 95px;
  width: 34px;
  height: 34px;
}

.home-services-bubbles-one span:nth-child(4) {
  top: 150px;
  right: 40px;
  width: 22px;
  height: 22px;
}

.home-services-bubbles-one span:nth-child(5) {
  top: 220px;
  right: 150px;
  width: 14px;
  height: 14px;
}

.home-services-bubbles-two {
  bottom: 20px;
  left: -80px;
}

.home-services-bubbles-two span:nth-child(1) {
  bottom: 0;
  left: 0;
  width: 130px;
  height: 130px;
}

.home-services-bubbles-two span:nth-child(2) {
  bottom: 120px;
  left: 125px;
  width: 65px;
  height: 65px;
}

.home-services-bubbles-two span:nth-child(3) {
  bottom: 75px;
  left: 190px;
  width: 32px;
  height: 32px;
}

.home-services-bubbles-two span:nth-child(4) {
  bottom: 165px;
  left: 205px;
  width: 18px;
  height: 18px;
}

/* ─── Service Cards ─────────────────────────────────────────────────────── */

.home-services-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.home-service-block {
  position: relative;
  min-height: 270px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(8, 30, 63, 0.08);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-service-block:hover {
  color: inherit;
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(8, 30, 63, 0.14);
}

.home-service-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.home-service-number {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-service-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: var(--text-xl);
}

.home-service-block-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-top: auto;
  padding-top: var(--space-8);
}

.home-service-block-content h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.home-service-block-content p {
  max-width: 460px;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.home-service-link {
  position: relative;
  z-index: 2;
  margin-top: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: gap var(--transition-base);
}

.home-service-block:hover .home-service-link {
  gap: var(--space-5);
}

.home-service-block-featured,
.home-service-block-accent {
  background-color: #fff;
  border-color: rgba(27, 74, 121, 0.08);
}

.home-service-block-featured .home-service-number,
.home-service-block-featured .home-service-block-content p {
  color: var(--color-text-muted);
}

.home-service-block-featured .home-service-icon {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.home-service-block-featured h3,
.home-service-block-featured .home-service-link {
  color: var(--color-primary);
}

/* ─── Services CTA ──────────────────────────────────────────────────────── */

.home-services-footer {
  max-width: 900px;
  margin: 55px auto 0;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  background: linear-gradient(135deg, #09284d 0%, #164f82 100%);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(8, 30, 63, 0.16);
}

.home-services-footer p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  line-height: 1.6;
}

.home-services-footer .btn {
  flex-shrink: 0;
  background-color: #fff;
  border-color: #fff;
  color: var(--color-primary);
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 600;
}

.home-services-footer .btn:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.home-service-block {
  background-color: #fff;
  border: 1px solid rgba(27, 74, 121, 0.08);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
}

.home-service-block:hover {
  background: linear-gradient(135deg, #09284d 0%, #164f82 100%);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(8, 30, 63, 0.18);
}

.home-service-block:hover .home-service-number {
  color: rgba(255, 255, 255, 0.6);
}

.home-service-block:hover .home-service-icon {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.home-service-block:hover .home-service-block-content h3 {
  color: #fff;
}

.home-service-block:hover .home-service-block-content p {
  color: rgba(255, 255, 255, 0.78);
}

.home-service-block:hover .home-service-link {
  color: #fff;
}

.home-service-block:hover .home-service-link {
  gap: var(--space-5);
}

/* ─── Home Difference ────────────────────────────────────────────────────── */

.home-difference {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  overflow: hidden;
}

.home-difference .container {
  position: relative;
  z-index: 2;
}

.home-difference-heading {
  max-width: 700px;
  margin-bottom: 60px;
}

.home-difference-heading-content {
  display: block;
}

.home-difference-heading h2 {
  max-width: 600px;
  margin: 0 0 var(--space-5);
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.2;
}

.home-difference-heading-content>p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.home-difference-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}

.home-difference-card {
  position: relative;
  min-height: 300px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-difference-card:nth-child(2) {
  margin-top: 0;
}

.home-difference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
}

.home-difference-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--text-lg);
}

.home-difference-card h3 {
  position: relative;
  z-index: 2;
  margin: auto 0 var(--space-3);
  color: var(--color-primary);
  font-size: var(--text-2xl);
}

.home-difference-card p {
  position: relative;
  z-index: 2;
  max-width: 330px;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.home-difference-number {
  position: absolute;
  top: var(--space-7);
  right: var(--space-8);
  color: rgba(27, 74, 121, 0.1);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.home-difference-footer {
  max-width: 760px;
  margin: 45px auto 0;
  padding: var(--space-5) var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.home-difference-footer>span {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.home-difference-footer .home-text-link {
  flex-shrink: 0;
  margin: 0;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #2563a6;
  border: 1px solid #2563a6;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.home-difference-footer .home-text-link::before {
  display: none;
}

.home-difference-footer .home-text-link:hover {
  transform: translateY(-2px);
  background-color: #1d4f87;
  border-color: #1d4f87;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.home-difference-footer .home-text-link i {
  transition: transform var(--transition-base);
}

.home-difference-footer .home-text-link:hover i {
  transform: translateX(4px);
}

/* ─── Home Process ───────────────────────────────────────────────────────── */

.home-process {
  position: relative;
  padding: 120px 0;
  background-color: #fff;
  overflow: hidden;
}

.home-process-heading {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.home-process-heading h2 {
  max-width: 650px;
  margin: 0 auto var(--space-5);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.2;
}

.home-process-heading>p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.home-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.home-process-flow::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background-color: var(--color-border);
}

.home-process-flow::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--color-primary),
      var(--color-blue-500),
      var(--color-primary));
  transform: scaleX(0);
  transform-origin: left;
}

.home-process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-process-number {
  position: relative;
  z-index: 3;
  width: 72px;
  height: 72px;
  margin: 0 auto 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 0 0 10px #fff;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.home-process-step:hover .home-process-number {
  background-color: var(--color-primary);
  color: #fff;
  transform: translateY(-5px);
  box-shadow:
    0 0 0 10px #fff,
    0 14px 30px rgba(27, 74, 121, 0.2);
}

.home-process-line {
  display: none;
}

.home-process-content {
  max-width: 260px;
  margin: 0 auto;
}

.home-process-content h3 {
  margin-bottom: var(--space-3);
  color: var(--color-primary);
  font-size: var(--text-xl);
}

.home-process-content p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.home-process-action {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.home-process-action .home-text-link {
  margin: 0;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #2563a6;
  border: 1px solid #2563a6;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.home-process-action .home-text-link:hover {
  transform: translateY(-2px);
  background-color: #1d4f87;
  border-color: #1d4f87;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 166, 0.2);
}

.home-process-action .home-text-link i {
  transition: transform var(--transition-base);
}

.home-process-action .home-text-link:hover i {
  transform: translateX(4px);
}

@keyframes processLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ─── Home Animations ────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-up {
  transform: translateY(45px);
}

.reveal-left {
  transform: translateX(-45px);
}

.reveal-right {
  transform: translateX(45px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.hero-animate .home-eyebrow,
.hero-animate .page-hero-title,
.hero-animate>p,
.hero-animate .home-hero-actions {
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate .home-eyebrow {
  animation-delay: 0.15s;
}

.hero-animate .page-hero-title {
  animation-delay: 0.3s;
}

.hero-animate>p {
  animation-delay: 0.45s;
}

.hero-animate .home-hero-actions {
  animation-delay: 0.6s;
}

.home-hero-scroll {
  animation: scrollIndicator 2.4s ease-in-out infinite;
}

.process-animate .home-process-step {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-animate.is-visible .home-process-step {
  opacity: 1;
  transform: translateY(0);
}

.process-animate.is-visible .home-process-step:nth-child(1) {
  transition-delay: 0.15s;
}

.process-animate.is-visible .home-process-step:nth-child(2) {
  transition-delay: 0.35s;
}

.process-animate.is-visible .home-process-step:nth-child(3) {
  transition-delay: 0.55s;
}

.process-animate.is-visible .home-process-step:nth-child(4) {
  transition-delay: 0.75s;
}

.home-process-flow::after {
  animation: none;
}

.home-process-flow.process-animate.is-visible::after {
  animation: processLine 1.5s 0.15s ease forwards;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollIndicator {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .hero-animate .home-eyebrow,
  .hero-animate .page-hero-title,
  .hero-animate>p,
  .hero-animate .home-hero-actions,
  .process-animate .home-process-step {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .home-hero-scroll {
    animation: none;
  }

  .home-process-flow::after {
    transform: scaleX(1);
    animation: none;
  }
}

/* ─── Home CTA ───────────────────────────────────────────────────────────── */

.home-cta {
  position: relative;
  padding: 110px 0;
  background-image:
    linear-gradient(90deg,
      rgba(5, 31, 60, 0.96) 0%,
      rgba(8, 48, 88, 0.88) 48%,
      rgba(13, 67, 116, 0.58) 100%),
    url("/images/cta-home-page.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.home-cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(15, 83, 142, 0.15));
  pointer-events: none;
}

.home-cta .container {
  position: relative;
  z-index: 2;
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.home-cta-content {
  max-width: 680px;
}

.home-cta-content h2 {
  max-width: 650px;
  margin: 0 0 var(--space-5);
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.2;
}

.home-cta-content p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.home-cta-action {
  flex-shrink: 0;
}

.home-cta-action .btn {
  min-height: 58px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.home-cta-action .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.home-cta-action .btn i {
  transition: transform var(--transition-base);
}

.home-cta-action .btn:hover i {
  transform: translateX(5px);
}



/* ─── Who We Are Hero ──────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background-image: url('/images/who-we-are-hero.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 18, 38, 0.94) 0%, rgba(4, 18, 38, 0.78) 35%, rgba(4, 18, 38, 0.28) 62%, rgba(4, 18, 38, 0.06) 100%);
}

.about-hero-container {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 760px;
}

.about-hero-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.about-hero-scroll {
  position: absolute;
  z-index: 2;
  right: 3.5%;
  bottom: var(--space-8);
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero-scroll span:first-child {
  writing-mode: vertical-rl;
}

.about-hero-scroll-line {
  width: 1px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* ─── Our Approach ─────────────────────────────────────────────────────── */
.about-intro {
  padding: 120px 0;
  background-color: #fff;
}

.about-intro-heading {
  max-width: 850px;
  margin-bottom: 70px;
}

.about-intro-heading h2 {
  margin-top: var(--space-4);
  color: var(--color-primary);
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.15;
}

.about-intro-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  padding-top: 55px;
  border-top: 1px solid rgba(27, 74, 121, 0.15);
}

.about-intro-statement p {
  max-width: 520px;
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.45;
}

.about-intro-copy {
  max-width: 600px;
}

.about-intro-copy p {
  margin: 0 0 var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.about-intro-copy p:last-child {
  margin-bottom: 0;
}

/* ─── What Defines Us ──────────────────────────────────────────────────── */
.about-values {
  position: relative;
  padding: 110px 0;
  background-color: #eef4f9;
  overflow: hidden;
}

.about-values::before,
.about-values::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(27, 74, 121, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.about-values::before {
  width: 190px;
  height: 190px;
  top: 70px;
  right: -70px;
}

.about-values::after {
  width: 90px;
  height: 90px;
  bottom: 60px;
  left: -25px;
}

.about-values-heading {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-values-heading h2 {
  margin: var(--space-4) 0 var(--space-4);
  color: var(--color-primary);
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
}

.about-values-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.about-values-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.about-value-card {
  min-height: 330px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(27, 74, 121, 0.07);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(8, 30, 63, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.about-value-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, #0a2c55 0%, #174f82 100%);
  box-shadow: 0 25px 55px rgba(8, 30, 63, 0.18);
}

.about-value-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.about-value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: var(--text-lg);
}

.about-value-number {
  color: rgba(27, 74, 121, 0.1);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-value-content {
  margin-top: auto;
  padding-top: var(--space-8);
}

.about-value-content h3 {
  margin-bottom: var(--space-3);
  color: var(--color-primary);
  font-size: var(--text-xl);
}

.about-value-content p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-value-card:hover .about-value-content h3,
.about-value-card:hover .about-value-content p {
  color: #fff;
}

.about-value-card:hover .about-value-content p {
  color: rgba(255, 255, 255, 0.75);
}

.about-value-card:hover .about-value-number {
  color: rgba(255, 255, 255, 0.12);
}

.about-value-card:hover .about-value-icon {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ─── The ATH Story ────────────────────────────────────────────────────── */
.about-story {
  padding: 120px 0;
  background-color: #fff;
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
}

.about-story-image {
  position: relative;
  height: 590px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(8, 30, 63, 0.14);
}

.about-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 18, 38, 0.18) 100%);
  pointer-events: none;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-content h2 {
  margin: var(--space-4) 0 var(--space-5);
  color: var(--color-primary);
  font-size: clamp(2.3rem, 3.5vw, 3.5rem);
  line-height: 1.15;
}

.about-story-content>p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-story-lead {
  color: var(--color-primary) !important;
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.55 !important;
}

.about-story-points {
  margin: var(--space-7) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about-story-point {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.about-story-point span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 12px;
}

.about-story-point p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ─── ATH By The Numbers ───────────────────────────────────────────────── */
.about-stats {
  position: relative;
  padding: 105px 0;
  background: linear-gradient(135deg, #08274c 0%, #174f82 100%);
  overflow: hidden;
}

.about-stats::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  top: -250px;
  right: -100px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.about-stats-heading {
  max-width: 650px;
  margin: 0 auto 65px;
  text-align: center;
}

.about-stats-heading h2 {
  margin: var(--space-4) 0 var(--space-4);
  color: #fff;
  font-size: clamp(2.2rem, 3.5vw, 3.3rem);
}

.about-stats-heading p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.about-stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat {
  padding: 20px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-stat:last-child {
  border-right: 0;
}

.about-stat-number {
  margin-bottom: var(--space-3);
  color: #fff;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
}

.about-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ─── About Closing ────────────────────────────────────────────────────── */
.about-closing {
  padding: 110px 0 90px;
  background-color: #f7f9fc;
  overflow: hidden;
}

.about-closing-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.about-closing-content {
  max-width: 540px;
}

.about-closing-content h2 {
  margin: var(--space-4) 0 var(--space-5);
  color: var(--color-primary);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.12;
}

.about-closing-content p {
  max-width: 500px;
  margin-bottom: var(--space-7);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.75;
}

.about-closing-visual {
  position: relative;
  padding: 0 14px 14px 0;
}

.about-closing-image {
  position: relative;
  z-index: 2;
  height: 430px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(8, 30, 63, 0.16);
}

.about-closing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-closing-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85%;
  height: 85%;
  background-color: var(--color-primary);
  border-radius: 18px;
}

.about-closing .btn-primary {
  margin-top: 20px;
  background-color: #2f75b5;
  border-color: #2f75b5;
  color: #fff;
}

.about-closing .btn-primary:hover {
  background-color: #28679f;
  border-color: #28679f;
  color: #fff;
}

.about-closing-footer {
  margin-top: 70px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid rgba(27, 74, 121, 0.18);
  color: var(--color-primary);
  font-weight: 700;
}

.about-closing-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* ─── How We Work Hero ─────────────────────────────────────────────────── */
.work-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background-image: url('/images/how-we-work-mockup.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.work-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 18, 38, 0.92) 0%, rgba(4, 18, 38, 0.72) 32%, rgba(4, 18, 38, 0.2) 58%, rgba(4, 18, 38, 0.05) 100%);
}

.work-hero-container {
  position: relative;
  z-index: 2;
}

.work-hero-content {
  max-width: 760px;
}

.work-hero-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-hero-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.work-hero-scroll {
  position: absolute;
  z-index: 2;
  right: 3.5%;
  bottom: var(--space-8);
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-hero-scroll span:first-child {
  writing-mode: vertical-rl;
}

.work-hero-scroll-line {
  width: 1px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* ─── How We Start ─────────────────────────────────────────────────────── */
.work-intro {
  padding: 110px 0;
  background-color: #fff;
}

.work-intro-heading {
  max-width: 760px;
  margin-bottom: 65px;
}

.work-intro-heading h2 {
  margin: var(--space-4) 0 0;
  color: var(--color-primary);
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
}

.work-intro-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 0;
}

.work-intro-statement {
  position: relative;
  z-index: 2;
  min-height: 400px;
  padding: 60px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #08274c 0%, #174f82 100%);
  border-radius: 22px 0 0 22px;
  box-shadow: 0 20px 50px rgba(8, 30, 63, 0.12);
  overflow: hidden;
}

.work-intro-statement p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  font-weight: 600;
  line-height: 1.35;
}

.work-intro-copy {
  position: relative;
  z-index: 1;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f5f8fb;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-left: 0;
  border-radius: 0 22px 22px 0;
}

.work-intro-copy-item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(27, 74, 121, 0.12);
}

.work-intro-copy-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.work-intro-copy-item>span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-intro-copy-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.75;
}

.work-intro-bubbles span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.work-intro-bubbles span:nth-child(1) {
  width: 180px;
  height: 180px;
  top: -70px;
  right: -50px;
}

.work-intro-bubbles span:nth-child(2) {
  width: 75px;
  height: 75px;
  top: 80px;
  right: 55px;
}

.work-intro-bubbles span:nth-child(3) {
  width: 30px;
  height: 30px;
  top: 55px;
  right: 25px;
}

/* ─── Our Process ──────────────────────────────────────────────────────── */
.work-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}

.work-process-grid::before {
  content: '';
  position: absolute;
  top: 68px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(27, 74, 121, 0.08), rgba(27, 74, 121, 0.3), rgba(27, 74, 121, 0.3), rgba(27, 74, 121, 0.08));
}

.work-process {
  position: relative;
  padding: 110px 0;
  background-color: #f8fafc;
  background-image:
    url('/images/how-we-work-process.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.work-process-card {
  position: relative;
  z-index: 2;
  min-height: 390px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(8, 30, 63, 0.06);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.work-process-card:nth-child(2),
.work-process-card:nth-child(4) {
  transform: none;
}

.work-process-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, #0a2c55 0%, #174f82 100%);
  box-shadow: 0 25px 55px rgba(8, 30, 63, 0.18);
}

.work-process-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-process-number {
  color: rgba(27, 74, 121, 0.12);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.work-process-icon {
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef4f9;
  border: 5px solid #fff;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: var(--text-lg);
  box-shadow: 0 8px 25px rgba(8, 30, 63, 0.08);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.work-process-content {
  margin-top: auto;
  padding-top: var(--space-8);
}

.work-process-label {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-process-content h3 {
  margin-bottom: var(--space-3);
  color: var(--color-primary);
  font-size: var(--text-xl);
}

.work-process-content p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.work-process-card:hover .work-process-number {
  color: rgba(255, 255, 255, 0.12);
}

.work-process-card:hover .work-process-icon {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: scale(1.08);
}

.work-process-card:hover .work-process-label,
.work-process-card:hover .work-process-content h3 {
  color: #fff;
}

.work-process-card:hover .work-process-content p {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── Working Together ─────────────────────────────────────────────────── */
.work-together {
  position: relative;
  padding: 110px 0;
  background-color: #fff;
  overflow: hidden;
}

.work-together::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  right: -150px;
  bottom: -150px;
  border: 1px solid rgba(27, 74, 121, 0.07);
  border-radius: 50%;
}

.work-together-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 0;
}

.work-together-content {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 65px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #08274c 0%, #174f82 100%);
  border-radius: 22px 0 0 22px;
  overflow: hidden;
}

.work-together-content::before,
.work-together-content::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.work-together-content::before {
  width: 220px;
  height: 220px;
  right: -80px;
  top: -90px;
}

.work-together-content::after {
  width: 90px;
  height: 90px;
  right: 60px;
  top: 80px;
}

.work-together-content .home-eyebrow {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.65);
}

.work-together-content h2 {
  position: relative;
  z-index: 2;
  margin: var(--space-4) 0 var(--space-5);
  color: #fff;
  font-size: clamp(2.3rem, 3.5vw, 3.5rem);
  line-height: 1.15;
}

.work-together-content>p {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.work-together-lead {
  margin-bottom: var(--space-5) !important;
  color: #fff !important;
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.55 !important;
}

.work-together-points {
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background-color: #f5f8fb;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-left: 0;
  border-radius: 0 22px 22px 0;
}

.work-together-point {
  position: relative;
  padding: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(27, 74, 121, 0.12);
  border-radius: 0;
  transition: transform var(--transition-base);
}

.work-together-point:first-child {
  padding-top: 0;
}

.work-together-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.work-together-point:hover {
  transform: translateX(6px);
  border-color: rgba(27, 74, 121, 0.12);
  box-shadow: none;
}

.work-together-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: var(--text-lg);
  box-shadow: 0 8px 20px rgba(8, 30, 63, 0.06);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.work-together-point:hover .work-together-icon {
  background-color: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.work-together-point h3 {
  margin: 2px 0 var(--space-2);
  color: var(--color-primary);
  font-size: var(--text-lg);
}

.work-together-point p {
  max-width: 580px;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── Beyond Launch ────────────────────────────────────────────────────── */
.work-support {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #08274c 0%, #174f82 100%);
  overflow: hidden;
}

.work-support::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -320px;
  right: -120px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.work-support::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: 8%;
  bottom: -140px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.work-support-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: stretch;
  gap: 80px;
}

.work-support-feature {
  position: relative;
  min-height: 470px;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
}

.work-support-feature::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  top: -120px;
  right: -100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.work-support-feature-icon {
  position: absolute;
  top: 45px;
  left: 50px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 7rem;
  line-height: 1;
}

.work-support-feature-label {
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-4);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-support-feature h3 {
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-4);
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.work-support-feature p {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.work-support-content {
  padding: 20px 0;
}

.work-support-content h2 {
  margin: var(--space-4) 0 var(--space-5);
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.12;
}

.work-support-content>p {
  max-width: 650px;
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.work-support-services {
  margin-bottom: var(--space-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.work-support-service {
  padding: 24px 20px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.work-support-service:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.11);
}

.work-support-icon {
  width: 42px;
  height: 42px;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
}

.work-support-service h4 {
  margin-bottom: var(--space-2);
  color: #fff;
  font-size: var(--text-base);
}

.work-support-service p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.work-support-link {
  width: fit-content;
  margin-top: var(--space-2);
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  border-radius: 8px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.work-support-link:hover {
  transform: translateY(-2px);
  background-color: #f4f7fa;
  color: var(--color-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ─── How We Work CTA ──────────────────────────────────────────────────── */
.work-cta {
  background-image: url('/images/home-cta-background.png');
}

/* ─── What We Offer Hero ───────────────────────────────────────────────── */
.services-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background-image: url('/images/what-we-offer-services.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 18, 38, 0.92) 0%, rgba(4, 18, 38, 0.72) 32%, rgba(4, 18, 38, 0.2) 58%, rgba(4, 18, 38, 0.05) 100%);
}

.services-hero-container {
  position: relative;
  z-index: 2;
}

.services-hero-content {
  max-width: 760px;
}

.services-hero-content p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.services-hero-scroll {
  position: absolute;
  z-index: 2;
  right: 3.5%;
  bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-hero-scroll span:first-child {
  writing-mode: vertical-rl;
}

.services-hero-scroll-line {
  width: 1px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* ─── Services Introduction ────────────────────────────────────────────── */
.services-intro {
  padding: 110px 0;
  background-color: #fff;
}

.services-intro-heading {
  max-width: 850px;
  margin-bottom: 70px;
}

.services-intro-heading h2 {
  margin: var(--space-4) 0 0;
  color: var(--color-primary);
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
}

.services-intro-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 0;
}

.services-intro-statement {
  position: relative;
  min-height: 390px;
  padding: 60px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #08274c 0%, #174f82 100%);
  border-radius: 22px 0 0 22px;
  box-shadow: 0 20px 50px rgba(8, 30, 63, 0.12);
  overflow: hidden;
}

.services-intro-statement::before,
.services-intro-statement::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.services-intro-statement::before {
  width: 220px;
  height: 220px;
  top: -100px;
  right: -70px;
}

.services-intro-statement::after {
  width: 80px;
  height: 80px;
  top: 75px;
  right: 55px;
}

.services-intro-statement p {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  font-weight: 600;
  line-height: 1.35;
}

.services-intro-copy {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f5f8fb;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-left: 0;
  border-radius: 0 22px 22px 0;
}

.services-intro-copy p {
  margin: 0 0 var(--space-5);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.services-intro-copy p:last-child {
  margin-bottom: 0;
}

.services-intro-lead {
  color: var(--color-primary) !important;
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.55 !important;
}

/* ─── Core Services ────────────────────────────────────────────────────── */
.services-core {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(75, 155, 220, 0.12) 0%, transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(27, 74, 121, 0.1) 0%, transparent 30%),
    linear-gradient(135deg, #f4f8fc 0%, #e8f1f8 50%, #f4f8fc 100%);
  overflow: hidden;
}

.services-core::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 74, 121, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 74, 121, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  pointer-events: none;
}

.services-core-heading {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-core-heading h2 {
  margin: var(--space-4) 0;
  color: var(--color-primary);
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
}

.services-core-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.services-core-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.services-core-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(8, 30, 63, 0.06);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.services-core-card::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  top: -110px;
  right: -90px;
  background: radial-gradient(circle, rgba(75, 155, 220, 0.16) 0%, rgba(75, 155, 220, 0) 70%);
  border-radius: 50%;
  transform: scale(0.8);
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.services-core-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #4b9bdc, #174f82);
  transition: right 0.45s ease;
}

.services-core-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, #08274c 0%, #174f82 100%);
  border-color: rgba(23, 79, 130, 0.3);
  box-shadow: 0 28px 60px rgba(8, 30, 63, 0.18);
}

.services-core-card:hover::before {
  transform: scale(1.5);
}

.services-core-card:hover::after {
  right: 0;
}

.services-core-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.services-core-number {
  color: rgba(27, 74, 121, 0.12);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  transition: color 0.4s ease, transform 0.4s ease;
}

.services-core-icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border: 1px solid rgba(27, 74, 121, 0.06);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: var(--text-lg);
  box-shadow: 0 8px 20px rgba(8, 30, 63, 0.05);
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.services-core-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: var(--space-8);
}

.services-core-label {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.4s ease, transform 0.4s ease;
}

.services-core-content h3 {
  margin-bottom: var(--space-3);
  color: var(--color-primary);
  font-size: var(--text-xl);
  transition: color 0.4s ease, transform 0.4s ease;
}

.services-core-content p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
  transition: color 0.4s ease;
}

.services-core-card:hover .services-core-number {
  color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.services-core-card:hover .services-core-icon {
  background-color: #fff;
  color: var(--color-primary);
  transform: translateY(-4px) rotate(6deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.services-core-card:hover .services-core-label {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(4px);
}

.services-core-card:hover .services-core-content h3 {
  color: #fff;
  transform: translateX(4px);
}

.services-core-card:hover .services-core-content p {
  color: rgba(255, 255, 255, 0.72);
}

/* ─── Connected Solutions ──────────────────────────────────────────────── */
.services-connected {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #08274c 0%, #174f82 100%);
  overflow: hidden;
}

.services-connected::before,
.services-connected::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.services-connected::before {
  width: 400px;
  height: 400px;
  top: -220px;
  right: -100px;
}

.services-connected::after {
  width: 160px;
  height: 160px;
  bottom: -90px;
  left: 8%;
}

.services-connected-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.services-connected-content {
  max-width: 560px;
}

.services-connected-content h2 {
  margin: var(--space-4) 0 var(--space-5);
  color: #fff;
  font-size: clamp(2.3rem, 3.5vw, 3.5rem);
  line-height: 1.15;
}

.services-connected-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.services-connected-points {
  display: flex;
  flex-direction: column;
}

.services-connected-point {
  padding: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.services-connected-point:first-child {
  padding-top: 0;
}

.services-connected-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.services-connected-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
}

.services-connected-point-content h3 {
  margin: 0 0 var(--space-2);
  color: #fff;
  font-size: var(--text-lg);
}

.services-connected-point-content p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ─── Ongoing Partnership ──────────────────────────────────────────────── */
.services-partnership {
  padding: 120px 0;
  background-color: #fff;
}

.services-partnership-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.services-partnership-content {
  max-width: 540px;
}

.services-partnership-content h2 {
  margin: var(--space-4) 0 var(--space-5);
  color: var(--color-primary);
  font-size: clamp(2.3rem, 3.5vw, 3.5rem);
  line-height: 1.15;
}

.services-partnership-content>p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.services-partnership-lead {
  color: var(--color-primary) !important;
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.55 !important;
}

.services-partnership-content .home-text-link {
  margin-top: var(--space-5);
}

.services-partnership-panel {
  padding: 45px;
  background-color: #f5f8fb;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 22px;
}

.services-partnership-item {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-5);
  border-bottom: 1px solid rgba(27, 74, 121, 0.12);
}

.services-partnership-item:first-child {
  padding-top: 0;
}

.services-partnership-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.services-partnership-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 50%;
  color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(8, 30, 63, 0.05);
}

.services-partnership-number {
  display: block;
  margin-bottom: var(--space-2);
  color: rgba(27, 74, 121, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.services-partnership-item h3 {
  margin-bottom: var(--space-2);
  color: var(--color-primary);
  font-size: var(--text-lg);
}

.services-partnership-item p {
  max-width: 540px;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── What We Offer CTA ────────────────────────────────────────────────── */
.services-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #08274c 0%, #174f82 100%);
}

.services-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.services-cta-content {
  max-width: 700px;
}

.services-cta-content h2 {
  margin: var(--space-4) 0 var(--space-4);
  color: #fff;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.15;
}

.services-cta-content p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.services-cta-button {
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  border-radius: 8px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.services-cta-button:hover {
  transform: translateY(-2px);
  background-color: #f4f7fa;
  color: var(--color-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ─── Process Steps (How We Work) ─────────────────────────────────────────── */

.process-step {
  text-align: center;
}

.process-step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
}

.process-step-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.process-step-text {
  color: var(--color-text-muted);
  margin: 0;
}


/* ─── The ATH Difference (How We Work) ────────────────────────────────────── */

.difference-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.difference-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--text-xl);
}

.difference-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.difference-text {
  color: var(--color-text-muted);
  margin: 0;
}

/* ─── Contact Hero ─────────────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background-image: url('/images/contact-background.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 18, 38, 0.92) 0%, rgba(4, 18, 38, 0.72) 32%, rgba(4, 18, 38, 0.2) 58%, rgba(4, 18, 38, 0.05) 100%);
}

.contact-hero-container {
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 760px;
}

.contact-hero-eyebrow {
  display: block;
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-hero-content p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.contact-hero-scroll {
  position: absolute;
  z-index: 2;
  right: 3.5%;
  bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-hero-scroll span:first-child {
  writing-mode: vertical-rl;
}

.contact-hero-scroll-line {
  width: 1px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* ─── Contact Main ─────────────────────────────────────────────────────── */
.contact-main {
  position: relative;
  padding: 110px 0;
  background: radial-gradient(circle at 5% 20%, rgba(75, 155, 220, 0.08) 0%, transparent 25%), linear-gradient(135deg, #f8fafc 0%, #eef4f9 100%);
  overflow: hidden;
}

.contact-main::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  top: 150px;
  right: -200px;
  border: 1px solid rgba(27, 74, 121, 0.06);
  border-radius: 50%;
}

.contact-heading {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 65px;
  text-align: center;
}

.contact-heading h2 {
  margin: var(--space-4) 0 var(--space-5);
  color: var(--color-primary);
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
}

.contact-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ─── Contact Layout ───────────────────────────────────────────────────── */
.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: stretch;
  gap: 24px;
}

/* ─── Contact Details ──────────────────────────────────────────────────── */
.contact-details {
  position: relative;
  min-height: 100%;
  padding: 55px 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #08274c 0%, #174f82 100%);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(8, 30, 63, 0.16);
  overflow: hidden;
}

.contact-details-content {
  position: relative;
  z-index: 2;
}

.contact-details-eyebrow {
  display: block;
  margin-bottom: var(--space-4);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details h3 {
  max-width: 400px;
  margin-bottom: var(--space-4);
  color: #fff;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.2;
}

.contact-details-content>p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.contact-details-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  font-size: var(--text-base);
}

.contact-detail-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail-item a {
  display: block;
  width: fit-content;
  margin-bottom: 4px;
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.contact-detail-item a:hover {
  color: #fff;
  opacity: 0.75;
}

.contact-detail-item small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-sm);
}

.contact-details-footer {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details-footer span {
  display: block;
  margin-bottom: var(--space-2);
  color: #fff;
  font-weight: 600;
}

.contact-details-footer p {
  max-width: 400px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.contact-details-bubbles span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.contact-details-bubbles span:nth-child(1) {
  width: 260px;
  height: 260px;
  top: -130px;
  right: -110px;
}

.contact-details-bubbles span:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 85px;
  right: 35px;
}

.contact-details-bubbles span:nth-child(3) {
  width: 35px;
  height: 35px;
  top: 55px;
  right: 25px;
}

/* ─── Contact Form ─────────────────────────────────────────────────────── */
.contact-form-wrapper {
  padding: 55px;
  background-color: #fff;
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(8, 30, 63, 0.07);
}

.contact-form-heading {
  margin-bottom: 40px;
}

.contact-form-heading>span {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  margin-bottom: var(--space-3);
  color: var(--color-primary);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.2;
}

.contact-form-heading p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contact-form .form-label {
  margin-bottom: 9px;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
}

.contact-form .form-label span {
  margin-left: 4px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 400;
}

.contact-form .form-control {
  min-height: 54px;
  padding: 14px 16px;
  background-color: #f8fafc;
  border: 1px solid rgba(27, 74, 121, 0.12);
  border-radius: 10px;
  color: var(--color-text);
  box-shadow: none;
  transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.contact-form .form-control::placeholder {
  color: rgba(69, 83, 98, 0.5);
}

.contact-form .form-control:focus {
  background-color: #fff;
  border-color: #4b9bdc;
  box-shadow: 0 0 0 4px rgba(75, 155, 220, 0.1);
}

.contact-form .invalid-feedback {
  font-size: 12px;
}

.contact-form .alert:empty {
  display: none;
}

.contact-submit {
  min-width: 180px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #2563a6;
  border-color: #2563a6;
  color: #fff;
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: 600;
  transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-submit:hover {
  transform: translateY(-2px);
  background-color: #2563a6;
  border-color: #2563a6;
  color: #fff;
  box-shadow: 0 12px 28px rgba(54, 135, 200, 0.25);
}

.contact-submit i {
  transition: transform var(--transition-base);
}

.contact-submit:hover i {
  transform: translateX(4px);
}

/* ─── Contact Reassurance ──────────────────────────────────────────────── */
.contact-reassurance {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 50px auto 0;
  padding: 22px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 74, 121, 0.08);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(8, 30, 63, 0.04);
}

.contact-reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
}

.contact-reassurance-item i {
  color: #4b9bdc;
}

.contact-reassurance-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(27, 74, 121, 0.12);
}

/* Honeypot field - hidden from sighted users, still reachable by bots/screen-reader-agnostic scrapers */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#contact-alert {
  display: none;
}

#contact-alert.show {
  display: block;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
  background-color: var(--color-navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-12) 0 var(--space-6);
}

.site-footer h5 {
  color: #fff;
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  margin-right: var(--space-2);
}

.footer-social a:hover {
  background-color: var(--color-accent);
  color: var(--color-accent-text);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  font-size: var(--text-sm);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

  /* ─── Global Mobile ───────────────────────────────────────────────────── */

  .section {
    padding: var(--space-12) 0;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .container {
    max-width: 100%;
  }

  img {
    max-width: 100%;
  }

  /* ─── Navbar ──────────────────────────────────────────────────────────── */

  .site-navbar {
    padding: 10px 0;
  }

  .site-navbar .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-navbar .navbar-brand {
    display: flex;
    align-items: center;
    margin-left: 0;
  }

  .navbar-brand img {
    width: 90px;
    height: auto;
    display: block;
  }

  .navbar-toggler {
    padding: 8px 10px;
    border: 0;
    box-shadow: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse {
    margin-top: 15px;
    padding: 15px 0 5px;
  }

  .navbar-nav {
    gap: 4px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .navbar-nav .nav-item.ms-lg-2 {
    margin-top: 10px;
    margin-left: 0 !important;
  }

  .navbar-nav .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ─── Homepage Hero ───────────────────────────────────── */

  .home-hero {
    min-height: 720px;
    height: 100svh;
  }

  .home-hero-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-hero-content {
    max-width: 100%;
  }

  .home-eyebrow-light {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .home-hero .page-hero-title {
    font-size: 42px;
    line-height: 1.08;
    margin-bottom: 20px;
  }

  .home-hero-content p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .home-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .home-hero-actions .btn {
    width: 90%;
    justify-content: center;
  }

  .home-hero-scroll {
    right: 18px;
    bottom: 24px;
  }

  /* ─── Home Introduction ──────────────────────────────────────────────── */

  .home-intro {
    padding: 80px 0;
  }

  .home-intro-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .home-intro-heading {
    max-width: 100%;
  }

  .home-intro-heading h2 {
    margin-top: var(--space-3);
    font-size: 32px;
    line-height: 1.2;
  }

  .home-intro-content {
    max-width: 100%;
  }

  .home-intro-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-intro-lead {
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px;
  }

  .home-intro-content .home-text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
  }

  /* ─── Home Services ──────────────────────────────────────────────────── */

  .home-services {
    padding: 70px 0;
  }

  .home-services-heading {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .home-services-heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .home-services-heading>p {
    font-size: 15px;
    line-height: 1.65;
  }

  .home-services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-service-block {
    padding: 28px 24px;
    min-height: 0;
    height: auto;
  }

  .home-service-block+.home-service-block {
    border-top: none;
  }


  .home-service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
  }

  .home-service-block h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .home-service-block p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .home-service-link {
    margin-top: 20px;
  }

  /* ─── Home Difference ───────────────────────────────────────────────── */

  .home-difference {
    padding: 80px 0;
  }

  .home-difference-heading {
    margin-bottom: 40px;
  }

  .home-difference-heading-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .home-difference-heading-content>p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }

  .home-difference-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-difference-card {
    min-height: 0;
    height: auto;
    padding: 28px 24px;
  }

  .home-difference-number {
    top: 22px;
    right: 24px;
    font-size: 3rem;
  }

  .home-difference-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
  }

  .home-difference-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
  }

  .home-difference-card p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .home-difference-footer {
    margin-top: 35px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .home-difference-footer>span {
    font-size: 14px;
    line-height: 1.6;
  }

  .home-difference-footer .home-text-link {
    margin-top: 0;
  }

  /* =========================================================
   MOBILE — HOME PROCESS
   ========================================================= */

  .home-process {
    padding: 70px 0;
  }

  .home-process-heading {
    margin-bottom: 45px;
    text-align: center;
  }

  .home-process-heading h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .home-process-heading p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-process-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-process-step {
    width: 100%;
    max-width: 340px;
    padding: 30px 0;
    text-align: center;
    border: none !important;
  }

  .home-process-step:first-child {
    padding-top: 0;
  }

  .home-process-step:last-child {
    padding-bottom: 0;
  }

  .home-process-flow::before,
  .home-process-flow::after,
  .home-process-line,
  .home-process-step::before,
  .home-process-step::after {
    display: none !important;
    content: none !important;
  }

  .home-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }

  .home-process-content {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .home-process-content h3 {
    margin: 0 0 10px;
    color: var(--color-primary);
    font-size: 22px;
    line-height: 1.3;
  }

  .home-process-content p {
    max-width: 300px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-process-action {
    margin-top: 35px;
  }

  /* =========================================================
   MOBILE — HOME CTA
   ========================================================= */

  .home-cta {
    padding: 80px 20px;
    background-position: center;
    background-size: cover;
  }

  .home-cta .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .home-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    gap: 30px;
    text-align: center;
  }

  .home-cta-content {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .home-cta-content .home-eyebrow {
    display: block;
    margin-bottom: 18px;
  }

  .home-cta-content h2 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 18px;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }

  .home-cta-content p {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }

  .home-cta-action {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .home-cta-action .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
  }

  /* =========================================================
   MOBILE — WHO WE ARE HERO
   ========================================================= */

  .about-hero {
    min-height: 680px;
    height: auto;
  }

  .about-hero-container {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-hero-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }

  .about-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
  }


  .about-hero .page-hero-title {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 20px;
  }

  .about-hero-content p {
    max-width: 320px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .about-hero-scroll {
    display: none;
  }

  /* =========================================================
   MOBILE — WHO WE ARE INTRO
   ========================================================= */

  .about-intro {
    padding: 75px 0;
  }

  .about-intro-heading {
    text-align: center;
    margin-bottom: 45px;
  }

  .about-intro-heading h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .about-intro-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .about-intro-statement {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .about-intro-statement p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--color-primary);
  }

  .about-intro-copy {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-intro-copy p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  .about-intro-copy p:last-child {
    margin-bottom: 0;
  }

  /* =========================================================
   MOBILE — WHO WE ARE FOUNDATION
   ========================================================= */

  .about-values {
    padding: 75px 0;
  }

  .about-values-heading {
    margin-bottom: 40px;
    text-align: center;
  }

  .about-values-heading h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .about-values-heading p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
  }


  .about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-value-card {
    min-height: 0;
    height: auto;
    padding: 28px 24px;
  }

  .about-value-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .about-value-icon {
    width: 46px;
    height: 46px;
  }

  .about-value-number {
    font-size: 2.8rem;
  }

  .about-value-content h3 {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .about-value-content p {
    max-width: 100%;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  /* =========================================================
   MOBILE — WHO WE ARE STORY
   ========================================================= */

  .about-story {
    padding: 75px 0;
  }

  .about-story-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }


  .about-story-image {
    width: 100%;
    max-width: 340px;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto;
    overflow: hidden;
  }

  .about-story-image img {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    display: block;
    object-fit: cover;
  }

  .about-story-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .about-story-content h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .about-story-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .about-story-content .about-story-lead {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  /* =========================================================
   MOBILE — WHO WE ARE NUMBERS
   ========================================================= */

  .about-stats {
    height: auto !important;
    min-height: 0 !important;
    padding: 70px 0 65px;
  }

  .about-stats-heading {
    margin-bottom: 45px;
    text-align: center;
  }

  .about-stats-heading h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .about-stats-heading p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
  }


  .about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }


  .about-stat {
    padding: 28px 15px;
    text-align: center;
    border: none !important;
  }

  .about-stat::before,
  .about-stat::after {
    display: none !important;
    content: none !important;
  }

  .about-stat-number {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .about-stat-label {
    font-size: 13px;
    line-height: 1.5;
  }

  /* =========================================================
   MOBILE — WHO WE ARE CLOSING / WHY ATH
   ========================================================= */

  .about-closing {
    padding: 75px 0 60px;
  }

  .about-closing-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }


  .about-closing-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .about-closing-content h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 16px 0 20px;
  }

  .about-closing-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .about-closing-content .btn {
    width: 100%;
    max-width: 340px;
  }

  .about-closing-visual {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .about-closing-image {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
  }

  .about-closing-image img {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    display: block;
    object-fit: cover;
  }

  .about-closing-accent {
    display: none;
  }


  .about-closing-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    text-align: center;
  }

  .about-closing-footer span {
    font-size: 13px;
    line-height: 1.5;
  }

  .about-closing-dot {
    display: none;
  }

  /* =========================================================
   MOBILE — HOW WE WORK HERO
   ========================================================= */

  .work-hero {
    min-height: 680px;
    height: auto;
  }


  .work-hero-container {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .work-hero-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }

  .work-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
  }

  .work-hero .page-hero-title {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 20px;
  }

  .work-hero-content p {
    max-width: 320px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .work-hero-scroll {
    display: none;
  }

  /* =========================================================
   MOBILE — HOW WE WORK HERO
   ========================================================= */

  .work-hero {
    min-height: 680px;
    height: auto;
    position: relative;
  }

  .work-hero-container {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .work-hero-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }

  .work-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
  }

  .work-hero .page-hero-title {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 20px;
  }

  .work-hero-content p {
    max-width: 320px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .work-hero-scroll {
    display: none;
  }

  /* =========================================================
   MOBILE — HOW WE START
   ========================================================= */

  .work-intro {
    padding: 80px 0 90px;
    background: #fff;
  }

  .work-intro-heading {
    text-align: center;
    margin-bottom: 52px;
  }

  .work-intro-heading .home-eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
  }

  .work-intro-heading h2 {
    font-size: 32px;
    line-height: 1.16;
    max-width: 350px;
    margin: 0 auto;
  }

  .work-intro-layout {
    display: flex;
    flex-direction: column;
    gap: 52px;
  }


  .work-intro-statement {
    position: relative;
    width: 100%;
    padding: 42px 28px;
    background: #0d3f70;
    border-radius: 24px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .work-intro-statement p {
    position: relative;
    z-index: 2;
    max-width: 310px;
    margin: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 700;
    text-align: center;
  }

  .work-intro-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .work-intro-bubbles span {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
  }

  .work-intro-bubbles span:nth-child(1) {
    width: 150px;
    height: 150px;
    top: -55px;
    right: -25px;
  }

  .work-intro-bubbles span:nth-child(2) {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
  }

  .work-intro-bubbles span:nth-child(3) {
    width: 34px;
    height: 34px;
    top: 42px;
    right: 28px;
  }

  .work-intro-copy {
    width: 100%;
  }

  .work-intro-copy-item {
    position: relative;
    padding: 0 0 38px;
  }

  .work-intro-copy-item+.work-intro-copy-item {
    padding-top: 38px;
  }

  .work-intro-copy-item+.work-intro-copy-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dce5ee;
  }

  .work-intro-copy-item span {
    display: block;
    margin-bottom: 14px;
    color: #0d477e;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .work-intro-copy-item p {
    max-width: 340px;
    margin: 0;
    color: #526b85;
    font-size: 16px;
    line-height: 1.75;
  }

  .work-intro {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .work-intro-heading {
    margin-bottom: 44px;
  }

  .work-intro-heading h2 {
    font-size: 30px;
  }

  .work-intro-layout {
    gap: 44px;
  }

  .work-intro-statement {
    min-height: 205px;
    padding: 36px 24px;
    border-radius: 22px;
  }

  .work-intro-statement p {
    font-size: 20px;
  }

  .work-intro-copy-item p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* =========================================================
   MOBILE — OUR PROCESS
   ========================================================= */

  .work-process {
    padding: 80px 0;
    background: #f4f7fa;
  }

  .work-process .container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .work-process-heading {
    text-align: left;
    margin-bottom: 42px;
  }

  .work-process-heading .home-eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
  }

  .work-process-heading h2 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--color-navy-700);
  }

  .work-process-heading p {
    margin: 0;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.7;
    color: #63758b;
  }


  .work-process-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .work-process-card {
    position: relative;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 24px 22px 26px;
    background: #0f4778;
    border-radius: 22px;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 71, 120, 0.12);
    overflow: hidden;
  }

  .work-process-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    right: -45px;
    top: -45px;
    pointer-events: none;
  }

  .work-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .work-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background: #ffffff;
    color: #0f4778;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
  }

  .work-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-size: 17px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
  }


  .work-process-content {
    position: relative;
    z-index: 1;
  }

  .work-process-label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
  }

  .work-process-content h3 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
  }

  .work-process-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
  }


  .work-process-card.reveal {
    transform: none;
    opacity: 1;
  }

  /* =========================================================
   MOBILE — WORKING TOGETHER
   ========================================================= */

  .work-together {
    padding: 80px 0 90px;
    background: #ffffff;
  }

  .work-together-layout {
    display: block;
  }

  .work-together-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 45px;
  }

  .work-together-content .home-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .work-together-content h2 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 24px;
    color: #164b7d;
  }

  .work-together-content .work-together-lead {
    font-size: 16px;
    line-height: 1.65;
    color: #164b7d;
    font-weight: 500;
    margin: 0 0 18px;
  }

  .work-together-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #60758b;
    margin: 0;
  }

  /* ---------------------------------------------------------
   INDIVIDUAL CARDS
   --------------------------------------------------------- */

  .work-together-points {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }


  .work-together-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    background: #f7f9fc;
    border: 1px solid #e1e8ef;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(15, 55, 90, 0.06);
  }

  .work-together-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #164b7d;
    color: #ffffff;
    border-radius: 50%;
    font-size: 15px;
  }

  .work-together-icon i {
    line-height: 1;
  }

  .work-together-point>div {
    flex: 1;
    min-width: 0;
  }

  .work-together-point h3 {
    margin: 1px 0 7px;
    font-size: 17px;
    line-height: 1.3;
    color: #164b7d;
  }

  .work-together-point p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #60758b;
  }

  .work-together-point {
    border-top: 1px solid #e1e8ef;
  }

  .work-together-point:last-child {
    border-bottom: 1px solid #e1e8ef;
  }

  .work-together-point.reveal,
  .work-together-points.reveal {
    transform: none;
  }

  /* =========================================================
   BEYOND LAUNCH
   ========================================================= */

  .work-support {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #1f5688;
    color: #ffffff;
  }

  .work-support::before,
  .work-support::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
  }

  .work-support::before {
    width: 360px;
    height: 360px;
    top: -180px;
    right: -100px;
  }

  .work-support::after {
    width: 280px;
    height: 280px;
    bottom: -180px;
    left: -100px;
  }


  .work-support-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
  }

  .work-support-feature {
    padding-top: 8px;
  }

  .work-support-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: #ffffff;
    font-size: 21px;
  }

  .work-support-feature-label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .work-support-feature h3 {
    max-width: 420px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
  }

  .work-support-feature p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.6;
  }

  .work-support-content {
    max-width: 620px;
  }

  .work-support-content .home-eyebrow-light {
    color: rgba(255, 255, 255, 0.7);
  }

  .work-support-content h2 {
    margin: 14px 0 22px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
  }

  .work-support-content>p {
    max-width: 580px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.65;
  }


  .work-support-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .work-support-service {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    transition:
      background 0.25s ease,
      transform 0.25s ease,
      border-color 0.25s ease;
  }

  .work-support-service:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateX(4px);
  }

  .work-support-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #1f5688;
    font-size: 16px;
  }

  .work-support-service h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
  }

  .work-support-service p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
  }


  .work-support-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 21px;
    min-height: 46px;
    border-radius: 7px;
    background: #ffffff !important;
    color: #174b7d !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition:
      background 0.25s ease,
      transform 0.25s ease;
  }

  .work-support-link i {
    display: inline-block !important;
    color: #174b7d !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.25s ease;
  }

  .work-support-link:hover {
    background: #eef4f9 !important;
    color: #174b7d !important;
    transform: translateY(-2px);
  }

  .work-support-link:hover i {
    transform: translateX(4px);
  }


  .work-support {
    padding: 70px 0;
  }

  .work-support-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .work-support-feature {
    padding-top: 0;
  }

  .work-support-feature-icon {
    margin-bottom: 22px;
  }

  .work-support-feature h3 {
    max-width: 340px;
    margin-bottom: 14px;
    font-size: 36px;
    line-height: 1.1;
  }

  .work-support-feature p {
    font-size: 16px;
  }

  .work-support-content h2 {
    margin-top: 12px;
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.12;
  }

  .work-support-content>p {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.55;
  }

  .work-support-services {
    gap: 10px;
  }

  .work-support-service {
    padding: 15px 16px;
    gap: 14px;
  }

  .work-support-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .work-support-service h4 {
    font-size: 16px;
  }

  .work-support-service p {
    font-size: 13px;
  }

  .work-support-link {
    margin-top: 24px;
  }

  /* =========================================================
   MOBILE — WHAT WE OFFER HERO
   ========================================================= */

  .services-hero {
    min-height: 680px;
    height: auto;
    position: relative;
  }

  .services-hero-container {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .services-hero-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }


  .services-hero .home-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
  }


  .services-hero .page-hero-title {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 20px;
  }


  .services-hero-content p {
    max-width: 320px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }


  .services-hero-scroll {
    display: none;
  }


  .services-intro {
    padding: 80px 0;
  }

  .services-intro-heading {
    margin-bottom: 45px;
    text-align: center;
  }

  .services-intro-heading h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .services-intro-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .services-intro-statement {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 28px 24px;
    background: #eef4f9;
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
  }

  .services-intro-statement p {
    margin: 0;
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
  }

  .services-intro-copy {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .services-intro-copy p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .services-intro-copy p:last-child {
    margin-bottom: 0;
  }

  .services-intro-lead {
    color: var(--color-primary);
    font-size: 16px !important;
    line-height: 1.65 !important;
    font-weight: 500;
  }


  .services-core {
    padding: 80px 0;
  }

  .services-core-heading {
    margin-bottom: 45px;
    text-align: center;
  }

  .services-core-heading h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .services-core-heading p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
  }

  .services-core-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .services-core-card {
    width: 100%;
    max-width: 340px;
    min-height: 0;
    margin: 0 auto;
    padding: 24px 22px;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(15, 55, 90, 0.12);
  }

  .services-core-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }

  .services-core-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
  }

  .services-core-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--color-primary);
    font-size: 18px;
  }

  .services-core-content {
    width: 100%;
  }

  .services-core-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .services-core-content h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
  }

  .services-core-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.65;
  }

  /* =========================================================
   MOBILE — CONNECTED SOLUTIONS
   ========================================================= */

  .services-connected {
    padding: 90px 0;
    background: var(--color-primary);
    color: #ffffff;
  }

  .services-connected-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .services-connected-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .services-connected-content .home-eyebrow-light {
    margin-bottom: 20px;
  }

  .services-connected-content h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.15;
  }

  .services-connected-content>p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
  }

  .services-connected-points {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .services-connected-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 30px 24px !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 15px;
  }

  .services-connected-point:first-child,
  .services-connected-point:last-child {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .services-connected-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-primary);
    font-size: 15px;
  }

  .services-connected-point-content {
    flex: 1;
    min-width: 0;
  }

  .services-connected-point-content h3 {
    margin: 1px 0 8px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.3;
  }

  .services-connected-point-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
  }

  /* =========================================================
   MOBILE — CONTACT HERO
   ========================================================= */

  .contact-hero {
    min-height: 680px;
    height: auto;
    position: relative;
  }

  .contact-hero-container {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-hero-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }

  .contact-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
  }

  .contact-hero .page-hero-title {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 20px;
  }

  .contact-hero-content p {
    max-width: 320px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-hero-scroll {
    display: none;
  }

  .contact-main {
    padding: 80px 0;
  }

  .contact-heading {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 50px;
  }

  .contact-heading .home-eyebrow {
    margin-bottom: 18px;
  }

  .contact-heading h2 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.15;
  }

  .contact-heading>p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .contact-details {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 35px 25px;
    border-radius: 18px;
  }

  .contact-details-content {
    width: 100%;
  }

  .contact-details-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 15px;
  }

  .contact-details h3 {
    margin: 0 0 15px;
    font-size: 25px;
    line-height: 1.2;
  }

  .contact-details-content>p {
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-detail-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .contact-detail-item>div {
    min-width: 0;
  }

  .contact-detail-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .contact-detail-item a {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    word-break: break-word;
  }

  .contact-detail-item small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.5;
  }

  .contact-details-footer {
    margin-top: 35px;
    padding-top: 25px;
  }

  .contact-details-footer span {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 700;
  }

  .contact-details-footer p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .contact-form-wrapper {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 30px 24px;
    border-radius: 18px;
  }

  .contact-form-heading {
    margin-bottom: 28px;
  }

  .contact-form-heading>span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .contact-form-heading h3 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.2;
  }

  .contact-form-heading p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-form .row {
    --bs-gutter-y: 20px;
  }

  .contact-form .form-label {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .contact-form .form-control {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
  }

  .contact-form textarea.form-control {
    min-height: 150px;
  }

  .contact-submit {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
  }

  .contact-reassurance {
    width: 100%;
    max-width: 340px;
    margin: 45px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .contact-reassurance-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    text-align: center;
  }

  .contact-reassurance-divider {
    width: 40px;
    height: 1px;
  }

  .contact-details-bubbles {
    overflow: hidden;
  }

}