/* =====================================================================
   Syndicate Systems — Premium IT Staffing & OPT Placement
   Global Design System & Component Styles
   Author: Syndicate Systems
   ===================================================================== */

/* -------------------------------------------------
   1. DESIGN TOKENS
--------------------------------------------------*/
:root {
  /* Brand palette */
  --navy: #1F215B;
  --navy-700: #191b4a;
  --navy-900: #10112e;
  --gold: #AD9155;
  --gold-soft: #c7ac74;
  --white: #FEFEFE;
  --gray-medium: #6D6D72;
  --gray-light: #9998A0;

  /* Semantic — Light theme (default) */
  --bg: #FEFEFE;
  --bg-alt: #f6f6f9;
  --bg-elevated: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.6);
  --surface-glass-border: rgba(31, 33, 91, 0.08);
  --text: #1b1c2e;
  --text-soft: #4a4b5c;
  --text-muted: #6D6D72;
  --heading: #1F215B;
  --border: rgba(31, 33, 91, 0.1);
  --shadow-sm: 0 2px 8px rgba(31, 33, 91, 0.06);
  --shadow-md: 0 12px 32px rgba(31, 33, 91, 0.09);
  --shadow-lg: 0 30px 70px rgba(31, 33, 91, 0.14);
  --shadow-gold: 0 16px 40px rgba(173, 145, 85, 0.28);

  /* Typography */
  --font-head: "Space Grotesk", "Poppins", system-ui, sans-serif;
  --font-body: "Manrope", "Inter", system-ui, sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.6rem, 6vw, 5rem);
  --fs-h1: clamp(2.2rem, 4.6vw, 3.6rem);
  --fs-h2: clamp(1.8rem, 3.4vw, 2.7rem);
  --fs-h3: clamp(1.3rem, 2.1vw, 1.65rem);
  --fs-lead: clamp(1.05rem, 1.5vw, 1.3rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Spacing & radius */
  --container: 1200px;
  --container-wide: 1360px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --section-y: clamp(4rem, 9vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.4s;

  --grad-brand: linear-gradient(135deg, #1F215B 0%, #2d3080 55%, #AD9155 130%);
  --grad-gold: linear-gradient(135deg, #AD9155 0%, #c7ac74 100%);
  --grad-mesh: radial-gradient(60% 60% at 20% 20%, rgba(173,145,85,0.18) 0%, transparent 60%),
               radial-gradient(50% 50% at 85% 15%, rgba(31,33,91,0.16) 0%, transparent 60%),
               radial-gradient(60% 55% at 70% 90%, rgba(45,48,128,0.14) 0%, transparent 60%);
}

/* Dark theme */
[data-theme="dark"] {
  --bg: #0d0e22;
  --bg-alt: #14162f;
  --bg-elevated: #191b38;
  --surface-glass: rgba(25, 27, 56, 0.55);
  --surface-glass-border: rgba(255, 255, 255, 0.08);
  --text: #ececf4;
  --text-soft: #c3c4d6;
  --text-muted: #9998A0;
  --heading: #ffffff;
  --border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.6);
  --grad-mesh: radial-gradient(60% 60% at 20% 20%, rgba(173,145,85,0.22) 0%, transparent 60%),
               radial-gradient(50% 50% at 85% 15%, rgba(80,84,190,0.28) 0%, transparent 60%),
               radial-gradient(60% 55% at 70% 90%, rgba(45,48,128,0.3) 0%, transparent 60%);
}

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

/* Accessibility: visually-hidden skip link that appears on focus */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto; z-index: 10000; padding: 0.7rem 1.2rem; background: #1F215B; color: #fff; border-radius: 8px; font-family: "Space Grotesk", sans-serif; }
/* WordPress core alignment/caption helpers */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 0.4rem; }
.page-links { margin-top: 1.5rem; font-family: var(--font-head); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--heading); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { color: var(--text-soft); }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #fff; }

/* -------------------------------------------------
   3. LAYOUT HELPERS
--------------------------------------------------*/
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  padding: 0.4rem 0.9rem; border: 1px solid var(--surface-glass-border);
  border-radius: 100px; background: var(--surface-glass);
  backdrop-filter: blur(8px); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(173,145,85,0.2); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head.text-center { margin-inline: auto; }
.section-head p { font-size: var(--fs-lead); color: var(--text-muted); margin-top: 0.9rem; }
.gradient-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.navy-text { color: var(--navy); }
[data-theme="dark"] .navy-text { color: var(--gold-soft); }

/* -------------------------------------------------
   4. BUTTONS
--------------------------------------------------*/
.btn {
  --pad-y: 0.95rem; --pad-x: 1.7rem;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: var(--pad-y) var(--pad-x); border-radius: 100px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  overflow: hidden; white-space: nowrap; isolation: isolate;
}
.btn i { transition: transform var(--dur) var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

.btn--primary { background: var(--grad-gold); color: #211d10; box-shadow: var(--shadow-gold); }
.btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #c7ac74, #AD9155);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.btn--primary:hover::after { opacity: 1; }

.btn--navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.btn--navy:hover { background: var(--navy-700); }

.btn--ghost { background: var(--surface-glass); color: var(--text); border: 1px solid var(--border); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--light { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,0.22); }

.btn--sm { --pad-y: 0.6rem; --pad-x: 1.15rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* Shine sweep */
.btn--shine::before {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg); transition: left 0.7s var(--ease); z-index: 1;
}
.btn--shine:hover::before { left: 130%; }

/* -------------------------------------------------
   5. PAGE LOADER
--------------------------------------------------*/
.loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: var(--navy-900); transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark { text-align: center; }
.loader__ring {
  width: 64px; height: 64px; margin: 0 auto 1.1rem; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.14); border-top-color: var(--gold);
  animation: spin 0.9s linear infinite;
}
.loader__text { font-family: var(--font-head); color: #fff; letter-spacing: 0.35em; font-size: 0.75rem; text-transform: uppercase; opacity: 0.8; }
.loader__text b { color: var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }

/* -------------------------------------------------
   6. SCROLL PROGRESS
--------------------------------------------------*/
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-gold); z-index: 1000; transition: width 0.1s linear;
}

/* -------------------------------------------------
   7. HEADER / NAVBAR
--------------------------------------------------*/
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
  padding-block: 1.1rem;
}
.header.is-scrolled {
  background: var(--surface-glass); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-glass-border); box-shadow: var(--shadow-sm);
  padding-block: 0.6rem;
}
.header.is-hidden { transform: translateY(-110%); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.logo { display: inline-flex; align-items: center; gap: 0.65rem; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--heading); }
.logo__mark { width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-gold); }
.logo__mark svg { width: 22px; height: 22px; }
.logo span b { color: var(--gold); }
.logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }

