/* ========================================
   CSS VARIABLES — PSYCH SERENE BRAND
======================================== */
:root {
  --teal:      #1B3A4B;
  --teal-dark: #0f2535;
  --green:     #4A6741;
  --green-dark:#2d4a2a;
  --leaf:      #FDF5E6;
  --leaf-rgb:  253, 245, 230;
  --ivory:     #F5F3EE;
  --mist:      #E8EDE2;
  --muted:     #7A9E8E;
  --charcoal:  #2C2C2C;
  --text:      #556670;
  --white:     #ffffff;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========================================
   TYPOGRAPHY HELPERS
======================================== */
.serif { font-family: 'Playfair Display', serif; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--teal);
  line-height: 1.22;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  max-width: 560px;
}

/* ========================================
   BUTTONS
======================================== */
.btn-ps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.btn-ps-primary {
  background: var(--teal);
  color: var(--leaf);
}
.btn-ps-primary:hover {
  background: var(--green);
  color: var(--leaf);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(27,58,75,.25);
}
.btn-ps-outline {
  background: teal;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-ps-outline:hover {
  background: var(--teal);
  color: var(--leaf);
  transform: translateY(-2px);
}
.btn-ps-light {
  background: transparent;
  color: var(--leaf);
  border: 1.5px solid rgba(var(--leaf-rgb),.35);
}
.btn-ps-light:hover {
  background: rgba(var(--leaf-rgb),.12);
  border-color: var(--leaf);
  color: var(--leaf);
}
.btn-ps-green {
  background: var(--green);
  color: var(--leaf);
}
.btn-ps-green:hover {
  background: var(--teal);
  color: var(--leaf);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(74,103,65,.3);
}

/* ---Hero Section image--- */

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

/* Hero is above the fold — animate on load without waiting for JS */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
#hero .fade-up {
  opacity: 0;
  animation: heroFadeIn .7s ease forwards;
}
#hero .fade-up.delay-1 { animation-delay: .1s; }
#hero .fade-up.delay-2 { animation-delay: .2s; }
#hero .fade-up.delay-3 { animation-delay: .3s; }

/* ========================================
   NAVBAR
======================================== */
/* ===================== NAVBAR ===================== */

#mainNav {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 0;
  transition: all .3s ease;
}

#mainNav .container {
  background: rgba(18, 48, 60, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(232, 223, 204, .12);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  transition: all .3s ease;
}

#mainNav.scrolled {
  top: 8px;
}

#mainNav.scrolled .container {
  padding: 10px 16px;
  background: rgba(18, 48, 60, .96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .24);
}

/* ===================== LOGO ===================== */

.navbar-brand {
  margin-right: 0;
  padding: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all .3s ease;
}

#mainNav.scrolled .nav-brand img {
  height: 46px;
}

/* ===================== NAV LINKS ===================== */

.navbar-nav {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(232, 223, 204, .08);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

.navbar-nav .nav-link {
  position: relative;
  color: rgba(var(--leaf-rgb), .72) !important;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: .035em;
  padding: 9px 16px !important;
  border-radius: 999px;
  transition: all .25s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--leaf) !important;
  background: rgba(255, 255, 255, .07);
}

.navbar-nav .nav-link.active {
  background: var(--leaf);
  color: var(--teal) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

/* ===================== RIGHT BUTTONS ===================== */

#mainNav .d-flex .nav-link:not(.nav-book) {
  color: rgba(var(--leaf-rgb), .68) !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 999px;
  transition: all .25s ease;
}

#mainNav .d-flex .nav-link:not(.nav-book):hover {
  color: var(--leaf) !important;
  background: rgba(255, 255, 255, .07);
}

.nav-book {
  background: linear-gradient(135deg, var(--green), #7fa36a);
  color: var(--leaf) !important;
  border-radius: 999px;
  padding: 10px 22px !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
  transition: all .25s ease !important;
}

.nav-book:hover {
  transform: translateY(-2px);
  background: var(--leaf) !important;
  color: var(--teal) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
}

/* ===================== TOGGLER ===================== */

.navbar-toggler {
  border: 1px solid rgba(var(--leaf-rgb), .25);
  border-radius: 12px;
  padding: 7px 10px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(.92) sepia(.4) saturate(1.5) hue-rotate(20deg);
}

/* ===================== MOBILE ===================== */

@media (max-width: 991px) {

  #mainNav {
    top: 10px;
    padding: 0 10px;
  }

  #mainNav .container {
    border-radius: 24px;
    padding: 12px 16px;
  }

  .nav-brand img {
    height: 42px;
  }

  .navbar-collapse {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(232, 223, 204, .12);
  }

  .navbar-nav {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    gap: 6px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 12px 14px !important;
    border-radius: 14px;
  }

  .navbar-nav .nav-link.active {
    background: rgba(232, 223, 204, .95);
  }

  #mainNav .d-flex {
    margin-top: 14px;
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
  }

  #mainNav .d-flex .nav-link,
  .nav-book {
    width: 100%;
    text-align: center;
  }

  .nav-book {
    padding: 12px 18px !important;
  }
}

