/*
Theme Name: RahaSukh
Theme URI: https://rahasukh.ae
Author: RahaSukh Team
Author URI: https://rahasukh.ae
Description: Premium, professional, pixel-perfect bilingual WordPress theme for RahaSukh Home Healthcare.
Version: 1.0.0
Text Domain: rahasukh
Domain Path: /languages
*/

/* ============ GLOBAL DESIGN SYSTEM & TOKENS ============ */
:root {
  --coral: #F15830;
  --coral-soft: #F58A6C;
  --charcoal: #595A5C;
  --charcoal-deep: #3E3F41;
  --ink: #2E2F31;
  --ivory: #FBF8F5;
  --white: #FFFFFF;
  --whisper: #F5F4F2;
  --peach: #FDEEE8;
  --hairline: rgba(89, 90, 92, .14);
  --hairline-light: rgba(255, 255, 255, .14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', system-ui, sans-serif;
  --ar-serif: 'Amiri', serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .9s;
}

html[dir="rtl"] body {
  --serif: var(--ar-serif)
}

html[dir="rtl"] .serif,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: var(--ar-serif)
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img,
svg {
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink)
}

.wrap {
  width: min(1200px, 92vw);
  margin-inline: auto
}

.micro {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coral)
}

::selection {
  background: var(--peach);
  color: var(--ink)
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px
}

/* ============ AMBIENT BACKGROUND ============ */
.mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 18% 20%, var(--peach) 0%, transparent 60%),
    radial-gradient(50% 45% at 85% 70%, #FDF3EC 0%, transparent 65%),
    linear-gradient(160deg, var(--ivory), var(--white) 60%, var(--ivory));
  animation: meshShift 26s ease-in-out infinite alternate
}

@keyframes meshShift {
  from {
    transform: translate3d(0, 0, 0) scale(1)
  }
  to {
    transform: translate3d(-2%, 1.5%, 0) scale(1.04)
  }
}

.drift {
  position: fixed;
  z-index: -1;
  opacity: .05;
  filter: blur(2px);
  color: var(--charcoal);
  pointer-events: none
}

.drift svg {
  width: 100%;
  height: 100%
}

.d1 {
  width: 70px;
  top: 16%;
  left: 6%;
  animation: floatY 16s ease-in-out infinite
}

.d2 {
  width: 56px;
  top: 58%;
  right: 7%;
  animation: floatY 20s ease-in-out 3s infinite
}

.d3 {
  width: 64px;
  top: 78%;
  left: 12%;
  animation: floatY 14s ease-in-out 6s infinite
}

.d4 {
  width: 50px;
  top: 34%;
  right: 16%;
  animation: floatY 18s ease-in-out 1.5s infinite
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-26px)
  }
}

/* ============ PULSE PROGRESS LINE ============ */
.pulse-rail {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 2px;
  z-index: 60;
  pointer-events: none
}

.pulse-rail .track {
  position: absolute;
  inset: 0;
  background: rgba(241, 88, 48, .10)
}

.pulse-rail .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(var(--coral-soft), var(--coral));
  transition: height .15s linear
}

.pulse-rail .blip {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px rgba(241, 88, 48, .7)
}

html[dir="rtl"] .pulse-rail {
  left: auto;
  right: 14px
}

@media(max-width:820px) {
  .pulse-rail {
    display: none
  }
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
  transition: transform 1s var(--ease)
}

#preloader.away {
  transform: translateY(-100%)
}

#preloader .mark {
  width: 120px
}

#preloader .hands-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1.2s var(--ease) forwards
}

#preloader .roof-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw 1s .3s var(--ease) forwards
}

#preloader .heart-fill {
  opacity: 0;
  animation: heartIn .7s 1.1s var(--ease) forwards;
  transform-origin: center
}

@keyframes draw {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes heartIn {
  from {
    opacity: 0;
    transform: scale(.6)
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}

#preloader .wordmark {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: .14em;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp .8s 1.3s forwards
}

#preloader .skip {
  position: absolute;
  bottom: 2rem;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: .55
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }
  to {
    opacity: 1;
    transform: none
  }
}

/* ============ UTILITY BAR ============ */
.utility {
  background: var(--charcoal-deep);
  color: rgba(255, 255, 255, .82);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400
}

.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  gap: 1rem
}

.utility a {
  transition: color .3s
}

.utility a:hover {
  color: var(--coral-soft)
}

.utility .right {
  display: flex;
  gap: 1.6rem;
  align-items: center
}