.nav__menu { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative; font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: var(--text-soft); padding: 0.5rem 0.9rem; border-radius: 100px;
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 0.15rem; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px; background: var(--gold); transition: width var(--dur) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--heading); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 20px; }

.nav__actions { display: flex; align-items: center; gap: 0.7rem; }

.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: var(--text); border: 1px solid var(--border); background: var(--surface-glass);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.theme-toggle:hover { transform: rotate(-20deg) scale(1.08); color: var(--gold); border-color: var(--gold); }
.theme-toggle .fa-sun { display: none; }
[data-theme="dark"] .theme-toggle .fa-sun { display: block; }
[data-theme="dark"] .theme-toggle .fa-moon { display: none; }

.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface-glass); position: relative; }
.hamburger span { position: absolute; left: 12px; width: 20px; height: 2px; background: var(--heading); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 899; padding: 6rem 1.5rem 2rem;
  background: var(--bg); transform: translateX(100%);
  transition: transform 0.45s var(--ease); overflow-y: auto; display: flex; flex-direction: column; gap: 0.3rem;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a.nav__link { font-size: 1.4rem; padding: 0.9rem 0.4rem; border-bottom: 1px solid var(--border); border-radius: 0; }
.mobile-nav a.nav__link::after { display: none; }
.mobile-nav .btn { margin-top: 1.4rem; }
body.no-scroll { overflow: hidden; }

/* -------------------------------------------------
   8. HERO (shared)
--------------------------------------------------*/
.hero { position: relative; padding-top: clamp(8rem, 16vw, 11rem); padding-bottom: var(--section-y); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--grad-mesh); }
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 80%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero--center .hero__inner { grid-template-columns: 1fr; max-width: 860px; margin-inline: auto; text-align: center; }
.hero--center .eyebrow { margin-inline: auto; }
.hero__title { font-size: var(--fs-display); margin-bottom: 1.3rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__lead { font-size: var(--fs-lead); color: var(--text-muted); max-width: 46ch; margin-bottom: 2rem; }
.hero--center .hero__lead { margin-inline: auto; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero--center .hero__cta { justify-content: center; }
.hero__trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__avatars { display: flex; }
.hero__avatars span { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -12px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; color: #fff; }
.hero__avatars span:first-child { margin-left: 0; }
.hero__trust-text { font-size: 0.9rem; color: var(--text-muted); }
.hero__trust-text b { color: var(--heading); }
.hero__stars { color: var(--gold); letter-spacing: 2px; }

/* Floating visual card cluster */
.hero__visual { position: relative; min-height: 440px; }
.float-card {
  position: absolute; background: var(--surface-glass); backdrop-filter: blur(18px);
  border: 1px solid var(--surface-glass-border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.25rem; will-change: transform;
}
.float-card__row { display: flex; align-items: center; gap: 0.8rem; }
.float-card__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.float-card__t { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--heading); }
.float-card__s { font-size: 0.78rem; color: var(--text-muted); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(6px); z-index: -1; }
.hero__portrait {
  position: absolute; inset: 8% 12%; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--grad-brand); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.hero__portrait svg { width: 78%; opacity: 0.95; }

.blob { position: absolute; z-index: -1; filter: blur(40px); opacity: 0.5; border-radius: 50%; animation: floatBlob 14s ease-in-out infinite; }
@keyframes floatBlob { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.15); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* -------------------------------------------------
   9. MARQUEE / LOGO CAROUSEL
--------------------------------------------------*/
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--text-muted); opacity: 0.7; transition: opacity var(--dur), color var(--dur); }
.marquee__item:hover { opacity: 1; color: var(--navy); }
[data-theme="dark"] .marquee__item:hover { color: var(--gold-soft); }
.marquee__item i { color: var(--gold); font-size: 1.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trusted-label { text-align: center; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; font-family: var(--font-head); font-weight: 600; }

/* -------------------------------------------------
   10. STAT COUNTERS
--------------------------------------------------*/
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat {
  text-align: center; padding: 2rem 1.2rem; border-radius: var(--radius);
  background: var(--bg-elevated); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.1rem); color: var(--navy); line-height: 1; }
[data-theme="dark"] .stat__num { color: var(--gold-soft); }
.stat__num .plus { color: var(--gold); }
.stat__label { margin-top: 0.6rem; color: var(--text-muted); font-size: 0.95rem; }

/* -------------------------------------------------
   11. FEATURE / WHY-CHOOSE CARDS
--------------------------------------------------*/
.cards { display: grid; grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative; padding: 2rem; border-radius: var(--radius-lg);
  background: var(--bg-elevated); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit;
  background: linear-gradient(135deg, rgba(173,145,85,0.6), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity var(--dur) var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.4rem; color: var(--gold); background: rgba(173,145,85,0.12);
  margin-bottom: 1.3rem; transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.card:hover .card__icon { transform: rotate(-8deg) scale(1.06); background: var(--grad-gold); color: #fff; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.96rem; }
.card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--gold); }
.card__link i { transition: transform var(--dur) var(--ease); }
.card:hover .card__link i { transform: translateX(4px); }

/* -------------------------------------------------
   12. SERVICES GRID
--------------------------------------------------*/
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.svc {
  position: relative; padding: 1.9rem; border-radius: var(--radius);
  background: var(--bg-elevated); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); overflow: hidden;
}
.svc::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px;
  background: var(--grad-gold); opacity: 0.08; border-radius: 50%; transition: transform var(--dur) var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc:hover::after { transform: scale(1.6); }
.svc__num { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em; }
.svc__icon { width: 52px; height: 52px; margin: 0.8rem 0 1rem; color: var(--navy); }
[data-theme="dark"] .svc__icon { color: var(--gold-soft); }
.svc h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.svc p { font-size: 0.92rem; }

/* -------------------------------------------------
   13. HOW IT WORKS / TIMELINE
--------------------------------------------------*/
.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.steps::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); z-index: 0; }
.step { position: relative; text-align: center; z-index: 1; }
.step__dot {
  width: 68px; height: 68px; margin: 0 auto 1.1rem; border-radius: 20px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #fff;
  background: var(--grad-brand); box-shadow: var(--shadow-md); position: relative;
}
.step__dot i { font-size: 1.3rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; }