/* ========================================
   HERO SECTION
======================================== */
/* ========================================
   HERO SECTION
======================================== */

#hero {
  min-height: 100vh;
  background: url('../imgs/home.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  z-index: 1;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 18, 14, 0.90) 0%,
      rgba(8, 18, 14, 0.72) 45%,
      rgba(8, 18, 14, 0.42) 100%
    );
  z-index: -1;
}

#hero > .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #8fb59f;
  border-radius: 50%;
}

/* Left Text */

.hero-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 6vw, 76px);
  color: #fff;
  font-weight: 600;
  letter-spacing: .055em;
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 0 10px 35px rgba(0,0,0,.35);
}

.hero-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 28px;
}

.hero-para {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.84);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 38px;
}

/* Buttons */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-ps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-ps-primary {
  background: #0f5c7a;
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 92, 122, .34);
}

.btn-ps-primary:hover {
  background: #0b4860;
  color: #fff;
  transform: translateY(-2px);
}

.btn-ps-outline {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.btn-ps-outline:hover {
  background: rgba(255,255,255,.16);
  color: #fff;
  transform: translateY(-2px);
}

/* Right Premium Panel */

.hero-panel {
  background: rgba(16, 24, 20, 0.72);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  padding: 48px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-panel-line {
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,.55);
}

.hero-panel-mini {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  font-weight: 600;
}

.hero-panel-heading {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}

.hero-panel-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
  margin-bottom: 38px;
  font-weight: 300;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-stat-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 24px 18px;
  transition: .3s ease;
}

.hero-stat-box:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.06);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.56);
  line-height: 1.6;
}

/* Animation */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .75s ease forwards;
}

.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .48s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 991px) {
  #hero {
    text-align: center;
    padding: 130px 0 80px;
  }

  #hero::before {
    background: rgba(8, 18, 14, 0.78);
  }

  .hero-para {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-panel {
    margin-top: 40px;
    padding: 36px;
  }

  .hero-panel-top {
    justify-content: center;
  }

  .hero-panel-heading {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .hero-logo {
    font-size: 42px;
  }

  .hero-panel {
    padding: 28px;
  }

  .hero-panel-heading {
    font-size: 28px;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .btn-ps {
    width: 100%;
  }
}
/* ========================================
   INTRODUCTION
======================================== */
/* ========================================
   INTRODUCTION
======================================== */

#intro {
  padding: 110px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

#intro::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(82, 120, 84, 0.08);
  border-radius: 50%;
  top: -160px;
  right: -140px;
}

#intro::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(20, 58, 73, 0.06);
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
}

#intro .container {
  position: relative;
  z-index: 2;
}

.intro-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 58, 73, 0.14);
}

.intro-img-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}

.intro-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.intro-title {
  margin-bottom: 22px;
  max-width: 620px;
}

.intro-text {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
  margin: 0 0 34px;
  max-width: 620px;
}

/* White background button style */
.btn-ps-white {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(20, 58, 73, 0.14);
  box-shadow: 0 14px 34px rgba(20, 58, 73, 0.10);
}

.btn-ps-white:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Make all outline buttons white */
.btn-ps-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(20, 58, 73, 0.14);
  box-shadow: 0 14px 34px rgba(20, 58, 73, 0.10);
}

.btn-ps-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
  #intro {
    padding: 85px 0;
  }

  .intro-img {
    height: 420px;
  }

  .intro-title,
  .intro-text {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  #intro {
    padding: 70px 0;
  }

  .intro-img {
    height: 340px;
  }

  .intro-img-wrap {
    border-radius: 22px;
  }
}

/* ========================================
   WHY CHOOSE
======================================== */
/* ========================================
   WHY CHOOSE US
======================================== */

#why {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(82, 120, 84, 0.08);
  border-radius: 50%;
  top: -220px;
  left: -180px;
}

#why::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(18, 48, 60, 0.07);
  border-radius: 50%;
  right: -150px;
  bottom: -160px;
}

#why .container {
  position: relative;
  z-index: 2;
}

