:root {
  /* Finalized Brand Identity: Full Peach & Warm Tone */
  --white: #FFFFFF;
  --bg: #FDF9F5;
  /* Warm Base */
  --bg-mid: #F5EEE6;
  /* Warm Secondary */
  --bg-deep: #EDE3D4;
  /* Warm Tertiary */

  /* Glass Effects */
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(70, 16, 9, 0.08);
  --glass-glow: rgba(255, 255, 255, 0.4);

  /* Surface Overrides */
  --navy: #ffd6d1;
  /* Full Peach Section Bg */
  --navy-mid: #ffe4e1;
  --navy-lift: #fef3f2;
  --navy-card: var(--white);

  /* Vibrant Peach Accents */
  --blue: #81261b;
  /* Deep Earth Red - Primary Accent */
  --blue-lt: #f25441;
  /* Vibrant Peach - Secondary Accent */
  --blue-glow: rgba(129, 38, 27, 0.14);
  --sky: #fb7d6e;

  /* High Contrast Type */
  --ink: #461009;
  --ink-mid: #81261b;
  --ink-muted: #bc2b19;

  /* Type on Peach (Dark on Light) */
  --chalk: #461009;
  --chalk-mid: rgba(70, 16, 9, 0.7);
  --chalk-dim: rgba(70, 16, 9, 0.4);

  /* Borders & Dividers */
  --border: rgba(70, 16, 9, 0.08);
  --border-dark: rgba(70, 16, 9, 0.12);

  --radius: 14px;
  --radius-lg: 24px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sky);
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  line-height: 1.75;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
}

.eyebrow--chalk {
  color: var(--blue-lt);
}

/* ============================
   LAYOUT
   ============================ */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.pad {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.s-white {
  background: var(--white);
  color: var(--ink);
}

.s-bg {
  background: var(--bg);
  color: var(--ink);
}

.s-bg-mid {
  background: var(--bg-mid);
  color: var(--ink);
}

.s-dark {
  background: var(--navy);
  color: var(--chalk);
}

.s-dark-mid {
  background: var(--navy-mid);
  color: var(--chalk);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: all 0.22s cubic-bezier(.4, 0, .2, 1);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn--blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 16px var(--blue-glow);
}

.btn--blue:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--blue-glow);
}

.btn--outline-chalk {
  background: transparent;
  border: 1.5px solid var(--ink-mid);
  color: var(--ink);
}

.btn--outline-chalk:hover {
  border-color: var(--ink);
  background: rgba(70, 16, 9, 0.05);
}

.btn--outline-ink {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink-mid);
}

.btn--outline-ink:hover {
  background: var(--bg-mid);
  color: var(--ink);
  border-color: var(--border);
}

.btn--navy {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn--navy:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
}

/* ============================
   NAV
   ============================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  transition: padding 0.3s ease;
}

#nav.scrolled {
  background: rgba(255, 214, 209, 0.96);
  /* Peach 200 Scrolled Bg */
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 4px 30px rgba(70, 16, 9, 0.08);
}

#nav.scrolled .nav-inner {
  padding: 14px 0;
}

.nav-wordmark {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--chalk);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-wordmark .blue {
  color: var(--blue-lt);
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 480px) {
  .nav-wordmark {
    font-size: 1.1rem !important;
  }

  .nav-btns {
    gap: 8px !important;
  }

  .nav-link-email span {
    display: none !important;
  }

  .btn--blue span {
    font-size: 0.72rem;
  }

  .nav-link-email {
    padding: 8px !important;
  }

  .btn--blue {
    padding: 8px 14px !important;
    gap: 4px !important;
  }
}

/* ============================
   HERO — structured, 75vh
   ============================ */
#hero {
  background: var(--navy);
  min-height: 75vh;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 214, 209, 0) 0%, rgba(255, 214, 209, 0.4) 100%);
  pointer-events: none;
}

/* Animated Luxury Mesh Background — Hero */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 84, 65, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(251, 125, 110, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 214, 209, 0.4) 0%, transparent 80%);
  animation: mesh-float 20s ease-in-out infinite alternate;
}

@keyframes mesh-float {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Floating Organic Blobs */
.hero-glow::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 84, 65, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: blob-float 25s infinite linear;
}

.hero-glow::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  filter: blur(100px);
  animation: blob-float 30s infinite linear reverse;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(100px, 50px) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Technical Line Grid — Subtle & Professional */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(70, 16, 9, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 16, 9, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
  z-index: 0;
}

/* Background Concentric Circles (Simplified) */
.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(70, 16, 9, 0.06);
}

.hero-circle-1 {
  width: 900px;
  height: 900px;
  top: -100px;
  right: -250px;
}

/* Horizontal rule line */
.hero-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

.hero-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: fit-content;
  position: relative;
  z-index: 1;
}