.lang-toggle {
  color: #fff;
  font-family: var(--ar-serif);
  font-size: .9rem;
  letter-spacing: 0;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}

.lang-toggle:hover {
  border-color: var(--coral-soft)
}

@media(max-width:680px) {
  .utility .left span:nth-child(2) {
    display: none
  }
}

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .5s, box-shadow .5s, border-color .5s;
  border-bottom: 1px solid transparent;
  background: transparent
}

nav.scrolled {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--hairline)
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.4rem
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  transition: transform .5s var(--ease);
  transform-origin: left center
}

nav.scrolled .brand {
  transform: scale(.85)
}

.brand svg {
  width: 44px
}

.brand .name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: .05em
}

.brand .name em {
  color: var(--coral);
  font-style: normal
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: .3rem 0
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease)
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

.nav-cta-group {
  display: flex;
  gap: .8rem;
  align-items: center
}

.nav-call {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: .5s var(--ease);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .7rem 1.3rem;
  border: 1px solid var(--charcoal);
  border-radius: 99px;
  color: var(--charcoal)
}

nav.scrolled .nav-call {
  opacity: 1;
  pointer-events: auto;
  transform: none
}

.nav-call:hover {
  border-color: var(--coral);
  color: var(--coral)
}

@media(max-width:1020px) {
  .nav-links {
    display: none
  }
  .nav-call {
    display: none
  }
}

/* buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.05rem 2.1rem;
  border-radius: 99px;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s, box-shadow .45s;
  will-change: transform
}

.btn .lab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .55rem
}

.btn-fill {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(241, 88, 48, .55)
}

.btn-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .5s var(--ease)
}

.btn-fill:hover::before {
  transform: translateY(0)
}

.btn-fill:hover {
  box-shadow: 0 14px 34px -12px rgba(46, 47, 49, .5)
}

.btn-outline {
  border: 1px solid var(--charcoal);
  color: var(--charcoal)
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--coral);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .5s var(--ease)
}

.btn-outline:hover {
  color: #fff;
  border-color: var(--coral)
}

.btn-outline:hover::before {
  transform: translateY(0)
}

.btn-ghost {
  color: #fff;
  border: 1px solid transparent
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .4)
}

.btn .arr {
  transition: transform .4s var(--ease)
}

.btn:hover .arr {
  transform: translateX(5px)
}

html[dir="rtl"] .btn:hover .arr {
  transform: translateX(-5px) scaleX(-1)
}

html[dir="rtl"] .arr {
  transform: scaleX(-1)
}

.textlink {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: .25rem;
  transition: color .3s, border-color .3s
}

.textlink:hover {
  color: var(--coral);
  border-color: var(--coral)
}

/* ============ SUB HERO (PAGE BANNER) ============ */
.sub-hero {
  padding: 6rem 0 4rem;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.sub-hero .wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.sub-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.sub-hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.sub-hero p {
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}

/* ============ SECTION BASE ============ */
section {
  position: relative
}

.section-pad {
  padding: 7rem 0
}

.sec-head {
  margin-bottom: 3.5rem;
  max-width: 44rem
}

.sec-head .micro {
  display: block;
  margin-bottom: 1rem
}

.sec-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem)
}

.sec-head h2 em {
  color: var(--coral)
}

.reveal {
  opacity: 0;
  transform: translateY(36px)
}

.roofline {
  clip-path: polygon(0 3.2rem, 50% 0, 100% 3.2rem, 100% 100%, 0 100%)
}

/* ============ FOOTER & NEWSLETTER ============ */
footer {
  background: var(--white);
  border-top: 1px solid var(--hairline);
  padding: 5.5rem 0 3.5rem;
  margin-top: -1px
}

.f-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem
}

.f-brand svg {
  width: 52px;
  margin-bottom: 1.2rem
}

.f-brand .tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--coral);
  font-size: 1.2rem;
  margin-bottom: .8rem
}

.f-brand p {
  font-size: .8rem;
  color: var(--charcoal);
  max-width: 16rem;
  line-height: 1.65
}

footer h4 {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.6rem
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

footer ul a {
  font-size: .8rem;
  color: var(--charcoal);
  transition: color .3s
}

footer ul a:hover {
  color: var(--coral)
}

.newsletter {
  display: flex;
  border-bottom: 1px solid var(--charcoal);
  margin-top: 1rem;
  max-width: 16rem
}

.newsletter input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: .8rem;
  padding: .6rem 0;
  outline: none;
  color: var(--ink)
}