.timeline { position: relative; max-width: 780px; margin-inline: auto; padding-left: 1rem; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), transparent); }
.tl-item { position: relative; padding: 0 0 2.4rem 3.4rem; }
.tl-item::before { content: ""; position: absolute; left: 10px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(173,145,85,0.18); }
.tl-item .year { font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 0.9rem; }
.tl-item h3 { font-size: 1.15rem; margin: 0.25rem 0 0.4rem; }
.tl-item p { font-size: 0.94rem; }

/* -------------------------------------------------
   14. TESTIMONIALS
--------------------------------------------------*/
.testi-card {
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; gap: 1.1rem;
}
.testi-card .quote-mark { font-size: 2.6rem; color: var(--gold); line-height: 0.6; font-family: var(--font-head); }
.testi-card p { color: var(--text-soft); font-size: 1.02rem; flex: 1; }
.testi-stars { color: var(--gold); letter-spacing: 2px; }
.testi-person { display: flex; align-items: center; gap: 0.85rem; }
.testi-person .av { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; flex: none; }
.testi-person b { display: block; font-family: var(--font-head); color: var(--heading); }
.testi-person span { font-size: 0.85rem; color: var(--text-muted); }

/* -------------------------------------------------
   15. FAQ ACCORDION
--------------------------------------------------*/
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-elevated); margin-bottom: 1rem; overflow: hidden; transition: box-shadow var(--dur) var(--ease); }
.faq__item.is-open { box-shadow: var(--shadow-md); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.5rem; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--heading);
}
.faq__q i { flex: none; color: var(--gold); transition: transform var(--dur) var(--ease); }
.faq__item.is-open .faq__q i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a p { padding: 0 1.5rem 1.4rem; font-size: 0.98rem; }