/* LEFT */
.hero-left {
  padding-right: 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-kicker-dash {
  width: 24px;
  height: 1.5px;
  background: var(--blue-lt);
  flex-shrink: 0;
}

/* HERO responsive widths */
.hero-h1 {
  color: var(--chalk);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.hero-h1 em {
  color: var(--blue-lt);
  font-style: italic;
  display: block;
}

.hero-sub {
  font-size: 0.975rem;
  color: var(--chalk-mid);
  margin-bottom: 2rem;
  max-width: 640px;
  line-height: 1.75;
}

.hero-sub strong {
  color: var(--chalk);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* RIGHT — structured data panel */
.hero-right {
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
  display: block;
}

.hero-panel {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid var(--glass-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(70, 16, 9, 0.12),
    inset 0 0 0 1px var(--glass-glow);
}

.hero-panel-header {
  background: var(--blue);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-panel-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-panel-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(74, 222, 128, 0);
  }
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.hero-stat {
  background: var(--white);
  padding: 1.4rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.hero-stat:hover {
  background: var(--bg);
}

.hero-stat-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-val .accent {
  color: var(--blue);
}

.hero-stat-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-panel-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.country-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

.country-sep {
  color: var(--border);
  font-size: 0.7rem;
}

.hero-cert-strip {
  padding: 12px 20px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cert-chip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-lt);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ============================
   CRED BAR
   ============================ */
#cred-bar {
  background: var(--bg);
  padding: 15px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

#cred-bar::before,
#cred-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

#cred-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

#cred-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.cred-ticker {
  display: flex;
  overflow: hidden;
}

.cred-track {
  display: flex;
  flex-shrink: 0;
  animation: ticker 36s linear infinite;
}

.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 36px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-mid);
}

.cred-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================
   ABOUT
   ============================ */
#about {
  background: var(--white);
  overflow: hidden;
  position: relative;
}

#about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 16, 9, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 16, 9, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 100% 0%, black 0%, transparent 70%);
  pointer-events: none;
}

/* About specific decorative circle */
#about::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(70, 16, 9, 0.06);
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  pointer-events: none;
}

.about-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(242, 84, 65, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-label {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-heading {
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.about-body {
  color: var(--ink-mid);
  font-size: 1rem;
}

.about-body p+p {
  margin-top: 1rem;
}

/* ABOUT stats — light style */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.stat-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

.stat-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.stat-val {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}

.stat-val .sup {
  font-size: 1.4rem;
  color: var(--blue);
}

.stat-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Country coverage row */
#about {
  background: var(--white);
}

.about-intro {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.about-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.about-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

.about-text-body p {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text-body p:last-child {
  margin-bottom: 0;
}

.about-stats-row {
  width: 100%;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.stat-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(70, 16, 9, 0.03);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(70, 16, 9, 0.1);
  border-color: var(--blue);
}

.stat-val {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.stat-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.badge-item {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: all 0.25s;
}

.badge-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

@media (max-width: 1024px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .about-stats-row {
    padding: 2rem;
  }

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

  .about-heading {
    font-size: 2.2rem;
  }
}

/* Services CTA */
.services-cta {
  display: flex;
  gap: 12px;
  margin-top: 4rem;
  flex-wrap: wrap;
}

/* ============================
   SERVICES
   ============================ */
#services {
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(251, 125, 110, 0.15) 0%, transparent 70%);
  filter: blur(140px);
  pointer-events: none;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 214, 209, 0.7) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-top h2 {
  color: var(--ink);
}

.svc-list {
  display: flex;
  flex-direction: column;
}

.svc {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  transition: all 0.25s;
  cursor: default;
  position: relative;
}

.svc:last-child {
  border-bottom: 1px solid var(--border);
}

.svc::before {
  content: '';
  position: absolute;
  left: -4vw;
  right: -4vw;
  top: 0;
  bottom: 0;
  background: var(--glass);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.svc:hover::before {
  opacity: 1;
  transform: scaleY(1.05);
}

.svc>* {
  position: relative;
  z-index: 1;
}

#offerings {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#offerings::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 214, 209, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(100px);
  pointer-events: none;
}

.svc>* {
  position: relative;
  z-index: 1;
}

.svc-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  padding-top: 3px;
}

.svc-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.svc-bullets {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.svc-bullet {
  font-size: 0.83rem;
  color: var(--chalk-mid);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.svc-bullet::before {
  content: '—';
  color: var(--blue-lt);
  flex-shrink: 0;
  font-size: 0.7rem;
}

.svc-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--chalk-dim);
  white-space: nowrap;
  padding-top: 3px;
  text-transform: uppercase;
  text-align: right;
}

/* ============================
   DIFFERENTIATORS (Expertise)
   ============================ */
#apart {
  background: var(--white);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

#apart::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 16, 9, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 16, 9, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 0% 100%, black 0%, transparent 60%);
  pointer-events: none;
}

/* Expertise decorative circle */
#apart::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1.5px solid rgba(70, 16, 9, 0.06);
  border-radius: 50%;
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.apart-intro {
  margin-bottom: 3rem;
}

.apart-intro h2 {
  color: var(--ink);
}

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

.apart-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-glow);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.apart-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.apart-card:hover::before {
  transform: scaleX(1);
}

.apart-card:hover {
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.15);
  background: var(--white);
}