.newsletter button {
  color: var(--coral);
  font-size: 1.1rem;
  padding: 0 .4rem;
  transition: transform .3s
}

.newsletter button:hover {
  transform: translateX(4px)
}

.f-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .7rem;
  color: var(--charcoal);
  align-items: center
}

.f-bottom .links {
  display: flex;
  gap: 1.4rem
}

.f-bottom a:hover {
  color: var(--coral)
}

#footLogo .handL,
#footLogo .handR {
  transition: transform .7s var(--ease);
  transform-origin: center
}

.f-brand:hover #footLogo .handL {
  transform: rotate(4deg) translateX(1px)
}

.f-brand:hover #footLogo .handR {
  transform: rotate(-4deg) translateX(-1px)
}

@media(max-width:900px) {
  .f-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .f-grid {
    grid-template-columns: 1fr
  }
}

/* ============ PERSISTENT ============ */
.float-stack {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: center
}

html[dir="rtl"] .float-stack {
  right: auto;
  left: 1.6rem
}

.wa-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  color: #2BB741;
  box-shadow: 0 14px 30px -14px rgba(62, 63, 65, .4);
  transition: transform .3s
}

.wa-btn:hover {
  transform: translateY(-3px)
}

.wa-btn svg {
  width: 24px
}

.raha-orb {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--coral-soft), var(--coral) 70%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 18px 40px -14px rgba(241, 88, 48, .65);
  animation: breathe 8s ease-in-out infinite;
  position: relative
}

.raha-orb svg {
  width: 26px
}

.raha-orb .tip {
  position: absolute;
  right: calc(100% + .8rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  border-radius: 99px;
  white-space: nowrap;
  opacity: 0;
  animation: tipIn .6s 3.5s forwards
}

html[dir="rtl"] .raha-orb .tip {
  right: auto;
  left: calc(100% + .8rem)
}

@keyframes tipIn {
  to {
    opacity: 1
  }
}

.raha-panel {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 130;
  width: min(400px, calc(100vw - 2rem));
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: .5s var(--ease)
}

.raha-panel.open {
  transform: none;
  opacity: 1;
  pointer-events: auto
}

html[dir="rtl"] .raha-panel {
  right: auto;
  left: 1.6rem
}

.raha-panel .chat {
  max-width: none;
  background: rgba(255, 255, 255, .85)
}

.raha-panel .close {
  margin-inline-start: auto;
  color: var(--charcoal)
}

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--hairline);
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom))
}

.mobile-bar .row {
  display: flex;
  gap: .6rem
}

.mobile-bar a,
.mobile-bar button {
  flex: 1;
  text-align: center;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .85rem .4rem;
  border-radius: 12px
}

.mobile-bar .b1 {
  background: var(--coral);
  color: #fff
}

.mobile-bar .b2 {
  border: 1px solid var(--charcoal);
  color: var(--charcoal)
}

.mobile-bar .b3 {
  background: var(--peach);
  color: var(--coral)
}

@media(max-width:820px) {
  .mobile-bar {
    display: block
  }
  .float-stack {
    bottom: 5.4rem
  }
  .raha-panel {
    bottom: 5.4rem
  }
}

/* exit modal */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(46, 47, 49, .4);
  backdrop-filter: blur(6px)
}

.exit-modal.show {
  display: flex
}

.exit-card {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 26px;
  padding: 3rem;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .4);
  position: relative
}

.exit-card h3 {
  font-size: 1.9rem;
  margin-bottom: .8rem
}

.exit-card p {
  font-size: .85rem;
  margin-bottom: 1.6rem
}

.exit-card .x {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.2rem;
  color: var(--charcoal)
}

/* reduced motion */
@media(prefers-reduced-motion:reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
    scroll-behavior: auto !important
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important
  }
}


