
/* ----------------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  --orange:        #F26419;
  --orange-dark:   #d9530e;
  --orange-light:  #ff7a30;
  --bg:            #0a0a0a;
  --bg2:           #111111;
  --bg3:           #161616;
  --card-bg:       #141414;
  --white:         #ffffff;
  --off-white:     #f5f5f5;
  --gray:          #888888;
  --gray-light:    #aaaaaa;
  --border:        rgba(255, 255, 255, 0.08);
  --border-light:  rgba(255, 255, 255, 0.12);
  --font-main:     'Inter', sans-serif;
  --font-display:  'Bebas Neue', sans-serif;
  --nav-h:         68px;
  --radius-card:   16px;
  --radius-btn:    50px;
  --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.5);
  --transition:    0.25s ease;
}


/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-main); }


/* ----------------------------------------------------------------
   2b. SECTION SVG BACKGROUNDS
   All sections that host an SVG background need position:relative
   so the absolutely-positioned SVG is clipped to the section.
   ---------------------------------------------------------------- */

/* Every section that has a .section-bg-svg child */
.hero,
.benefits,
.case-studies,
.services,
.testimonials,
.booking,
.faq {
  position: relative;
  overflow: hidden;
}

/* The full-bleed SVG sits behind all content */
.hero-bg-svg,
.section-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* Subtle fade-in animation so background doesn't feel static */
  animation: bgFadeIn 1.2s ease forwards;
}

@keyframes bgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Ensure all direct content children of sections float above the SVG */
.hero > *:not(.hero-bg-svg):not(.hero-shapes),
.benefits > *:not(.section-bg-svg),
.case-studies > *:not(.section-bg-svg),
.services > *:not(.section-bg-svg),
.testimonials > *:not(.section-bg-svg),
.booking > *:not(.section-bg-svg),
.faq > *:not(.section-bg-svg) {
  position: relative;
  z-index: 1;
}

/* Hero shapes also need to be above the SVG bg */
.hero-shapes {
  z-index: 1;
}


/* ----------------------------------------------------------------
   3. SCROLL ANIMATION SYSTEM
   Multiple animation flavours applied via data-anim attribute.
   JS adds .is-visible when element enters the viewport.
   ---------------------------------------------------------------- */

/* ── Respect user motion preferences ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-anim], .reveal-hero, .scroll-reveal, .scroll-reveal-card,
  .char-wrap, .word-wrap { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* ── Shared: everything hidden until .is-visible fires ────────── */
[data-anim] {
  will-change: transform, opacity;
}

/* ── 1. FADE UP  (default) ─────────────────────────────────────── */
[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="fade-up"].is-visible { opacity: 1; transform: translateY(0); }

/* ── 2. FADE LEFT ──────────────────────────────────────────────── */
[data-anim="fade-left"] {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="fade-left"].is-visible { opacity: 1; transform: translateX(0); }

/* ── 3. FADE RIGHT ─────────────────────────────────────────────── */
[data-anim="fade-right"] {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="fade-right"].is-visible { opacity: 1; transform: translateX(0); }

/* ── 4. SCALE UP ───────────────────────────────────────────────── */
[data-anim="scale-up"] {
  opacity: 0;
  transform: scale(0.88) translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-anim="scale-up"].is-visible { opacity: 1; transform: scale(1) translateY(0); }

/* ── 5. CLIP WIPE (reveals from bottom edge upward) ───────────── */
[data-anim="clip-up"] {
  opacity: 1;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
[data-anim="clip-up"].is-visible { clip-path: inset(0% 0 0 0); }

/* ── 6. CLIP WIPE LEFT (reveals left to right) ────────────────── */
[data-anim="clip-left"] {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
[data-anim="clip-left"].is-visible { clip-path: inset(0 0% 0 0); }

/* ── 7. ROTATE IN (3-D flip on X axis) ────────────────────────── */
[data-anim="flip-up"] {
  opacity: 0;
  transform: perspective(600px) rotateX(18deg) translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: top center;
}
[data-anim="flip-up"].is-visible { opacity: 1; transform: perspective(600px) rotateX(0deg) translateY(0); }

/* ── 8. ZOOM FADE (scale from 1.08 → 1) ──────────────────────── */
[data-anim="zoom-fade"] {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="zoom-fade"].is-visible { opacity: 1; transform: scale(1); }

/* ── 9. STAGGER CHILDREN — parent triggers sequential child anims  */
.stagger-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-children.is-visible > * { opacity: 1; transform: translateY(0); }

/* Stagger delays: up to 8 children */
.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0ms;   }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 110ms; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 220ms; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 330ms; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 440ms; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 550ms; }
.stagger-children.is-visible > *:nth-child(7) { transition-delay: 660ms; }
.stagger-children.is-visible > *:nth-child(8) { transition-delay: 770ms; }

/* ── 10. SPLIT-TEXT WORD ANIMATION ────────────────────────────── */
/* Each .word-wrap is a span wrapping one word, clipping children  */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.1;
}

.word-wrap .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1),
              opacity 0.4s ease;
}

.split-title.is-visible .word-wrap .word-inner {
  transform: translateY(0%);
  opacity: 1;
}

/* ── 11. SECTION BADGE PILL ── bounces in ──────────────────────── */
[data-anim="badge-pop"] {
  opacity: 0;
  transform: scale(0.6) translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-anim="badge-pop"].is-visible { opacity: 1; transform: scale(1) translateY(0); }