.apart-n {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.apart-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.apart-card:hover .apart-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.apart-card h3 {
  color: var(--ink);
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.apart-card p {
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.68;
  flex: 1;
}

.apart-card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ============================
   CLIENTS
   ============================ */
#clients {
  background: var(--navy);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
}

#clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

#clients::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 214, 209, 0.25) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.clients-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.clients-top h2 {
  color: var(--chalk);
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 16px;
  cursor: grab;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* ============================
   CLIENTS / PORTFOLIO
   ============================ */
.clients-top {
  margin-bottom: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.clients-top .eyebrow {
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
}

.clients-top h2 {
  color: var(--chalk);
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

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

.client-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-glow);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.client-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}

.status-ongoing {
  background: rgba(74, 222, 128, 0.1);
  color: #166534;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.status-done {
  background: var(--bg);
  color: var(--ink-muted);
  border: 1px solid var(--border);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.client-flag {
  font-size: 2.2rem;
  line-height: 1;
}

.client-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(70, 16, 9, 0.15);
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
  align-self: flex-start;
}

.card-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.client-card:hover .card-badge {
  border-color: var(--blue);
  background: var(--white);
}


.client-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.client-desc {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

.carousel-nav {
  display: none;
}

/* ============================
   TOOLS
   ============================ */
#tools {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}

.tools-intro {
  margin-bottom: 3.5rem;
}

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

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.25s;
}

.tool-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
  background: var(--bg);
}

.tool-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  background: #fff;
  padding: 6px;
  border: 1px solid var(--border);
}

.tool-logo-fallback {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.tool-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}

.tool-sub {
  font-size: 0.7rem;
  color: var(--ink-muted);
  margin-top: -4px;
}

/* ============================
   CERTS
   ============================ */
/* CERTS — badge card grid */
#certs {
  background: rgba(254, 243, 242, 0.7);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

#certs::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 214, 209, 0.4) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
}

.certs-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.certs-intro h2 {
  color: var(--ink);
  margin: 10px 0 1rem;
}

.certs-intro p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.certs-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cert-badge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.25s;
}

.cert-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.cert-badge-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.cert-badge-svg {
  width: 80px;
  height: 80px;
}

.cert-badge-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.cert-badge-issuer {
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 600;
}

.cert-badge-date {
  font-size: 0.68rem;
  color: var(--ink-muted);
  margin-top: -4px;
}

/* ============================
   CTA
   ============================ */
#cta {
  background: rgba(255, 228, 225, 0.8);
  position: relative;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(12px);
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242, 84, 65, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(251, 125, 110, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 84, 65, 0.15) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(251, 125, 110, 0.1) 0%, transparent 50%);
  animation: mesh-float 15s infinite alternate;
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}

.cta-ring-1 {
  width: 600px;
  height: 600px;
  top: -280px;
  left: -160px;
}

.cta-ring-2 {
  width: 380px;
  height: 380px;
  bottom: -150px;
  right: 60px;
}

.cta-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  color: var(--ink);
  margin: 12px 0 1.5rem;
}

.cta-inner p {
  color: var(--ink-mid);
  font-size: 1.025rem;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   FOOTER
   ============================ */
#footer {
  background: var(--bg-deep);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 50% 50%, rgba(242, 84, 65, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.footer-brand {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.footer-brand .blue {
  color: var(--blue);
}

.footer-tag {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.78rem;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--blue);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--ink-muted);
  line-height: 1.8;
  text-align: right;
}

/* ============================
   REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 { transition-delay: 0.3s; }





/* Portfolio Filter */
.portfolio-filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-divider {
  width: 1px;
  height: 24px;
  background: var(--border-dark);
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.03);
  color: var(--chalk-mid);
  font-weight: 600;
  font-size: 0.78rem;
  transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--blue-lt);
  color: var(--chalk);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 15px var(--blue-glow);
}

/* See More Wrap */
.see-more-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--chalk-mid);
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

/* ============================
   EXPERTISE SPLIT
   ============================ */
.expertise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.expertise-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.expertise-col:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(70, 16, 9, 0.06);
}

.expertise-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.expertise-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.expertise-header h3 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.expertise-header p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.5;
}

.expertise-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.expertise-list li {
  font-size: 0.85rem;
  color: var(--ink-mid);
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.4;
}

.expertise-list li::before {
  content: '✔';
  color: var(--blue);
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Categorized Portfolio Headings */
.portfolio-category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.portfolio-category-label::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--border);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  #hero {
    max-height: none;
    min-height: 75vh;
    padding-top: 120px;
  }

  .hero-layout {
    max-width: 100%;
  }

  .hero-left {
    padding-right: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .certs-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .svc-num {
    margin-bottom: 0.5rem;
  }

  .svc-tag {
    display: none;
  }

  .expertise-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .apart-grid {
    grid-template-columns: 1fr !important;
  }

  .certs-badges-grid {
    grid-template-columns: 1fr !important;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-row {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }

  .client-card {
    flex: none;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }

  .portfolio-filter-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .filter-divider {
    width: 40px;
    height: 1px;
  }
}