/* ============ HOMEPAGE SPECIFIC STYLES ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden
}

.hero-scene .sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--ivory) 0%, rgba(251, 248, 245, .6) 42%, transparent 70%), linear-gradient(200deg, #FDF0E7, #F9E4D6 40%, #F6D9C6)
}

.hero-scene .sun {
  position: absolute;
  right: 14%;
  top: 16%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 178, .9), rgba(253, 238, 232, 0) 70%);
  animation: sunGlow 12s ease-in-out infinite alternate
}

@keyframes sunGlow {
  from {
    opacity: .7;
    transform: scale(1)
  }
  to {
    opacity: 1;
    transform: scale(1.08)
  }
}

.hero-scene .window {
  position: absolute;
  right: 8%;
  top: 8%;
  bottom: 0;
  width: 38%;
  border-left: 1px solid rgba(89, 90, 92, .08)
}

.hero-scene .curtain {
  position: absolute;
  right: 6%;
  top: 0;
  width: 30%;
  height: 110%;
  opacity: .5
}

.hero-scene .curtain path {
  fill: rgba(255, 255, 255, .75)
}

.heart-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 138, 108, .35), rgba(253, 238, 232, .15) 55%, transparent 72%);
  filter: blur(30px);
  animation: breathe 8s ease-in-out infinite;
  pointer-events: none
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: .8
  }
  50% {
    transform: scale(1.12);
    opacity: 1
  }
}

.watermark {
  position: absolute;
  pointer-events: none;
  opacity: .04;
  color: var(--charcoal)
}

.hero .watermark {
  width: 820px;
  right: -160px;
  top: 4%
}

html[dir="rtl"] .hero .watermark {
  right: auto;
  left: -160px
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 6rem
}

.hero .heart-orb {
  left: 6%;
  top: 12%
}

.hero-eyebrow {
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .9rem
}

.hero-eyebrow .line {
  width: 44px;
  height: 1px;
  background: var(--coral)
}

.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.4rem);
  letter-spacing: -.01em
}

.hero h1 .rowmask {
  display: block;
  overflow: hidden
}

.hero h1 .row {
  display: block;
  transform: translateY(110%);
  animation: rowIn 1.1s var(--ease) forwards
}

.hero h1 .rowmask:nth-child(2) .row {
  animation-delay: .18s
}

@keyframes rowIn {
  to {
    transform: none
  }
}

.hero h1 em {
  font-style: italic;
  color: var(--ink);
  position: relative;
  white-space: nowrap
}

.hero h1 em .underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.08em;
  width: 100%;
  height: .32em;
  overflow: visible
}

.hero h1 em .underline path {
  stroke: var(--coral);
  stroke-width: 3.4;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 1s 1.15s var(--ease) forwards
}

.hero .sub {
  margin: 1.8rem 0 2.4rem;
  max-width: 34rem;
  font-size: 1.02rem;
  color: var(--charcoal);
  opacity: 0;
  animation: fadeUp .9s .7s var(--ease) forwards
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp .9s .95s var(--ease) forwards
}

.hero-ctas .textlink {
  margin-inline-start: .4rem
}

/* booking widget */
.booking {
  justify-self: end;
  align-self: end;
  width: min(340px, 100%);
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 30px 60px -30px rgba(62, 63, 65, .25);
  border-radius: 22px;
  padding: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s var(--ease) forwards
}

.booking h3 {
  font-size: 1.5rem;
  margin-bottom: .3rem
}

.booking p {
  font-size: .8rem;
  margin-bottom: 1.1rem;
  color: var(--charcoal)
}

.booking select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(255, 255, 255, .8);
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--charcoal);
  margin-bottom: .9rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23595A5C' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center
}

.booking .btn {
  width: 100%;
  justify-content: center;
  padding: .95rem
}

@media(max-width:1020px) {
  .hero .wrap {
    grid-template-columns: 1fr
  }
  .booking {
    justify-self: start;
    display: none
  }
}

/* trust ticker */
.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--hairline);
  background: rgba(251, 248, 245, .7);
  backdrop-filter: blur(8px);
  overflow: hidden;
  padding: .85rem 0
}

.ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap
}

.ticker:hover .ticker-track {
  animation-play-state: paused
}

.ticker-track span i {
  color: var(--coral);
  font-style: normal;
  margin-inline-start: 3.5rem
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}

.hand-arc {
  position: absolute;
  pointer-events: none
}

.hand-arc path {
  stroke: var(--coral);
  fill: none;
  stroke-width: 1;
  opacity: .5
}

/* RAHA AI SECTION */
.raha {
  background: linear-gradient(170deg, var(--peach), #FBF2EC 55%, var(--ivory));
  margin-top: -1px
}

.raha .heart-orb {
  right: 8%;
  top: 10%;
  width: 420px;
  height: 420px
}

.raha .wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: center
}

.chat {
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 26px;
  box-shadow: 0 40px 80px -40px rgba(62, 63, 65, .28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  width: 100%
}

.chat-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--hairline)
}

.chat-head .orb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--coral-soft), var(--coral));
  display: grid;
  place-items: center;
  animation: breathe 8s ease-in-out infinite
}

.chat-head .orb svg {
  width: 18px;
  color: #fff
}