.why-card {
  background: #fff;
  border: 1px solid rgba(18, 48, 60, 0.08);
  border-radius: 24px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(18, 48, 60, 0.08);
  transition: all 0.35s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(82, 120, 84, 0.11), rgba(18, 48, 60, 0.04));
  opacity: 0;
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(82, 120, 84, 0.28);
  box-shadow: 0 26px 65px rgba(18, 48, 60, 0.13);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon,
.why-card h3,
.why-card p {
  position: relative;
  z-index: 2;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(82, 120, 84, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #why {
    padding: 85px 0;
  }
}

@media (max-width: 575px) {
  #why {
    padding: 70px 0;
  }

  .why-card {
    padding: 30px 24px;
  }
}


/* --- how it works --- */


/* ========================================
   THERAPY PROCESS
======================================== */

#therapy-process {
  padding: 110px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

#therapy-process::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(82, 120, 84, 0.08);
  top: -220px;
  right: -180px;
}

#therapy-process::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(18, 48, 60, 0.06);
  bottom: -160px;
  left: -120px;
}

#therapy-process .container {
  position: relative;
  z-index: 2;
}

.therapy-process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;
  top: 72px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(82, 120, 84, 0.15),
    rgba(82, 120, 84, 0.4),
    rgba(82, 120, 84, 0.15)
  );
  z-index: 1;
}

.process-card {
  background: #fff;
  border-radius: 26px;
  padding: 38px 28px;
  border: 1px solid rgba(18, 48, 60, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 2;
  height: 100%;
  box-shadow: 0 20px 55px rgba(18, 48, 60, 0.08);
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(18, 48, 60, 0.14);
  border-color: rgba(82, 120, 84, 0.24);
}

.process-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.3rem;
  font-weight: 700;
  color: rgba(18, 48, 60, 0.06);
  line-height: 1;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(82, 120, 84, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

.process-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.process-card p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  #therapy-process {
    padding: 85px 0;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 575px) {
  #therapy-process {
    padding: 70px 0;
  }

  .process-card {
    padding: 32px 24px;
  }
}

/* ========================================
   TRUST BAR
======================================== */
#trust {
  background: var(--mist);
  padding: 38px 0;
  border-bottom: 1px solid #d2dac5;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon-box {
  width: 46px; height: 46px;
  background: var(--teal);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}
.trust-item:hover .trust-icon-box { transform: scale(1.08); }
.trust-icon-box i { color: var(--leaf); font-size: 16px; }
.trust-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 2px;
}
.trust-sub {
  font-size: 11px;
  color: var(--text);
  margin: 0;
}

/* ========================================
   ABOUT SECTION
======================================== */
/* ========================================
   ABOUT PAGE
======================================== */

#about-me-page.about-page {
  position: relative;
  padding: clamp(75px, 8vw, 115px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(var(--leaf-rgb), .16), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(27, 58, 75, .08), transparent 30%),
    var(--ivory);
  overflow: hidden;
}

.about-bg-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: .55;
  filter: blur(2px);
}

.about-bg-orb-1 {
  width: 220px;
  height: 220px;
  left: -90px;
  top: 120px;
  background: rgba(var(--leaf-rgb), .25);
}

.about-bg-orb-2 {
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: 80px;
  background: rgba(27, 58, 75, .08);
}

/* Image Card */
.about-media-card {
  position: relative;
  margin: 0;
  padding: 14px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(27, 58, 75, .09);
  box-shadow: 0 28px 70px rgba(27, 58, 75, .12);
}

.about-media-card::before {
  content: "";
  position: absolute;
  inset: 28px -14px -14px 28px;
  border-radius: 34px;
  border: 1px solid rgba(var(--leaf-rgb), .5);
  z-index: 0;
}

.about-portrait,
.about-portrait-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(420px, 52vw, 620px);
  border-radius: 26px;
  overflow: hidden;
}

.about-portrait {
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(145deg, var(--mist), var(--muted));
  color: rgba(27, 58, 75, .45);
}

.about-portrait-placeholder i {
  font-size: 62px;
}

.about-portrait-placeholder span {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-image-badge {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(27, 58, 75, .92);
  color: var(--leaf);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(27, 58, 75, .25);
}

.about-image-badge span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

.about-image-badge strong {
  display: block;
  margin-top: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}

/* Content */
.about-content {
  max-width: 700px;
}

.about-title {
  margin: 10px 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--teal);
  letter-spacing: -.03em;
}

.about-title em {
  color: var(--green);
  font-style: italic;
}

.about-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--leaf-rgb), .35);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}