/* ── 12. DIVIDER LINE ── grows from centre ─────────────────────── */
[data-anim="line-grow"] {
  transform: scaleX(0);
  opacity: 1;
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
[data-anim="line-grow"].is-visible { transform: scaleX(1); }

/* ── HERO entrance (slide + fade from left) ───────────────────── */
.reveal-hero {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-hero.is-visible { opacity: 1; transform: translateX(0); }

/* Legacy aliases kept so existing classes don't break */
.scroll-reveal        { opacity: 0; transform: translateY(32px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
.scroll-reveal-card   { opacity: 0; transform: translateY(48px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.scroll-reveal-card.is-visible { opacity: 1; transform: translateY(0); }

/* ── ORANGE ACCENT LINE that draws under section titles ─────────── */
.title-underline {
  display: block;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  width: 48px;
  margin: 14px auto 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1) 0.3s;
}
.title-underline.is-visible { transform: scaleX(1); }

/* Center the underline for centered titles */
.section-title + .title-underline { transform-origin: center; }

/* ── COUNTER number flash ─────────────────────────────────────── */
@keyframes countFlash {
  0%   { color: var(--orange); }
  100% { color: inherit; }
}
.count-flash { animation: countFlash 0.4s ease forwards; }


/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */

/* Primary — orange fill; hover turns white */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition),
              color var(--transition),
              border-color var(--transition),
              transform 0.15s ease,
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--white);
  color: #111111;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Secondary — ghost outline */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition),
              background-color var(--transition),
              transform 0.15s ease;
}

.btn-secondary:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* Orange card button — used inside dark and light panels */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-btn);
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition),
              color var(--transition),
              border-color var(--transition),
              transform 0.15s ease,
              box-shadow var(--transition);
  width: fit-content;
  margin-top: 4px;
}

.btn-orange:hover {
  background-color: var(--white);
  color: #111111;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.12);
}

/* Full-width button (FAQ section) */
.btn-full {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 17px;
  font-size: 16px;
  border-radius: var(--radius-btn);
}


/* ----------------------------------------------------------------
   5. SHARED SECTION UTILITIES
   ---------------------------------------------------------------- */
.section-badge {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: 1.5px;
  line-height: 1.0;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
}


/* ----------------------------------------------------------------
   6. NAVIGATION BAR
   ---------------------------------------------------------------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(14px);
  z-index: 999;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
  max-height: 400px;
  padding: 24px 24px 32px;
}

.mobile-nav ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .btn-primary { margin-top: 8px; justify-content: center; }


/* ----------------------------------------------------------------
   7. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 52px 80px;
  background-color: var(--bg);
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Decorative geometric shapes */
.hero-shapes {
  position: absolute;
  right: 0;
  top: 0;
  width: 56%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.geo-shape {
  position: absolute;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: var(--base-transform) translateY(0px); }
  50%       { transform: var(--base-transform) translateY(-10px); }
}