.chat-head .who b {
  display: block;
  font-weight: 500;
  font-size: .85rem;
  color: var(--ink)
}

.chat-head .who span {
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral)
}

.chat-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-height: 250px;
  max-height: 340px;
  overflow-y: auto;
  scroll-behavior: smooth
}

.msg {
  max-width: 88%;
  padding: .85rem 1.1rem;
  border-radius: 18px;
  font-size: .85rem;
  line-height: 1.65
}

.msg.raha-m {
  background: #fff;
  border: 1px solid var(--hairline);
  border-start-start-radius: 4px;
  color: var(--charcoal)
}

.msg.user-m {
  background: var(--coral);
  color: #fff;
  align-self: flex-end;
  border-end-end-radius: 4px
}

.msg .soft-cta {
  display: inline-block;
  margin-top: .6rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coral);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  cursor: pointer
}

.typing {
  display: inline-flex;
  gap: 5px;
  padding: .9rem 1.2rem;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  border-start-start-radius: 4px;
  width: max-content
}

.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: dot 1.2s ease-in-out infinite
}

.typing i:nth-child(2) {
  animation-delay: .15s
}

.typing i:nth-child(3) {
  animation-delay: .3s
}

@keyframes dot {
  0%,
  60%,
  100% {
    opacity: .3;
    transform: translateY(0)
  }
  30% {
    opacity: 1;
    transform: translateY(-4px)
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0 1.4rem 1rem
}

.chip {
  font-size: .72rem;
  font-weight: 400;
  padding: .55rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 99px;
  background: rgba(255, 255, 255, .7);
  color: var(--charcoal);
  transition: .35s var(--ease)
}

.chip:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px)
}

.chat-input {
  display: flex;
  align-items: center;
  gap: .6rem;
  border-top: 1px solid var(--hairline);
  padding: .8rem 1.1rem;
  background: rgba(255, 255, 255, .5)
}

.chat-input input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink);
  outline: none
}

.chat-input input::placeholder {
  color: rgba(89, 90, 92, .5)
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  transition: .3s
}

.icon-btn:hover {
  color: var(--coral);
  background: var(--peach)
}

.icon-btn.send {
  background: var(--coral);
  color: #fff
}

.icon-btn.send:hover {
  background: var(--ink)
}

.icon-btn svg {
  width: 16px
}

.disclaimer {
  font-size: .66rem;
  color: rgba(89, 90, 92, .65);
  padding: .7rem 1.4rem;
  border-top: 1px solid var(--hairline);
  letter-spacing: .04em
}

.raha-copy .sub {
  margin: 1.4rem 0 2rem;
  max-width: 30rem
}

@media(max-width:1020px) {
  .raha .wrap {
    grid-template-columns: 1fr
  }
}

/* INTRO */
.intro {
  background: var(--white)
}

.intro .wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 5rem;
  align-items: center
}

.portrait {
  position: relative
}

.portrait .frame {
  aspect-ratio: 3/4;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  background: linear-gradient(200deg, #FDEBDD, #F7CDB4 45%, #EFAF92);
  position: relative
}

.portrait .frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.portrait .arc {
  position: absolute;
  inset: -14px;
  pointer-events: none
}

.portrait .arc path {
  stroke: var(--coral);
  stroke-width: 1.2;
  fill: none
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--hairline)
}

.counter b {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--ink);
  display: block;
  font-variant-numeric: tabular-nums
}

.counter b i {
  color: var(--coral);
  font-style: normal
}

.counter span {
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal)
}

.sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--coral);
  margin: 1.6rem 0
}