/* -------------------------------------------------
   16. BLOG
--------------------------------------------------*/
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.post {
  display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-elevated); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post__media { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; }
.post__media svg { width: 100%; height: 100%; }
.post__tag { position: absolute; top: 1rem; left: 1rem; background: var(--surface-glass); backdrop-filter: blur(8px); color: var(--heading); font-size: 0.72rem; font-weight: 600; font-family: var(--font-head); padding: 0.35rem 0.8rem; border-radius: 100px; border: 1px solid var(--surface-glass-border); }
.post__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.post__meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); }
.post__body h3 { font-size: 1.15rem; line-height: 1.3; }
.post__body h3 a:hover { color: var(--gold); }
.post__body p { font-size: 0.92rem; }
.post__more { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--gold); display: inline-flex; gap: 0.4rem; align-items: center; }
.post--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; }
.post--featured .post__media { aspect-ratio: auto; height: 100%; min-height: 320px; }
.post--featured .post__body { padding: clamp(1.8rem, 4vw, 3rem); justify-content: center; }
.post--featured h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }

.blog-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { padding: 0.5rem 1.1rem; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-elevated); font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; color: var(--text-soft); transition: all var(--dur) var(--ease); }
.chip:hover, .chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.search-box { position: relative; }
.search-box input { padding: 0.75rem 1rem 0.75rem 2.6rem; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text); min-width: 240px; font-family: var(--font-body); }
.search-box i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-elevated); font-family: var(--font-head); font-weight: 600; color: var(--text-soft); transition: all var(--dur) var(--ease); }
.pagination a:hover, .pagination a[aria-current="page"] { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Article */
.article { max-width: 760px; margin-inline: auto; }
.article h2 { margin: 2.4rem 0 1rem; font-size: 1.7rem; }
.article h3 { margin: 1.8rem 0 0.8rem; }
.article p { margin-bottom: 1.2rem; font-size: 1.08rem; color: var(--text-soft); }
.article ul.dot { margin: 0 0 1.4rem 1.2rem; }
.article ul.dot li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; color: var(--text-soft); }
.article ul.dot li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--gold); font-size: 0.85rem; }
.article blockquote { border-left: 4px solid var(--gold); padding: 0.5rem 0 0.5rem 1.5rem; margin: 1.8rem 0; font-family: var(--font-head); font-size: 1.2rem; color: var(--heading); font-style: italic; }