.about-lead {
  max-width: 640px;
  margin: 0 0 18px;
  color: var(--charcoal);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 400;
  line-height: 1.45;
}

.about-text {
  max-width: 670px;
  margin: 0 0 28px;
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

/* Points */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(27, 58, 75, .08);
  box-shadow: 0 10px 28px rgba(27, 58, 75, .045);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
}

.about-point i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(var(--leaf-rgb), .45);
  color: var(--teal);
  font-size: 14px;
}

/* Buttons */
.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Info Cards */
.about-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(55px, 7vw, 85px);
}

.about-info-card {
  position: relative;
  padding: 30px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(27, 58, 75, .08);
  box-shadow: 0 18px 48px rgba(27, 58, 75, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.about-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--leaf-rgb), .65);
  box-shadow: 0 24px 60px rgba(27, 58, 75, .11);
}

.about-info-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--teal);
  color: var(--leaf);
  font-size: 18px;
  box-shadow: 0 14px 32px rgba(27, 58, 75, .18);
}

.about-info-card h2 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--teal);
}

.about-info-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 991.98px) {
  #about-me-page.about-page {
    padding: 80px 0;
  }

  .about-content {
    max-width: 100%;
  }

  .about-media-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .about-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .about-points {
    grid-template-columns: 1fr;
  }

  .about-actions {
    align-items: stretch;
  }

  .about-actions .btn-ps {
    width: 100%;
    justify-content: center;
  }

  .about-image-badge {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .about-info-card {
    padding: 26px 22px;
  }
}

/* ========================================
   SERVICES SECTION
======================================== */
/* ========================================
   HOME SERVICES SECTION
======================================== */

.home-services {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(87, 116, 64, .22), transparent 34%),
    linear-gradient(135deg, rgba(18, 48, 60, .96), rgba(18, 48, 60, .90));
  overflow: hidden;
}

.home-services::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 360px;
  height: 360px;
  background: rgba(87, 116, 64, .22);
  border-radius: 50%;
  filter: blur(4px);
}

.home-services::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.home-services .container {
  position: relative;
  z-index: 2;
}

.home-services .section-eyebrow {
  color: rgba(255, 255, 255, .72);
}

.home-services .section-title {
  color: #fff;
}

.home-services .section-title em {
  color: #8fa86b;
}

.home-services .section-sub {
  max-width: 720px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
}

.svc-card {
  position: relative;
  padding: 34px 30px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
  transition: all .35s ease;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), transparent 48%);
  opacity: 0;
  transition: .35s ease;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(143, 168, 107, .55);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6f874d, #4f6738);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.svc-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.svc-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.8;
}

.svc-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease;
}

.svc-link i {
  font-size: 1rem;
  transition: .3s ease;
}

.svc-link:hover {
  color: #b7ca93;
}

.svc-link:hover i {
  transform: translateX(4px);
}

.btn-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: #12303c;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
  transition: .3s ease;
}

.btn-services:hover {
  background: #8fa86b;
  color: #fff;
  transform: translateY(-3px);
}

.btn-services i {
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 991px) {
  .home-services {
    padding: 90px 0;
  }

  .svc-card {
    padding: 30px 26px;
  }
}

@media (max-width: 575px) {
  .home-services {
    padding: 75px 0;
  }

  .svc-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .svc-icon {
    width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .svc-card h3 {
    font-size: 1.05rem;
  }

  .svc-card p {
    font-size: .92rem;
  }
}
/* ========================================
   HOW IT WORKS
======================================== */
#how {
  padding: 110px 0;
  background: var(--mist);
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid #dce6d0;
  height: 100%;
  transition: all .3s;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(27,58,75,.1);
  border-color: var(--muted);
}
.step-num {
  width: 64px; height: 64px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--leaf);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(27,58,75,.2);
}
.step-card h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
  color: var(--muted);
  font-size: 22px;
}

/* ========================================
   TESTIMONIALS
======================================== */
#testimonials {
  padding: 110px 0;
  background: var(--ivory);
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all .3s;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: var(--mist);
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(27,58,75,.09);
  border-color: #FDF5E6;
}
.testi-stars { color: #b8943a; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--mist);
  padding-top: 18px;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 500; color: var(--teal); }