@media(max-width:1020px) {
  .intro .wrap {
    grid-template-columns: 1fr
  }
  .counters {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* SERVICES BENTO */
.services {
  background: var(--whisper)
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem
}

.tile {
  border-radius: 20px;
  padding: 1.7rem;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 20px 45px -30px rgba(62, 63, 65, .22);
  position: relative;
  overflow: hidden;
  transition: box-shadow .5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .5rem
}

.tile:hover {
  box-shadow: 0 34px 60px -30px rgba(62, 63, 65, .35)
}

.tile.hero-tile {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 300px;
  color: #fff;
  justify-content: flex-end
}

.tile.hero-tile .t1 {
  background: linear-gradient(200deg, #F58A6C, #F15830 55%, #C93E1D)
}

.tile.hero-tile .t2 {
  background: linear-gradient(210deg, #6B6C6E, #3E3F41 60%, #2E2F31)
}

.tile.hero-tile .bgart {
  position: absolute;
  inset: 0;
  z-index: 0
}

.tile.hero-tile h3 {
  color: #fff;
  position: relative
}

.tile.hero-tile p {
  color: rgba(255, 255, 255, .85);
  position: relative
}

.tile.hero-tile .learn {
  position: relative;
  color: #fff
}

.tile .s-icon {
  width: 44px;
  height: 44px;
  color: var(--coral);
  margin-bottom: auto
}

.tile.hero-tile .s-icon {
  color: #fff;
  position: relative
}

.tile .s-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round
}

.tile .s-icon path,
.tile .s-icon circle,
.tile .s-icon rect {
  stroke-dasharray: 220;
  stroke-dashoffset: 220
}

.tile.iconed .s-icon path,
.tile.iconed .s-icon circle,
.tile.iconed .s-icon rect {
  animation: draw 1.4s var(--ease) forwards
}

.tile:hover .s-icon {
  animation: iconPulse 1.4s ease-in-out
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1)
  }
  30% {
    transform: scale(1.1)
  }
  55% {
    transform: scale(.97)
  }
  75% {
    transform: scale(1.06)
  }
}

.tile h3 {
  font-size: 1.35rem
}

.tile p {
  font-size: .8rem;
  color: var(--charcoal)
}

.tile .learn {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coral);
  opacity: 0;
  transform: translateY(6px);
  transition: .4s var(--ease)
}

.tile:hover .learn {
  opacity: 1;
  transform: none
}

.services-ctas {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-top: 3rem;
  flex-wrap: wrap
}

.sparkle {
  color: var(--coral)
}

@media(max-width:1020px) {
  .bento {
    grid-template-columns: repeat(2, 1fr)
  }
  .tile.hero-tile {
    grid-column: span 2;
    grid-row: auto
  }
}

@media(max-width:600px) {
  .bento {
    grid-template-columns: 1fr
  }
  .tile.hero-tile {
    grid-column: auto
  }
}

/* WHY / DARK */
.why {
  background: var(--charcoal-deep);
  color: #fff
}

.why .sec-head h2,
.why h3 {
  color: #fff
}

.why .micro {
  color: var(--coral-soft)
}

.snap-row {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.4rem;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(241, 88, 48, .4) transparent
}

.snap-row:active {
  cursor: grabbing
}

.snap-card {
  scroll-snap-align: start;
  flex: 0 0 min(300px, 80vw);
  border: 1px solid rgba(245, 138, 108, .35);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(210deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 250px
}

.snap-card .s-icon {
  width: 40px;
  height: 40px;
  color: var(--coral-soft)
}

.snap-card .s-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round
}

.snap-card h3 {
  font-size: 1.35rem
}

.snap-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .72)
}

.why .cta-row {
  margin-top: 2.6rem
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem
}

.step {
  position: relative
}

.step .num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--coral-soft);
  opacity: .5;
  display: block;
  margin-bottom: .8rem
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: .8rem
}

.step p {
  font-size: .85rem;
  line-height: 1.65
}

.inline-cta {
  text-align: center;
  margin-top: 3.5rem
}

@media(max-width:820px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem
  }
}

/* TESTIMONIALS */
.testi {
  background: linear-gradient(to bottom, var(--whisper), var(--ivory))
}

.testi .wrap {
  max-width: 42rem;
  text-align: center;
  position: relative;
  padding: 2rem 0
}

.quote-glyph {
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 0;
  color: var(--coral-soft);
  opacity: .2;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  user-select: none
}

.testi-stage {
  position: relative;
  min-height: 160px;
  display: grid;
  place-items: center
}

.t-slide {
  grid-area: 1/1;
  opacity: 0;
  transform: scale(.96) translateY(12px);
  pointer-events: none;
  transition: opacity .8s, transform .8s var(--ease)
}

.t-slide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.testi blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 2rem
}

.t-meta {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.t-meta .stars {
  color: var(--coral);
  letter-spacing: .15em;
  font-size: .75rem
}

.t-meta .who {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal)
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 2.2rem
}

.t-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--charcoal);
  opacity: .25;
  transition: opacity .3s, transform .3s
}

.t-dot.active {
  opacity: .9;
  transform: scale(1.3)
}

/* ACCREDITATION */
.accred {
  border-block: 1px solid var(--hairline);
  padding: 3rem 0;
  background: rgba(255, 255, 255, .3)
}

.accred .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap
}