/* -------------------------------------------------
   17. CONTACT / FORM
--------------------------------------------------*/
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-card { background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.info-card::before { content: ""; position: absolute; right: -60px; bottom: -60px; width: 200px; height: 200px; background: rgba(173,145,85,0.4); filter: blur(50px); border-radius: 50%; }
.info-card h3 { color: #fff; }
.info-card p { color: rgba(255,255,255,0.8); }
.info-list { margin-top: 1.8rem; display: grid; gap: 1.2rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,0.12); display: grid; place-items: center; color: var(--gold-soft); flex: none; }
.info-list b { display: block; font-family: var(--font-head); }
.info-list span { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.info-social { display: flex; gap: 0.7rem; margin-top: 2rem; }
.info-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.12); display: grid; place-items: center; color: #fff; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.info-social a:hover { background: var(--gold); transform: translateY(-3px); }

.form { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.45rem; color: var(--heading); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(173,145,85,0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.file-drop { border: 2px dashed var(--border); border-radius: 14px; padding: 1.4rem; text-align: center; cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); color: var(--text-muted); }
.file-drop:hover { border-color: var(--gold); background: rgba(173,145,85,0.05); }
.file-drop i { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.4rem; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.8rem; text-align: center; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.form-success i { font-size: 3rem; color: #35b56a; margin-bottom: 1rem; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 340px; background: var(--bg-alt); position: relative; display: grid; place-items: center; }
.map-embed svg { width: 100%; height: 100%; }
.map-pin { position: absolute; top: 46%; left: 50%; transform: translate(-50%,-100%); color: var(--gold); font-size: 2.4rem; animation: floaty 2.5s ease-in-out infinite; filter: drop-shadow(0 6px 10px rgba(31,33,91,0.3)); }

/* -------------------------------------------------
   18. CTA BANNER
--------------------------------------------------*/
.cta-banner {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: var(--grad-brand); color: #fff; text-align: center;
  padding: clamp(2.6rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); box-shadow: var(--shadow-lg);
}
.cta-banner::before, .cta-banner::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); }
.cta-banner::before { width: 260px; height: 260px; background: rgba(173,145,85,0.5); top: -80px; left: -60px; }
.cta-banner::after { width: 300px; height: 300px; background: rgba(80,84,190,0.5); bottom: -100px; right: -60px; }
.cta-banner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: var(--fs-lead); max-width: 560px; margin: 1rem auto 2rem; position: relative; }
.cta-banner .hero__cta { justify-content: center; position: relative; }

/* -------------------------------------------------
   19. FOOTER
--------------------------------------------------*/
.footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding-top: clamp(3.5rem, 7vw, 6rem); position: relative; overflow: hidden; }
.footer .logo { color: #fff; }
.footer .logo small { color: rgba(255,255,255,0.5); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.94rem; margin-top: 1.1rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 1.2rem; }
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a { color: rgba(255,255,255,0.65); font-size: 0.94rem; }
.footer ul a:hover { color: var(--gold); }
.footer .newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer .newsletter-form input { flex: 1; padding: 0.8rem 1rem; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: #fff; }
.footer .newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.footer__social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 1.4rem; }

/* -------------------------------------------------
   20. FLOATING UI (WhatsApp, back-to-top, sticky CTA)
--------------------------------------------------*/
.floaties { position: fixed; right: 1.2rem; bottom: 1.4rem; z-index: 850; display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-end; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); font-size: 1.35rem; transition: transform var(--dur) var(--ease); position: relative; }
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab--wa { background: #25D366; }
.fab--wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }
.fab--top { background: var(--navy); opacity: 0; visibility: hidden; transform: translateY(20px); }
.fab--top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 840; display: none; padding: 0.7rem 1rem; background: var(--surface-glass); backdrop-filter: blur(16px); border-top: 1px solid var(--surface-glass-border); gap: 0.7rem; }
.sticky-cta .btn { flex: 1; }

/* -------------------------------------------------
   21. MODAL
--------------------------------------------------*/
.modal { position: fixed; inset: 0; z-index: 950; display: none; place-items: center; padding: 1.2rem; }
.modal.is-open { display: grid; }
.modal__overlay { position: absolute; inset: 0; background: rgba(16,17,46,0.6); backdrop-filter: blur(6px); animation: fade 0.3s var(--ease); }
.modal__box { position: relative; width: 100%; max-width: 520px; background: var(--bg-elevated); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-lg); animation: pop 0.4s var(--ease); max-height: 90vh; overflow-y: auto; }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); display: grid; place-items: center; color: var(--text); }
.modal__close:hover { color: var(--gold); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.97); } }

/* -------------------------------------------------
   22. COOKIE BANNER
--------------------------------------------------*/
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 860; max-width: 460px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.3rem 1.4rem; display: none; }
.cookie.show { display: block; animation: pop 0.5s var(--ease); }
.cookie p { font-size: 0.9rem; margin-bottom: 1rem; }
.cookie__actions { display: flex; gap: 0.6rem; }