.testi-city { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ========================================
   BLOG SECTION
======================================== */
#blog {
  padding: 110px 0;
  background: var(--mist);
}
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all .35s;
  border: 1px solid transparent;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(27,58,75,.12);
  border-color: #FDF5E6;
}
.blog-thumb {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-thumb-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.blog-thumb-1 { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.blog-thumb-2 { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.blog-thumb-3 { background: linear-gradient(135deg, var(--muted), var(--teal)); }
.blog-thumb-label-light { color: var(--leaf); }
.blog-body { padding: 24px; }
.blog-pill {
  display: inline-block;
  background: var(--mist);
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--teal);
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 500;
}
.blog-body p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}
.blog-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-read-more {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ========================================
   CTA SECTION
======================================== */
#cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  background: rgba(var(--leaf-rgb),.08);
  border-radius: 50%;
}
#cta::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 260px; height: 260px;
  background: rgba(var(--leaf-rgb),.06);
  border-radius: 50%;
}
#cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
#cta h2 em { font-style: italic; color: var(--leaf); }
#cta p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(var(--leaf-rgb),.75);
  max-width: 520px;
  margin: 0 auto 38px;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}
#cta .cta-btn-wrap { position: relative; z-index: 1; }
#cta .btn-ps-primary {
  background: var(--teal);
  color: var(--leaf);
}
#cta .btn-ps-primary:hover {
  background: var(--leaf);
  color: var(--teal);
}

/* ========================================
   FOOTER
======================================== */
/* ========================================
   FOOTER
======================================== */

footer,
.site-footer {
  position: relative;
  overflow: hidden;
  background: rgba(18, 48, 60, .88);
  backdrop-filter: blur(8px);
  padding: 80px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* subtle overlay */
footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.05), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.04), transparent 28%);
  pointer-events: none;
}

footer .container,
.site-footer .container {
  position: relative;
  z-index: 2;
}

/* ========================================
   BRAND
======================================== */

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .05em;
  line-height: 1.1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.footer-brand-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}

.footer-about-text {
  max-width: 340px;
  margin: 0;
  font-size: .95rem;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(255,255,255,.74);
}

/* ========================================
   SOCIALS
======================================== */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .3s ease;
}

.social-btn:hover {
  background: #ffffff;
  color: rgba(18, 48, 60, .88);
  transform: translateY(-3px);
  border-color: #ffffff;
}

/* ========================================
   HEADINGS
======================================== */

.footer-col-heading {
  position: relative;
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  padding-bottom: 12px;
}

.footer-col-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 50px;
  background: rgba(255,255,255,.35);
}

/* ========================================
   LINKS
======================================== */

.footer-links,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  transition: all .28s ease;
}

.footer-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transition: all .28s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-links a:hover::before {
  background: #ffffff;
}

/* ========================================
   CONTACT
======================================== */

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
}

.footer-contact-row i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #ffffff;
  font-size: .85rem;
}

.footer-contact-row span,
.footer-contact-row a {
  font-size: .92rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .28s ease;
}

.footer-contact-row a:hover {
  color: #ffffff;
}

.footer-contact-row small {
  display: block;
  margin-top: 2px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ========================================
   DIVIDER
======================================== */

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 46px 0 22px;
}

/* ========================================
   BOTTOM
======================================== */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-text {
  margin: 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: .8rem;
  text-decoration: none;
  color: rgba(255,255,255,.5);
  transition: color .28s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ========================================
   ACCESSIBILITY
======================================== */

footer a:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid rgba(255,255,255,.6);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991.98px) {

  footer,
  .site-footer {
    padding: 65px 0 22px;
  }

  .footer-about-text {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {

  footer,
  .site-footer {
    padding: 56px 0 20px;
  }

  .footer-brand-name {
    font-size: 1.5rem;
  }

  .footer-about-text,
  .footer-links a,
  .footer-contact-row span,
  .footer-contact-row a {
    font-size: .88rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    gap: 14px;
    flex-wrap: wrap;
  }
}
/* ========================================
   WHATSAPP FLOAT BUTTON
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(37,211,102,.5);
}
.whatsapp-float i { color: var(--white); font-size: 24px; }

/* ========================================
   RESPONSIVE TWEAKS
======================================== */
@media (max-width: 991px) {
  .hero-card { margin-top: 40px; }
  .about-float { right: 10px; }
  .step-connector { display: none; }
}
@media (max-width: 767px) {
  #hero { padding-top: 100px; }
  .hero-badge { font-size: 10px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-label { font-size: 9px; }
  .about-float { position: static; margin-top: 16px; display: inline-block; }
  .trust-item { flex-direction: column; text-align: center; }
  .trust-icon-box { margin: 0 auto; }
  .footer-col-brand {
    margin-bottom: 8px;
  }
  footer .footer-col:nth-child(2),
  footer .footer-col:nth-child(3) {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  #hero .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .hero-orb-3,
  .hero-badge-dot,
  .hero-scroll-line {
    animation: none;
  }
}