.accred .micro {
  flex: 1 0 100%;
  text-align: center;
  margin-bottom: .6rem
}

.plogo {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .06em;
  color: var(--charcoal);
  opacity: .45;
  text-transform: uppercase;
  font-weight: 500
}

.plogo.dha {
  color: var(--ink);
  opacity: .8;
  border: 1px solid var(--charcoal);
  padding: .3rem .9rem;
  border-radius: 4px;
  font-size: .95rem
}

/* INSIGHTS HOMEPAGE LIST */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem
}

.article {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--hairline);
  box-shadow: 0 12px 30px -20px rgba(62, 63, 65, .15);
  transition: transform .45s var(--ease), box-shadow .45s
}

.article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -20px rgba(62, 63, 65, .28)
}

.article .art {
  height: 170px;
  background: var(--charcoal-deep);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .18)
}

.article .art svg {
  width: 90px
}

.article .body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1
}

.article .rt {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coral)
}

.article h3 {
  font-size: 1.25rem
}

.article p {
  font-size: .8rem;
  line-height: 1.6;
  color: var(--charcoal)
}

@media(max-width:900px) {
  .articles {
    grid-template-columns: 1fr
  }
}

/* GRAND CTA */
.grand {
  background: var(--charcoal-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 9rem 0 10rem
}

.grand .watermark {
  width: 900px;
  opacity: .018;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
}

.grand .heart-orb {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 138, 108, .18), transparent 70%)
}

.grand h2 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  color: #fff;
  margin: 1.2rem 0 2.6rem
}

.grand h2 em {
  font-style: italic;
  color: var(--coral-soft)
}

.grand .cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem
}

.grand .phone {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: #fff;
  letter-spacing: .06em;
  transition: color .3s
}

.grand .phone:hover {
  color: var(--coral-soft)
}


/* ============ ABOUT US PAGE SPECIFIC STYLES ============ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media(max-width:820px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media(max-width:820px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.value-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  transition: transform .4s var(--ease), box-shadow .4s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(62,63,65,.15);
}

.value-card .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--coral-soft);
  display: block;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: .8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media(max-width:820px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.member-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px -20px rgba(62, 63, 65, .1);
  transition: transform .45s var(--ease), box-shadow .45s;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -25px rgba(62, 63, 65, .2);
}

.member-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--peach), var(--coral-soft));
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
}

.member-photo svg {
  width: 40%;
  opacity: .85;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-info {
  padding: 1.6rem;
}

.member-info h3 {
  font-size: 1.25rem;
  margin-bottom: .2rem;
}

.member-info .role {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coral);
  display: block;
  margin-bottom: .6rem;
}

.member-info p {
  font-size: .82rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.accred-details {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

@media(max-width:820px) {
  .accred-details {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.accred-badge-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.accred-badge {
  background: rgba(255,255,255,.5);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.accred-badge svg {
  width: 42px;
  color: var(--coral);
}

.accred-badge span {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
}


/* ============ SERVICES ARCHIVE PAGE SPECIFIC STYLES ============ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media(max-width:960px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.catalog-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 10px 30px -20px rgba(62,63,65,.1);
  transition: transform .45s var(--ease), box-shadow .45s;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -20px rgba(62,63,65,.25);
}

.catalog-card .icon-holder {
  width: 52px;
  height: 52px;
  color: var(--coral);
  margin-bottom: 2rem;
}

.catalog-card .icon-holder svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
}

.catalog-card h3 {
  font-size: 1.45rem;
  margin-bottom: .8rem;
}

.catalog-card p {
  font-size: .85rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: auto;
}

.catalog-card .link-action {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
  margin-top: 2rem;
  transition: color .3s;
}

.catalog-card:hover .link-action {
  color: var(--ink);
}

.insurance-promo {
  background: var(--charcoal-deep);
  color: var(--white);
  border-radius: 32px;
  padding: 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.insurance-promo h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.insurance-promo p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}

.insurance-promo .partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  opacity: .85;
}

.insurance-promo .partner-logo {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .8rem 1.6rem;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

@media(max-width:820px) {
  .insurance-promo {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }
}


/* ============ SERVICE DETAIL PAGE SPECIFIC STYLES ============ */
.detail-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 4rem;
}