.geo1 {
  width: 210px; height: 210px;
  top: 8%; right: 14%;
  --base-transform: rotate(20deg);
  animation-delay: 0s;
  animation-duration: 9s;
}
.geo2 {
  width: 145px; height: 145px;
  top: 36%; right: 4%;
  border-radius: 22px;
  --base-transform: rotate(-15deg);
  animation-delay: 1.5s;
  animation-duration: 11s;
}
.geo3 {
  width: 105px; height: 105px;
  bottom: 20%; right: 25%;
  --base-transform: rotate(30deg);
  animation-delay: 3s;
  animation-duration: 8s;
}
.geo4 {
  width: 185px; height: 82px;
  top: 58%; right: 38%;
  border-radius: 10px;
  --base-transform: rotate(-10deg);
  animation-delay: 2s;
  animation-duration: 12s;
}
.geo5 {
  width: 82px; height: 82px;
  top: 5%; right: 40%;
  --base-transform: rotate(45deg);
  animation-delay: 0.8s;
  animation-duration: 10s;
}
.geo6 {
  width: 270px; height: 270px;
  bottom: -6%; right: -3%;
  border-radius: 32px;
  opacity: 0.035;
  --base-transform: rotate(15deg);
  animation-delay: 4s;
  animation-duration: 14s;
}
.geo7 {
  width: 60px; height: 60px;
  top: 22%; right: 28%;
  border-radius: 50%;
  opacity: 0.06;
  border-color: var(--orange);
  --base-transform: rotate(0deg);
  animation-delay: 1s;
  animation-duration: 7s;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 5px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 8.5vw, 108px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 26px;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 42px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Avatar stack + social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-stack { display: flex; }

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.avatar:first-child { margin-left: 0; }

.avatar.av1 { background: linear-gradient(135deg, #e8a87c, #c77a4a); }
.avatar.av2 { background: linear-gradient(135deg, #8bb4d8, #5a88b0); }
.avatar.av3 { background: linear-gradient(135deg, #a8d8a8, #6aaa6a); }
.avatar.av4 { background: linear-gradient(135deg, #d8a8c8, #b06898); }
.avatar.av5 { background: linear-gradient(135deg, #666, #333); }

.social-proof-text {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}


/* ----------------------------------------------------------------
   8. BENEFITS SECTION
   ---------------------------------------------------------------- */
.benefits {
  padding: 110px 52px;
  text-align: center;
  background-color: var(--bg);
}

.benefits .section-title { margin-bottom: 8px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  max-width: 860px;
  margin: 64px auto 0;
}

.benefit-item { text-align: center; }

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon { width: 44px; height: 44px; }

.benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.benefit-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  max-width: 210px;
  margin: 0 auto;
}


/* ----------------------------------------------------------------
   9. CASE STUDIES SECTION
   ---------------------------------------------------------------- */
.case-studies {
  padding: 80px 52px;
  background-color: var(--bg);
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.case-card:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.65);
  transform: translateY(-3px);
}

.case-card.reverse { direction: rtl; }
.case-card.reverse > * { direction: ltr; }

/* Visual panel (gradient background) */
.case-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 36px;
  min-height: 320px;
}

.dark-bg {
  background: linear-gradient(145deg, #1e1408 0%, #2e2008 50%, #1a1208 100%);
}

/* ---- Mock Chart ---- */
.mock-chart {
  width: 100%;
  max-width: 310px;
  background-color: #191919;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-header {
  background-color: #222;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chart-window-dots {
  display: flex;
  gap: 5px;
}

.chart-window-dots i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  font-style: normal;
}

.chart-window-dots i:nth-child(1) { background: #ff5f57; }
.chart-window-dots i:nth-child(2) { background: #febc2e; }
.chart-window-dots i:nth-child(3) { background: #28c840; }

.chart-inner {
  display: flex;
  gap: 0;
  padding: 14px 14px 0;
}

.chart-y-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 8px;
  padding-bottom: 4px;
}

.chart-y-labels span {
  font-size: 8px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-main);
  line-height: 1;
}

.chart-area { flex: 1; }

.chart-svg {
  width: 100%;
  height: 100px;
  display: block;
}

/* Animated chart lines */
.chart-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .chart-line { stroke-dashoffset: 0; }

.chart-x-labels {
  display: flex;
  justify-content: space-between;
  padding: 6px 14px 0;
}

.chart-x-labels span {
  font-size: 8.5px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-main);
}

.chart-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 14px 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 6px;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-main);
}

.chart-legend i {
  display: block;
  width: 10px;
  height: 2.5px;
  border-radius: 2px;
  font-style: normal;
}

/* ---- Mock Form ---- */
.mock-form {
  width: 100%;
  max-width: 300px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 22px 22px;
  color: #333;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.mock-form-title {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.mock-form-sub {
  font-size: 10px;
  color: #999;
  margin-bottom: 14px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 10px;
}

.mock-row.align-start { align-items: flex-start; }

.mock-label {
  font-size: 10px;
  color: #999;
  flex-shrink: 0;
  min-width: 90px;
}

.mock-val {
  font-size: 10px;
  color: #333;
  text-align: right;
}

.mock-val.bold { font-weight: 700; }
.mock-val.muted { color: #888; }
.mock-val.small { font-size: 9px; line-height: 1.5; text-align: right; max-width: 150px; }

.mock-divider {
  height: 1px;
  background-color: #eee;
}

.mock-attachments {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mock-attach-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #555;
}

.mock-attach-row span { flex: 1; }

.mock-dl {
  color: #4a9eff;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

/* Case study text panel */
.case-content {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.case-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.case-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  letter-spacing: 1px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 22px;
}

.case-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}

.case-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  margin-bottom: 18px;
}


/* ----------------------------------------------------------------
   10. SERVICES SECTION
   ---------------------------------------------------------------- */
.services {
  padding: 110px 52px;
  background-color: var(--bg);
}

.services .section-title { margin-bottom: 64px; }

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 880px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.service-card:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.65);
  transform: translateY(-3px);
}

.service-card.reverse { direction: rtl; }
.service-card.reverse > * { direction: ltr; }

/* Image panel */
.service-img {
  min-height: 300px;
  position: relative;
  background-color: #111;
  overflow: hidden;
}

/* Real photo fills the panel, zooms subtly on card hover */
.service-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.7s ease;
  filter: brightness(0.82) saturate(0.9);
}

.service-card:hover .service-img img {
  transform: scale(1.06);
  filter: brightness(0.92) saturate(1.05);
}

/* Subtle dark gradient overlay at bottom of image for polish */
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.05) 50%,
    rgba(0,0,0,0.18) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Orange accent bar on left edge of every service image */
.service-img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  z-index: 2;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-img::before {
  transform: scaleY(1);
}

/* Content panel — light (white bg for Paid Traffic + Content) */
.service-content.light {
  padding: 40px 44px;
  background-color: var(--white);
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Content panel — dark (for Graphic Design) */
.service-content.dark {
  padding: 40px 44px;
  background-color: var(--bg);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.05;
}

.service-subtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}

.service-content.light .service-subtitle { color: #111; }
.service-content.dark  .service-subtitle { color: var(--white); }

.service-desc {
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-content.light .service-desc { color: rgba(0, 0, 0, 0.55); }
.service-content.dark  .service-desc { color: rgba(255, 255, 255, 0.48); }

/* Orange button inside light panels needs dark hover variant */
.service-content.light .btn-orange:hover {
  background-color: #111;
  border-color: #111;
  color: var(--white);
}


/* ----------------------------------------------------------------
   11. TESTIMONIALS SECTION
   ---------------------------------------------------------------- */
.testimonials {
  padding: 110px 52px;
  background-color: var(--bg);
  text-align: center;
}

.testimonials-divider {
  width: 60px;
  height: 3px;
  background-color: var(--orange);
  margin: 0 auto 64px;
  border-radius: 3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: left;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(242, 100, 25, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.t-avatar.av1 { background: linear-gradient(135deg, #e8a87c, #c77a4a); }
.t-avatar.av2 { background: linear-gradient(135deg, #8bb4d8, #5a88b0); }
.t-avatar.av3 { background: linear-gradient(135deg, #a8d8a8, #6aaa6a); }
.t-avatar.av4 { background: linear-gradient(135deg, #d8a8c8, #b06898); }

/* Photo avatar — replaces coloured initials */
.t-avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(242, 100, 25, 0.5);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.t-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.testimonial-card:hover .t-avatar-img {
  border-color: var(--orange);
  transform: scale(1.08);
}

.t-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.t-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
}


/* ----------------------------------------------------------------
   12. BOOKING SECTION
   ---------------------------------------------------------------- */
.booking {
  padding: 90px 52px;
  background-color: var(--bg);
  text-align: center;
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: 1.5px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 44px;
}

/* White card */
.booking-card {
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 36px 30px;
  text-align: left;
  position: relative;
  color: #111;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.booking-card:hover { transform: translateY(-4px); }

.booking-card--image {
  padding: 0;
  overflow: hidden;
  background: none;
}

/* Corner badge */
.booking-corner-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #455a72;
  color: var(--white);
  font-size: 9px;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 0 var(--radius-card) 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-align: left;
}

.booking-corner-badge strong { font-size: 10px; display: block; }

.booking-company {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.booking-message {
  font-size: 15px;
  color: #333;
  margin-bottom: 14px;
}

.booking-sub {
  font-size: 12px;
  color: #aaa;
}

.booking-sub a {
  color: #4a9eff;
  text-decoration: underline;
}


/* ----------------------------------------------------------------
   13. FAQ SECTION
   ---------------------------------------------------------------- */
.faq {
  padding: 110px 52px;
  background-color: var(--bg);
  text-align: center;
}

.faq-list {
  max-width: 640px;
  margin: 44px auto 36px;
  text-align: left;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
  background-color: var(--card-bg);
}

.faq-item.open {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  transition: background-color 0.2s ease;
  gap: 16px;
}

.faq-question:hover { background-color: rgba(255, 255, 255, 0.03); }

.faq-icon {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  transition: transform 0.3s ease, color 0.25s ease;
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  padding: 0 22px;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 22px 20px;
}


/* ----------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 52px;
  border-top: 1px solid var(--border);
  background-color: var(--bg);
}

.footer-logo { margin-bottom: 10px; }

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.footer-socials { display: flex; gap: 10px; }

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color var(--transition), color var(--transition), transform 0.2s ease;
}

.social-icon:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }


/* ----------------------------------------------------------------
   15. RESPONSIVE — Tablet (≤ 960px)
   ---------------------------------------------------------------- */
@media (max-width: 960px) {

  .navbar { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 64px 24px 72px; min-height: auto; }
  .hero h1 { font-size: 58px; }
  .hero-shapes { width: 40%; opacity: 0.5; }

  .benefits,
  .services,
  .testimonials,
  .booking,
  .faq { padding: 80px 24px; }

  .case-studies { padding: 70px 24px; }

  .benefits-grid { grid-template-columns: 1fr; max-width: 380px; gap: 40px; }

  .case-card,
  .case-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .case-card.reverse .case-content { order: 1; }
  .case-card.reverse .case-visual { order: 2; }

  .case-visual { min-height: 240px; }
  .case-content { padding: 32px 28px; }
  .case-title { font-size: 32px; }

  .service-card,
  .service-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-card.reverse .service-content { order: 1; }
  .service-card.reverse .service-img { order: 2; }

  .service-content.light,
  .service-content.dark { padding: 32px 28px; }
  .service-content.dark { border-right: none; border-bottom: 1px solid var(--border); }

  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .testimonials-divider { margin-bottom: 48px; }

  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 20px; }
}


/* ----------------------------------------------------------------
   16. RESPONSIVE — Mobile (≤ 560px)
   ---------------------------------------------------------------- */
@media (max-width: 560px) {

  .hero h1 { font-size: 46px; }
  .hero-subtitle { font-size: 15px; }
  .hero-shapes { display: none; }

  .section-title { font-size: 34px; }
  .booking-title { font-size: 34px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .benefits-grid { max-width: 100%; }

  .booking-card { padding: 28px 22px 24px; }

  .btn-full { font-size: 15px; padding: 15px; }

  .case-title { font-size: 28px; }
}


/* ================================================================
   SVG ASSETS — All SVG images are defined here in CSS only.
   HTML contains only semantic structure; no inline SVGs.
   ================================================================ */

/* ── LOGO ICON ─────────────────────────────────────────────────── */
.logo-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg class='logo-icon' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M4 20 C10 10, 30 10, 36 20 C30 30, 10 30, 4 20 Z' stroke='%23F26419' stroke-width='2.2' fill='none'/%3E %3Ccircle cx='20' cy='20' r='7' stroke='%23F26419' stroke-width='2'/%3E %3Cpath d='M15 22 L20 16 L25 22' stroke='%23F26419' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E %3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

/* ── HERO SECTION BACKGROUND ───────────────────────────────────── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg class='hero-bg-svg' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' preserveAspectRatio='xMidYMid slice'%3E %3Cdefs%3E %3Cpattern id='hero-dots' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E %3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.07)'/%3E %3C/pattern%3E %3Cpattern id='hero-stripes' x='0' y='0' width='60' height='60' patternUnits='userSpaceOnUse' patternTransform='rotate(45)'%3E %3Cline x1='0' y1='0' x2='0' y2='60' stroke='rgba(242,100,25,0.04)' stroke-width='1'/%3E %3C/pattern%3E %3CradialGradient id='hero-glow' cx='72%' cy='45%' r='55%'%3E %3Cstop offset='0%' stop-color='%23F26419' stop-opacity='0.18'/%3E %3Cstop offset='40%' stop-color='%23F26419' stop-opacity='0.06'/%3E %3Cstop offset='100%' stop-color='%23F26419' stop-opacity='0'/%3E %3C/radialGradient%3E %3CradialGradient id='hero-glow2' cx='10%' cy='90%' r='40%'%3E %3Cstop offset='0%' stop-color='%234a9eff' stop-opacity='0.08'/%3E %3Cstop offset='100%' stop-color='%234a9eff' stop-opacity='0'/%3E %3C/radialGradient%3E %3C/defs%3E %3Crect width='100%' height='100%' fill='url(%23hero-dots)'/%3E %3Crect width='100%' height='100%' fill='url(%23hero-stripes)'/%3E %3Crect width='100%' height='100%' fill='url(%23hero-glow)'/%3E %3Crect width='100%' height='100%' fill='url(%23hero-glow2)'/%3E %3Ccircle cx='78%' cy='50%' r='280' fill='none' stroke='rgba(242,100,25,0.07)' stroke-width='1'/%3E %3Ccircle cx='78%' cy='50%' r='380' fill='none' stroke='rgba(242,100,25,0.05)' stroke-width='1'/%3E %3Ccircle cx='78%' cy='50%' r='480' fill='none' stroke='rgba(242,100,25,0.03)' stroke-width='1'/%3E %3Cline x1='55%' y1='0' x2='100%' y2='60%' stroke='rgba(255,255,255,0.03)' stroke-width='1.5'/%3E %3Cline x1='60%' y1='0' x2='100%' y2='50%' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E %3Cline x1='50%' y1='100%' x2='100%' y2='30%' stroke='rgba(242,100,25,0.05)' stroke-width='1'/%3E %3Cline x1='75%' y1='0' x2='100%' y2='25%' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E %3Cline x1='85%' y1='0' x2='100%' y2='15%' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E %3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  animation: bgFadeIn 1.2s ease forwards;
}

/* ── BENEFITS SECTION BACKGROUND ──────────────────────────────── */
.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg class='section-bg-svg' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' preserveAspectRatio='xMidYMid slice'%3E %3Cdefs%3E %3Cpattern id='benefits-grid' x='0' y='0' width='80' height='80' patternUnits='userSpaceOnUse'%3E %3Cline x1='0' y1='0' x2='80' y2='0' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E %3Cline x1='0' y1='0' x2='0' y2='80' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E %3Ccircle cx='0' cy='0' r='1.5' fill='rgba(255,255,255,0.06)'/%3E %3Cpolyline points='0,40 20,40 20,60 40,60' fill='none' stroke='rgba(242,100,25,0.07)' stroke-width='1'/%3E %3Cpolyline points='40,0 40,20 60,20 60,40 80,40' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E %3Ccircle cx='20' cy='40' r='1.2' fill='rgba(242,100,25,0.12)'/%3E %3Ccircle cx='60' cy='20' r='1.2' fill='rgba(255,255,255,0.07)'/%3E %3C/pattern%3E %3CradialGradient id='benefits-fade' cx='50%' cy='50%' r='55%'%3E %3Cstop offset='0%' stop-color='white' stop-opacity='1'/%3E %3Cstop offset='100%' stop-color='white' stop-opacity='0'/%3E %3C/radialGradient%3E %3Cmask id='benefits-mask'%3E %3Crect width='100%' height='100%' fill='url(%23benefits-fade)'/%3E %3C/mask%3E %3C/defs%3E %3Crect width='100%' height='100%' fill='url(%23benefits-grid)' mask='url(%23benefits-mask)'/%3E %3Cellipse cx='50%' cy='100%' rx='40%' ry='25%' fill='rgba(242,100,25,0.06)'/%3E %3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  animation: bgFadeIn 1.2s ease forwards;
}

/* ── BENEFIT ICON SPANS ─────────────────────────────────────────── */
.benefit-icon {
  display: block;
  width: 44px;
  height: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.benefit-icon-1 { background-image: url("data:image/svg+xml,%3Csvg class='benefit-icon' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpolyline points='6,34 16,22 24,28 38,12' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E %3Cpolyline points='30,12 38,12 38,20' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E %3C/svg%3E"); }
.benefit-icon-2 { background-image: url("data:image/svg+xml,%3Csvg class='benefit-icon' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Ccircle cx='22' cy='22' r='16' stroke='white' stroke-width='2'/%3E %3Cpath d='M22 12 L22 22 L30 27' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3Ccircle cx='22' cy='22' r='2.5' fill='white'/%3E %3C/svg%3E"); }
.benefit-icon-3 { background-image: url("data:image/svg+xml,%3Csvg class='benefit-icon' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M6 14 Q11 9 16 14 Q21 19 26 14 Q31 9 38 14' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'/%3E %3Cpath d='M6 22 Q11 17 16 22 Q21 27 26 22 Q31 17 38 22' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'/%3E %3Cpath d='M6 30 Q11 25 16 30 Q21 35 26 30 Q31 25 38 30' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'/%3E %3C/svg%3E"); }

/* ── CASE STUDIES SECTION BACKGROUND ──────────────────────────── */
.case-studies::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg class='section-bg-svg' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' preserveAspectRatio='xMidYMid slice'%3E %3Cdefs%3E %3Cpattern id='case-hatch' x='0' y='0' width='32' height='32' patternUnits='userSpaceOnUse' patternTransform='rotate(30)'%3E %3Cline x1='0' y1='0' x2='0' y2='32' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E %3C/pattern%3E %3CradialGradient id='case-glow-left' cx='0%' cy='50%' r='50%'%3E %3Cstop offset='0%' stop-color='%23F26419' stop-opacity='0.1'/%3E %3Cstop offset='100%' stop-color='%23F26419' stop-opacity='0'/%3E %3C/radialGradient%3E %3CradialGradient id='case-glow-right' cx='100%' cy='50%' r='50%'%3E %3Cstop offset='0%' stop-color='%234a9eff' stop-opacity='0.06'/%3E %3Cstop offset='100%' stop-color='%234a9eff' stop-opacity='0'/%3E %3C/radialGradient%3E %3C/defs%3E %3Crect width='100%' height='100%' fill='url(%23case-hatch)'/%3E %3Crect width='100%' height='100%' fill='url(%23case-glow-left)'/%3E %3Crect width='100%' height='100%' fill='url(%23case-glow-right)'/%3E %3Ccircle cx='8%' cy='15%' r='2' fill='rgba(242,100,25,0.18)'/%3E %3Ccircle cx='92%' cy='20%' r='1.5' fill='rgba(255,255,255,0.08)'/%3E %3Ccircle cx='5%' cy='80%' r='1.5' fill='rgba(255,255,255,0.06)'/%3E %3Ccircle cx='95%' cy='75%' r='2' fill='rgba(242,100,25,0.12)'/%3E %3Ccircle cx='50%' cy='5%' r='1.5' fill='rgba(255,255,255,0.05)'/%3E %3Cline x1='0' y1='100%' x2='30%' y2='0' stroke='rgba(242,100,25,0.04)' stroke-width='1.5'/%3E %3Cline x1='70%' y1='100%' x2='100%' y2='0' stroke='rgba(255,255,255,0.03)' stroke-width='1.5'/%3E %3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  animation: bgFadeIn 1.2s ease forwards;
}

/* ── CHART SVG BACKGROUND ─────────────────────────────────────── */
.chart-svg-bg {
  width: 100%;
  height: 100px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg class='chart-svg' viewBox='0 0 260 100' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E %3Cline x1='0' y1='0' x2='260' y2='0' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E %3Cline x1='0' y1='20' x2='260' y2='20' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E %3Cline x1='0' y1='40' x2='260' y2='40' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E %3Cline x1='0' y1='60' x2='260' y2='60' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E %3Cline x1='0' y1='80' x2='260' y2='80' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E %3Cline x1='0' y1='100' x2='260' y2='100' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E %3Cpolyline class='chart-line' points='0,92 40,80 80,65 120,45 170,22 220,10 260,3' fill='none' stroke='%234a9eff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E %3Cpolyline class='chart-line' points='0,95 40,86 80,75 120,58 170,40 220,28 260,18' fill='none' stroke='%23F26419' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E %3Cpolyline class='chart-line' points='0,97 40,92 80,86 120,76 170,65 220,56 260,46' fill='none' stroke='%234caf82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3Cpolyline class='chart-line' points='0,98 40,95 80,90 120,83 170,76 220,69 260,62' fill='none' stroke='%23f0c040' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E %3Ctext x='224' y='9' fill='%234a9eff' font-size='8' font-family='Inter,sans-serif' font-weight='700'%3E123.2%3C/text%3E %3Ctext x='224' y='22' fill='%23F26419' font-size='8' font-family='Inter,sans-serif' font-weight='700'%3E125.2%3C/text%3E %3Ctext x='224' y='48' fill='%234caf82' font-size='8' font-family='Inter,sans-serif' font-weight='700'%3E115.3%3C/text%3E %3Ctext x='224' y='63' fill='%23f0c040' font-size='8' font-family='Inter,sans-serif' font-weight='700'%3E90.6%3C/text%3E %3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ── FILE ATTACHMENT ICON ─────────────────────────────────────── */
.attach-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z' stroke='%23888' stroke-width='2'/%3E%3Cpolyline points='14,2 14,8 20,8' stroke='%23888' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ── SERVICES SECTION BACKGROUND ──────────────────────────────── */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg class='section-bg-svg' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' preserveAspectRatio='xMidYMid slice'%3E %3Cdefs%3E %3Cpattern id='svc-mesh' x='0' y='0' width='60' height='60' patternUnits='userSpaceOnUse'%3E %3Cline x1='0' y1='30' x2='60' y2='30' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E %3Cline x1='30' y1='0' x2='30' y2='60' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E %3Cline x1='0' y1='0' x2='60' y2='60' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E %3Cline x1='60' y1='0' x2='0' y2='60' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E %3Ccircle cx='0' cy='0' r='1.2' fill='rgba(255,255,255,0.05)'/%3E %3Ccircle cx='60' cy='0' r='1.2' fill='rgba(255,255,255,0.05)'/%3E %3Ccircle cx='0' cy='60' r='1.2' fill='rgba(255,255,255,0.05)'/%3E %3Ccircle cx='60' cy='60' r='1.2' fill='rgba(255,255,255,0.05)'/%3E %3Ccircle cx='30' cy='30' r='1' fill='rgba(242,100,25,0.1)'/%3E %3C/pattern%3E %3CradialGradient id='svc-top-glow' cx='50%' cy='0%' r='50%'%3E %3Cstop offset='0%' stop-color='%23F26419' stop-opacity='0.12'/%3E %3Cstop offset='100%' stop-color='%23F26419' stop-opacity='0'/%3E %3C/radialGradient%3E %3CradialGradient id='svc-bot-glow' cx='50%' cy='100%' r='45%'%3E %3Cstop offset='0%' stop-color='%234a9eff' stop-opacity='0.07'/%3E %3Cstop offset='100%' stop-color='%234a9eff' stop-opacity='0'/%3E %3C/radialGradient%3E %3CradialGradient id='svc-fade' cx='50%' cy='50%' r='60%'%3E %3Cstop offset='20%' stop-color='white' stop-opacity='1'/%3E %3Cstop offset='100%' stop-color='white' stop-opacity='0'/%3E %3C/radialGradient%3E %3Cmask id='svc-mask'%3E %3Crect width='100%' height='100%' fill='url(%23svc-fade)'/%3E %3C/mask%3E %3C/defs%3E %3Crect width='100%' height='100%' fill='url(%23svc-mesh)' mask='url(%23svc-mask)'/%3E %3Crect width='100%' height='100%' fill='url(%23svc-top-glow)'/%3E %3Crect width='100%' height='100%' fill='url(%23svc-bot-glow)'/%3E %3Cpolyline points='20,20 5,20 5,5 20,5' fill='none' stroke='rgba(242,100,25,0.14)' stroke-width='1.5'/%3E %3Cpolyline points='calc(100% - 20px),20 calc(100% - 5px),20 calc(100% - 5px),5 calc(100% - 20px),5' fill='none' stroke='rgba(242,100,25,0.14)' stroke-width='1.5'/%3E %3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  animation: bgFadeIn 1.2s ease forwards;
}

/* ── TESTIMONIALS SECTION BACKGROUND ──────────────────────────── */
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg class='section-bg-svg' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' preserveAspectRatio='xMidYMid slice'%3E %3Cdefs%3E %3CradialGradient id='testi-center-glow' cx='50%' cy='50%' r='50%'%3E %3Cstop offset='0%' stop-color='%23F26419' stop-opacity='0.08'/%3E %3Cstop offset='60%' stop-color='%23F26419' stop-opacity='0.02'/%3E %3Cstop offset='100%' stop-color='%23F26419' stop-opacity='0'/%3E %3C/radialGradient%3E %3Cpattern id='testi-dots' x='0' y='0' width='28' height='28' patternUnits='userSpaceOnUse'%3E %3Ccircle cx='1' cy='1' r='0.8' fill='rgba(255,255,255,0.055)'/%3E %3C/pattern%3E %3C/defs%3E %3Crect width='100%' height='100%' fill='url(%23testi-dots)'/%3E %3Crect width='100%' height='100%' fill='url(%23testi-center-glow)'/%3E %3Cellipse cx='50%' cy='50%' rx='20%' ry='12%' fill='none' stroke='rgba(242,100,25,0.08)' stroke-width='1'/%3E %3Cellipse cx='50%' cy='50%' rx='35%' ry='20%' fill='none' stroke='rgba(242,100,25,0.06)' stroke-width='1'/%3E %3Cellipse cx='50%' cy='50%' rx='50%' ry='30%' fill='none' stroke='rgba(242,100,25,0.04)' stroke-width='1'/%3E %3Cellipse cx='50%' cy='50%' rx='65%' ry='40%' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E %3Cellipse cx='50%' cy='50%' rx='80%' ry='50%' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E %3Ccircle cx='10%' cy='12%' r='1.2' fill='rgba(255,255,255,0.25)'/%3E %3Ccircle cx='88%' cy='8%' r='1' fill='rgba(255,255,255,0.2)'/%3E %3Ccircle cx='23%' cy='88%' r='1.2' fill='rgba(255,255,255,0.18)'/%3E %3Ccircle cx='75%' cy='82%' r='1' fill='rgba(255,255,255,0.22)'/%3E %3Ccircle cx='92%' cy='55%' r='1.5' fill='rgba(242,100,25,0.3)'/%3E %3Ccircle cx='5%' cy='48%' r='1.5' fill='rgba(242,100,25,0.25)'/%3E %3Ccircle cx='48%' cy='3%' r='1' fill='rgba(255,255,255,0.15)'/%3E %3Ccircle cx='55%' cy='96%' r='1' fill='rgba(255,255,255,0.15)'/%3E %3Cline x1='50%' y1='0' x2='50%' y2='100%' stroke='rgba(255,255,255,0.015)' stroke-width='1'/%3E %3Cline x1='0' y1='50%' x2='100%' y2='50%' stroke='rgba(255,255,255,0.015)' stroke-width='1'/%3E %3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  animation: bgFadeIn 1.2s ease forwards;
}

/* ── BOOKING SECTION BACKGROUND ───────────────────────────────── */
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg class='section-bg-svg' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' preserveAspectRatio='xMidYMid slice'%3E %3Cdefs%3E %3CradialGradient id='booking-halo' cx='50%' cy='50%' r='55%'%3E %3Cstop offset='0%' stop-color='%23F26419' stop-opacity='0.14'/%3E %3Cstop offset='50%' stop-color='%23F26419' stop-opacity='0.04'/%3E %3Cstop offset='100%' stop-color='%23F26419' stop-opacity='0'/%3E %3C/radialGradient%3E %3Cpattern id='booking-dots' x='0' y='0' width='24' height='24' patternUnits='userSpaceOnUse'%3E %3Ccircle cx='1' cy='1' r='0.7' fill='rgba(255,255,255,0.06)'/%3E %3C/pattern%3E %3C/defs%3E %3Crect width='100%' height='100%' fill='url(%23booking-dots)'/%3E %3Crect width='100%' height='100%' fill='url(%23booking-halo)'/%3E %3Cline x1='50%' y1='50%' x2='0%' y2='0%' stroke='rgba(242,100,25,0.05)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='25%' y2='0%' stroke='rgba(242,100,25,0.04)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='50%' y2='0%' stroke='rgba(242,100,25,0.05)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='75%' y2='0%' stroke='rgba(242,100,25,0.04)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='100%' y2='0%' stroke='rgba(242,100,25,0.05)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='100%' y2='50%' stroke='rgba(242,100,25,0.04)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='100%' y2='100%' stroke='rgba(242,100,25,0.05)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='50%' y2='100%' stroke='rgba(242,100,25,0.04)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='0%' y2='100%' stroke='rgba(242,100,25,0.05)' stroke-width='1'/%3E %3Cline x1='50%' y1='50%' x2='0%' y2='50%' stroke='rgba(242,100,25,0.04)' stroke-width='1'/%3E %3Ccircle cx='50%' cy='50%' r='80' fill='none' stroke='rgba(242,100,25,0.07)' stroke-width='1'/%3E %3Ccircle cx='50%' cy='50%' r='150' fill='none' stroke='rgba(242,100,25,0.05)' stroke-width='1'/%3E %3Ccircle cx='50%' cy='50%' r='240' fill='none' stroke='rgba(242,100,25,0.03)' stroke-width='1'/%3E %3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  animation: bgFadeIn 1.2s ease forwards;
}

/* ── BOOKING CALENDAR ICON ─────────────────────────────────────── */
.booking-cal-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E %3Crect x='3' y='4' width='18' height='18' rx='2' stroke='white' stroke-width='2'/%3E %3Cpath d='M16 2V6M8 2V6M3 10H21' stroke='white' stroke-width='2' stroke-linecap='round'/%3E %3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ── FAQ SECTION BACKGROUND ────────────────────────────────────── */
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg class='section-bg-svg' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' preserveAspectRatio='xMidYMid slice'%3E %3Cdefs%3E %3CradialGradient id='faq-glow-tl' cx='0%' cy='0%' r='50%'%3E %3Cstop offset='0%' stop-color='%23F26419' stop-opacity='0.1'/%3E %3Cstop offset='100%' stop-color='%23F26419' stop-opacity='0'/%3E %3C/radialGradient%3E %3CradialGradient id='faq-glow-br' cx='100%' cy='100%' r='50%'%3E %3Cstop offset='0%' stop-color='%234a9eff' stop-opacity='0.07'/%3E %3Cstop offset='100%' stop-color='%234a9eff' stop-opacity='0'/%3E %3C/radialGradient%3E %3Cpattern id='faq-dots' x='0' y='0' width='32' height='32' patternUnits='userSpaceOnUse'%3E %3Ccircle cx='1' cy='1' r='0.9' fill='rgba(255,255,255,0.05)'/%3E %3C/pattern%3E %3C/defs%3E %3Crect width='100%' height='100%' fill='url(%23faq-dots)'/%3E %3Crect width='100%' height='100%' fill='url(%23faq-glow-tl)'/%3E %3Crect width='100%' height='100%' fill='url(%23faq-glow-br)'/%3E %3Cpath d='M -20 80 Q 60 40, 120 90 Q 180 140, 240 80 Q 300 20, 360 70' fill='none' stroke='rgba(242,100,25,0.07)' stroke-width='1.5'/%3E %3Cpath d='M -20 110 Q 60 70, 120 120 Q 180 170, 240 110 Q 300 50, 360 100' fill='none' stroke='rgba(242,100,25,0.05)' stroke-width='1.5'/%3E %3Cpath d='M -20 140 Q 60 100, 120 150 Q 180 200, 240 140 Q 300 80, 360 130' fill='none' stroke='rgba(242,100,25,0.04)' stroke-width='1.5'/%3E %3Cpath d='M calc(100% - 360px) 80 Q calc(100% - 280px) 40, calc(100% - 220px) 90 Q calc(100% - 160px) 140, calc(100% - 100px) 80 Q calc(100% - 40px) 20, calc(100% + 20px) 70' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1.5'/%3E %3Cpath d='M calc(100% - 360px) 140 Q calc(100% - 280px) 100, calc(100% - 220px) 150 Q calc(100% - 160px) 200, calc(100% - 100px) 140 Q calc(100% - 40px) 80, calc(100% + 20px) 130' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1.5'/%3E %3Crect x='30' y='30' width='8' height='8' fill='none' stroke='rgba(242,100,25,0.2)' stroke-width='1' transform='rotate(15, 34, 34)'/%3E %3Crect x='calc(100% - 38px)' y='30' width='8' height='8' fill='none' stroke='rgba(242,100,25,0.15)' stroke-width='1' transform='rotate(-15)'/%3E %3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  animation: bgFadeIn 1.2s ease forwards;
}

/* ── SOCIAL ICONS ───────────────────────────────────────────────── */
.social-svg {
  display: block;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-twitter   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.741l7.73-8.835L1.254 2.25H8.08l4.713 5.923zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E"); }
.social-linkedin  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6zM2 9h4v12H2z'/%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3C/svg%3E"); }
.social-instagram { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E"); }

/* Social icon color tinting via filter on hover (since bg-image can't use currentColor) */
.social-icon:hover .social-twitter,
.social-icon:hover .social-linkedin,
.social-icon:hover .social-instagram {
  filter: invert(47%) sepia(99%) saturate(456%) hue-rotate(348deg) brightness(100%) contrast(94%);
}

/* ── CHART LEGEND DOT COLORS ────────────────────────────────────── */
.chart-legend .legend-a { background: #4a9eff; }
.chart-legend .legend-b { background: #F26419; }
.chart-legend .legend-c { background: #4caf82; }
.chart-legend .legend-d { background: #f0c040; }