/* -------------------------------------------------
   23. CUSTOM CURSOR
--------------------------------------------------*/
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold); transition: transform 0.15s var(--ease); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid var(--gold); transition: transform 0.25s var(--ease), width 0.25s, height 0.25s; }
.cursor-ring.is-active { width: 54px; height: 54px; background: rgba(173,145,85,0.1); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* -------------------------------------------------
   24. AOS-LIKE REVEAL (fallback, JS-driven)
--------------------------------------------------*/
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].in { transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* -------------------------------------------------
   25. PAGE HERO (inner pages)
--------------------------------------------------*/
.page-hero { position: relative; padding-top: clamp(9rem, 15vw, 12rem); padding-bottom: clamp(3rem, 7vw, 5rem); text-align: center; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__title { font-size: var(--fs-h1); margin-bottom: 1rem; }
.page-hero p { font-size: var(--fs-lead); color: var(--text-muted); max-width: 620px; margin-inline: auto; }
.breadcrumbs { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 1.4rem; font-size: 0.85rem; color: var(--text-muted); font-family: var(--font-head); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* Split content rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.media-panel { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--grad-brand); aspect-ratio: 4/3; display: grid; place-items: center; position: relative; }
.media-panel svg { width: 80%; }
.value-list { display: grid; gap: 1rem; margin-top: 1.4rem; }
.value-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.value-list .vc { width: 40px; height: 40px; border-radius: 12px; background: rgba(173,145,85,0.14); color: var(--gold); display: grid; place-items: center; flex: none; }
.value-list b { font-family: var(--font-head); color: var(--heading); display: block; }
.value-list span { font-size: 0.92rem; color: var(--text-muted); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.member { text-align: center; }
.member__photo { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--grad-brand); display: grid; place-items: center; margin-bottom: 1rem; position: relative; box-shadow: var(--shadow-sm); }
.member__photo svg { width: 60%; }
.member__photo .socials { position: absolute; inset: auto 0 0 0; padding: 0.8rem; display: flex; gap: 0.5rem; justify-content: center; background: linear-gradient(transparent, rgba(16,17,46,0.7)); opacity: 0; transition: opacity var(--dur) var(--ease); }
.member:hover .socials { opacity: 1; }
.member__photo .socials a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.2); color: #fff; display: grid; place-items: center; }
.member h3 { font-size: 1.1rem; }
.member span { color: var(--gold); font-size: 0.88rem; font-family: var(--font-head); font-weight: 500; }

/* Service section blocks */
.svc-block { padding-block: clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--border); }
.svc-block:last-child { border-bottom: none; }
.svc-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; margin-top: 1.4rem; }
.svc-benefits li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.95rem; }
.svc-benefits i { color: var(--gold); }
.mini-steps { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }
.mini-steps .ms { flex: 1; min-width: 130px; padding: 1rem; border-radius: var(--radius-sm); background: var(--bg-alt); border: 1px solid var(--border); }
.mini-steps .ms b { color: var(--gold); font-family: var(--font-head); font-size: 0.8rem; }
.mini-steps .ms p { font-size: 0.88rem; margin-top: 0.2rem; }

.svc-nav { position: sticky; top: 90px; display: grid; gap: 0.35rem; }
.svc-nav a { padding: 0.7rem 1rem; border-radius: 12px; font-family: var(--font-head); font-size: 0.9rem; color: var(--text-soft); border: 1px solid transparent; transition: all var(--dur) var(--ease); }
.svc-nav a:hover, .svc-nav a.active { background: var(--bg-alt); color: var(--gold); border-color: var(--border); }

/* -------------------------------------------------
   26. RESPONSIVE
--------------------------------------------------*/
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 380px; order: -1; }
  .cards, .svc-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .post--featured { grid-template-columns: 1fr; }
  .post--featured .post__media { min-height: 240px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav__menu, .nav__actions .btn { display: none; }
  .hamburger { display: block; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .split, .split--reverse .split__media { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .svc-benefits { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .floaties { bottom: 5rem; }
  .svc-nav { position: static; grid-auto-flow: column; overflow-x: auto; }
}
@media (max-width: 560px) {
  .cards, .svc-grid, .blog-grid, .team-grid, .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
/* WordPress Custom Logo */
.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    height: 100px;
    width: auto;
    max-width: 440px;
    object-fit: contain;
    display: block;
}