@media(max-width:960px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.detail-content h2 {
  font-size: 2rem;
  margin: 2.2rem 0 1rem;
}

.detail-content ul {
  margin: 1rem 0 1.8rem;
  padding-inline-start: 1.2rem;
}

.detail-content li {
  margin-bottom: .6rem;
}

.sidebar-widget {
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 25px 50px -25px rgba(62,63,65,.15);
  border-radius: 24px;
  padding: 2.2rem;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.sidebar-widget h3 {
  font-size: 1.45rem;
  margin-bottom: .4rem;
}

.sidebar-widget p {
  font-size: .82rem;
  margin-bottom: 1.4rem;
}

.widget-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.widget-form input,
.widget-form select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  font-family: var(--sans);
  font-size: .8rem;
  outline: none;
  transition: border-color .3s;
}

.widget-form input:focus {
  border-color: var(--coral);
}

.widget-form .btn {
  width: 100%;
  justify-content: center;
  padding: .95rem;
  margin-top: .6rem;
}

.faq-sec {
  margin-top: 4.5rem;
  border-top: 1px solid var(--hairline);
  padding-top: 3.5rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 2rem;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s;
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 1.6rem;
  text-align: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--coral);
  transition: transform .3s;
}

.accordion-item.active .accordion-header::after {
  content: '−';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 1.6rem;
  font-size: .85rem;
  color: var(--charcoal);
  line-height: 1.65;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 1.4rem;
}


/* ============ INSIGHTS LIST SPECIFIC STYLES ============ */
.filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1.2rem;
}

.filter-btn {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  padding: .4rem .8rem;
  border-radius: 99px;
  border: 1px solid transparent;
  transition: .3s;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--coral);
  border-color: var(--coral);
  background: var(--peach);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

@media(max-width:960px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -20px rgba(62,63,65,.1);
  transition: transform .45s var(--ease), box-shadow .45s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -20px rgba(62,63,65,.2);
}

.blog-art {
  height: 180px;
  background: linear-gradient(135deg, var(--charcoal-deep), var(--ink));
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.2);
  position: relative;
}

.blog-art svg {
  width: 80px;
}

.blog-art img,
.featured-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coral);
  margin-bottom: .8rem;
}

.blog-meta .read-time {
  color: var(--charcoal);
}

.blog-body h3 {
  font-size: 1.35rem;
  margin-bottom: .8rem;
  line-height: 1.3;
}

.blog-body p {
  font-size: .85rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.blog-body .read-more {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: .2rem;
  width: fit-content;
  margin-top: auto;
  transition: color .3s, border-color .3s;
}

.blog-card:hover .read-more {
  color: var(--coral);
  border-color: var(--coral);
}

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 15px 35px -25px rgba(62,63,65,.15);
}

.featured-info {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-art {
  background: linear-gradient(135deg, var(--peach), var(--coral-soft));
  display: grid;
  place-items: center;
  color: var(--white);
  min-height: 320px;
}

.featured-art svg {
  width: 120px;
  opacity: .85;
}

@media(max-width:820px) {
  .featured-post {
    grid-template-columns: 1fr;
  }
  .featured-info {
    padding: 2rem;
  }
}


/* ============ INSIGHTS DETAIL SPECIFIC STYLES ============ */
.article-header {
  padding: 6rem 0 3.5rem;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

.article-meta-top {
  display: flex;
  gap: 1.2rem;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coral);
  margin-bottom: 1.2rem;
}

.article-meta-top span {
  color: var(--charcoal);
}

.article-header h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  max-width: 52rem;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--coral-soft));
  display: grid;
  place-items: center;
  color: var(--white);
}

.author-avatar svg {
  width: 20px;
}

.author-details b {
  display: block;
  font-size: .85rem;
  color: var(--ink);
  font-weight: 500;
}

.author-details span {
  font-size: .72rem;
  color: var(--charcoal);
}

.article-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 4.5rem;
}

@media(max-width:960px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.article-body {
  font-size: .98rem;
  line-height: 1.85;
  color: var(--charcoal-deep);
}

.article-body p {
  margin-bottom: 1.8rem;
}

.article-body h2 {
  font-size: 1.8rem;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}

.article-body blockquote {
  border-inline-start: 3px solid var(--coral);
  padding-inline-start: 2rem;
  margin: 2.5rem 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.8rem;
  padding-inline-start: 1.4rem;
}

.article-body li {
  margin-bottom: .6rem;
}

.sidebar-block {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 1.8rem;
  margin-bottom: 2rem;
}

.sidebar-block h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.recent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.recent-item a {
  font-size: .88rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
  display: block;
  transition: color .3s;
}

.recent-item a:hover {
  color: var(--coral);
}

.recent-item span {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--charcoal);
  display: block;
  margin-top: .3rem;
}
