/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-soft:    #faf8f4;
  --bg-soft-2:  #f4efe6;
  --orange:     #f5af2e;
  --orange-2:   #e0982a;
  --cafe:       #463d31;
  --cafe-2:     #352d24;
  --gray:       #73716b;
  --gray-soft:  #a6a49d;
  --ink:        #050404;
  --line:       rgba(5, 4, 4, 0.1);
  --line-soft:  rgba(5, 4, 4, 0.06);

  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --disp:  "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
}

@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--disp);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
}
::selection { background: var(--orange); color: var(--ink); }
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--white);
  border-radius: 8px; font-weight: 500;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.section { padding-block: 5rem; }
@media (min-width: 960px) { .section { padding-block: 7.5rem; } }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-2); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--orange);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 56ch; }
.section-head.is-center .section-sub { margin-inline: auto; }

.on-dark { color: var(--white); }
.on-dark .section-sub { color: rgba(255,255,255,.72); }

[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .4s; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: .96rem; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-solid {
  background: var(--cafe); color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(70,61,49,.55);
}
.btn-solid:hover { background: var(--cafe-2); box-shadow: 0 18px 36px -10px rgba(70,61,49,.6); }

.btn-accent {
  background: var(--orange); color: var(--ink);
  box-shadow: 0 10px 24px -8px rgba(245,175,46,.55);
}
.btn-accent:hover { background: var(--orange-2); box-shadow: 0 18px 36px -10px rgba(245,175,46,.6); }

.btn-outline {
  border: 1.5px solid var(--ink); color: var(--ink); background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline.on-dark { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline.on-dark:hover { background: var(--white); color: var(--ink); }

.btn-sm { padding: .7rem 1.3rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  padding-block: 1.2rem;
  color: var(--white);
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out), color .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .8rem;
  color: var(--ink);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--disp); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em;
}
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .92rem; font-weight: 500; padding: .25rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-link-group { position: relative; display: flex; align-items: center; }
.nav-link-group .nav-link { display: inline-flex; align-items: center; }
.nav-link-caret { width: 11px; height: 11px; margin-left: .3rem; vertical-align: -1px; transition: transform .3s var(--ease-out); }
.nav-link-group:hover .nav-link-caret,
.nav-link-group:focus-within .nav-link-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; margin-top: .6rem;
  min-width: 250px; background: var(--white); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -20px rgba(5,4,4,.32);
  padding: .5rem; display: grid; gap: .15rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility 0s .25s;
}
.nav-link-group:hover .nav-dropdown,
.nav-link-group:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility 0s;
}
.nav-dropdown a {
  display: block; padding: .68rem .9rem; border-radius: 9px;
  font-size: .87rem; font-weight: 500; color: var(--ink); white-space: nowrap;
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
}
.nav-dropdown a:hover { background: var(--bg-soft-2); color: var(--orange-2); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-actions .btn-solid { display: none; }
@media (min-width: 720px) { .nav-actions .btn-solid { display: inline-flex; } }

.nav-toggle {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle-bars { position: relative; width: 20px; height: 14px; }
.nav-toggle-bars span {
  position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .35s var(--ease-soft), opacity .3s var(--ease-out), top .35s var(--ease-soft);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--ink); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile a { font-family: var(--disp); font-size: 1.5rem; font-weight: 600; }
.nav-mobile .btn { margin-top: 1rem; }
.nav-mobile-group { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile-sublist { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: .2rem; }
.nav-mobile-sublist a { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.72); }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(7rem, 14vw, 9.5rem);
  padding-bottom: 4rem;
  background: var(--ink);
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 120%; z-index: -1;
  background:
    radial-gradient(55% 45% at var(--mesh-x) var(--mesh-y), rgba(245,175,46,.28), transparent 65%),
    conic-gradient(from var(--mesh-angle), rgba(245,175,46,.1), transparent, rgba(245,175,46,.12), rgba(245,175,46,.1));
  filter: blur(90px) saturate(120%);
  animation: meshShift 26s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 20%; --mesh-y: 20%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 78%; --mesh-y: 45%; }
  100% { --mesh-angle: 360deg; --mesh-x: 20%; --mesh-y: 20%; }
}

/* Rotating hero background photos */
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--ink); }
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.8s var(--ease-soft);
}
.hero-bg-img.is-active { opacity: 1; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,4,4,.57) 0%, rgba(5,4,4,.53) 45%, rgba(5,4,4,.67) 100%),
    linear-gradient(100deg, rgba(5,4,4,.5) 0%, rgba(5,4,4,.28) 55%, rgba(5,4,4,.48) 100%);
}

.hero-grid {
  display: grid; gap: 3rem;
  align-items: center;
}
@media (min-width: 1080px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 2.5rem; } }

.hero-kicker {
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.hero-kicker::before { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.hero-title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  max-width: 17ch;
  margin-bottom: 1.3rem;
  color: var(--white);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,.78);
  max-width: 46ch;
  margin-bottom: 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 480px; }
.trust-value {
  font-family: var(--disp); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; color: var(--white);
}
.trust-value-compact { font-size: 18px; }
.trust-value .orange { color: var(--orange); }
.trust-label { font-size: .82rem; color: rgba(255,255,255,.68); margin-top: .2rem; }

/* Dashboard visual */
.hero-visual { position: relative; }
.dashboard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -30px rgba(5,4,4,.25), 0 12px 28px -12px rgba(5,4,4,.12);
  padding: 1.6rem;
  overflow: hidden;
}
.dashboard-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.dashboard-title { font-family: var(--disp); font-weight: 600; font-size: .95rem; }
.dashboard-badge {
  font-size: .72rem; font-weight: 600; color: #2f8f5b; background: #e7f6ee;
  padding: .3rem .6rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .35rem;
}
.dashboard-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2f8f5b; }

.dashboard-chart { display: flex; align-items: flex-end; gap: .55rem; height: 128px; margin-bottom: 1.4rem; }
.dashboard-bar {
  flex: 1; border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--orange), var(--orange-2));
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 1.1s var(--ease-soft);
}
.dashboard-bar:nth-child(6) { background: linear-gradient(180deg, var(--cafe), var(--cafe-2)); }
.dashboard.is-revealed .dashboard-bar { transform: scaleY(1); }

.dashboard-rows { display: grid; gap: .75rem; }
.dashboard-row { display: flex; align-items: center; gap: .8rem; }
.dashboard-row-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg-soft-2); display: grid; place-items: center; color: var(--cafe);
}
.dashboard-row-icon svg { width: 17px; height: 17px; }
.dashboard-row-text { flex: 1; }
.dashboard-row-label { font-size: .82rem; font-weight: 600; }
.dashboard-row-meta { font-size: .74rem; color: var(--gray); }
.dashboard-row-value { font-family: var(--disp); font-weight: 700; font-size: .95rem; }

.dashboard-float {
  position: absolute; right: -18px; bottom: -22px;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius-md); padding: 1rem 1.3rem;
  box-shadow: 0 24px 50px -18px rgba(5,4,4,.5);
  display: none;
}
@media (min-width: 640px) { .dashboard-float { display: flex; align-items: center; gap: .7rem; } }
.dashboard-float-value { font-family: var(--disp); font-size: 1.3rem; font-weight: 700; color: var(--orange); }
.dashboard-float-label { font-size: .74rem; color: rgba(255,255,255,.7); max-width: 12ch; }

.scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  margin-top: 3.5rem; opacity: .8;
}
.scroll-indicator-track {
  width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,.35); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-indicator-dot {
  width: 4px; height: 8px; border-radius: 999px; background: var(--orange);
  animation: scrollDot 1.9s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(10px); opacity: .3; } }
.scroll-indicator-label { font-size: .72rem; color: rgba(255,255,255,.65); letter-spacing: .05em; text-transform: uppercase; }

/* =============================================================
   7. About
   ============================================================= */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .about-grid { grid-template-columns: .95fr 1.05fr; gap: 4.5rem; } }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-soft); }
.about-media:hover img { transform: scale(1.06); }
.about-media-badge {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-radius: var(--radius-md); padding: .9rem 1.2rem;
  box-shadow: 0 20px 40px -18px rgba(5,4,4,.35);
}
.about-media-badge-value { font-family: var(--disp); font-weight: 700; font-size: 1.4rem; color: var(--orange-2); }
.about-media-badge-label { font-size: .78rem; color: var(--gray); }

.about-text p { color: var(--gray); margin-bottom: 1.1rem; max-width: 54ch; }
.about-text p strong { color: var(--ink); }

.about-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.about-metric-value { font-family: var(--disp); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; color: var(--ink); }
.about-metric-label { font-size: .82rem; color: var(--gray); margin-top: .25rem; }

.founder-card {
  margin-top: 2.6rem; padding: 1.6rem;
  background: var(--bg-soft); border-radius: var(--radius-lg);
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.founder-avatar {
  width: 62px; height: 62px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover;
  background: linear-gradient(145deg, var(--orange), var(--orange-2));
  display: grid; place-items: center; color: var(--ink);
  font-family: var(--disp); font-weight: 700; font-size: 1.25rem;
}
.founder-name { font-family: var(--disp); font-weight: 700; font-size: 1.05rem; }
.founder-role { font-size: .82rem; color: var(--orange-2); font-weight: 600; margin-bottom: .5rem; }
.founder-bio { font-size: .9rem; color: var(--gray); }

/* =============================================================
   8. Services
   ============================================================= */
.services-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s var(--ease-out);
}
.card:hover {
  box-shadow: 0 34px 70px -28px rgba(5,4,4,.28), 0 10px 24px -14px rgba(245,175,46,.35);
  border-color: transparent;
}
.card-icon {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 1.3rem;
  background: linear-gradient(150deg, var(--bg-soft-2), var(--white));
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--cafe);
  transition: background .4s var(--ease-out), color .4s var(--ease-out);
}
.card-icon svg { width: 24px; height: 24px; }
.card:hover .card-icon { background: linear-gradient(150deg, var(--orange), var(--orange-2)); color: var(--ink); }
.card-title { font-size: 1.15rem; margin-bottom: .6rem; }
.card-title a { color: inherit; }
.card-title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card-desc { color: var(--gray); font-size: .92rem; }
.card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.1rem; font-size: .86rem; font-weight: 600; color: var(--orange-2);
}
.card-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.card:hover .card-link svg { transform: translateX(4px); }

.services-cta { text-align: center; margin-top: 3rem; }

/* =============================================================
   9. Process
   ============================================================= */
.process-list { display: grid; gap: 1.2rem; counter-reset: step; }
@media (min-width: 960px) { .process-list { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; } }
.process-step {
  position: relative; padding: 2rem 1.5rem 1.7rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.process-num {
  font-family: var(--disp); font-weight: 700; font-size: 2.6rem; color: var(--bg-soft-2);
  -webkit-text-stroke: 1.5px var(--orange); color: transparent;
  margin-bottom: 1rem; display: block;
}
.process-title { font-size: 1.05rem; margin-bottom: .5rem; }
.process-desc { font-size: .88rem; color: var(--gray); }
.process-connector {
  display: none;
}
@media (min-width: 960px) {
  .process-step:not(:last-child)::after {
    content: ""; position: absolute; top: 2.6rem; right: -1.15rem; width: 1.4rem; height: 1.4rem;
    background: var(--bg); border: 1px solid var(--line); border-radius: 50%;
    background-image: linear-gradient(135deg, var(--orange), var(--orange-2));
    z-index: 2;
  }
}

/* =============================================================
   10. Success cases
   ============================================================= */
.cases-filter { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.4rem; }
.filter-btn {
  padding: .6rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: .85rem; font-weight: 600; color: var(--gray);
  transition: all .3s var(--ease-out);
}
.filter-btn:hover { border-color: var(--orange); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.cases-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.case-card:hover { box-shadow: 0 34px 70px -28px rgba(5,4,4,.28); }
.case-card.is-hidden { display: none; }
.case-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.case-card:hover .case-media img { transform: scale(1.1); }
.case-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(5,4,4,.72); color: var(--white); backdrop-filter: blur(6px);
  font-size: .72rem; font-weight: 600; padding: .35rem .75rem; border-radius: 999px;
}
.case-body { padding: 1.5rem 1.6rem 1.7rem; }
.case-client { font-family: var(--disp); font-weight: 600; font-size: 1.08rem; margin-bottom: .5rem; }
.case-problem { font-size: .84rem; color: var(--gray); margin-bottom: 1rem; }
.case-result {
  display: inline-flex; align-items: baseline; gap: .35rem;
  font-family: var(--disp); font-weight: 700; font-size: 1.3rem; color: var(--orange-2);
  margin-bottom: 1rem;
}
.case-result-label { font-family: var(--sans); font-weight: 500; font-size: .78rem; color: var(--gray); }
.case-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .86rem; font-weight: 600; }
.case-link svg { width: 15px; height: 15px; transition: transform .35s var(--ease-out); }
.case-link:hover svg { transform: translateX(4px); }

/* Case detail dialog */
.case-dialog {
  border: 0; border-radius: var(--radius-lg); padding: 0; max-width: 560px; width: calc(100% - 2.5rem);
  box-shadow: 0 50px 100px -30px rgba(5,4,4,.5);
}
.case-dialog::backdrop { background: rgba(5,4,4,.6); backdrop-filter: blur(4px); }
.case-dialog-inner { padding: 2.2rem; }
.case-dialog-close {
  position: absolute; top: 1.1rem; right: 1.1rem; width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft); display: grid; place-items: center;
}

/* =============================================================
   11. Testimonials
   ============================================================= */
.testimonials-wrap { position: relative; max-width: 760px; margin-inline: auto; }
.testimonial-track { position: relative; min-height: 280px; }
.testimonial-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .6s var(--ease-soft), transform .6s var(--ease-soft);
}
.testimonial-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.6rem clamp(1.6rem, 4vw, 3.2rem);
  box-shadow: 0 30px 70px -30px rgba(5,4,4,.18);
  text-align: center;
}
.testimonial-quote { font-family: var(--disp); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; line-height: 1.5; margin-bottom: 1.6rem; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: .8rem; }
.testimonial-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: .92rem; text-align: left; }
.testimonial-role { font-size: .8rem; color: var(--gray); text-align: left; }

.testimonial-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 2rem; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: all .35s var(--ease-out); }
.testimonial-dot.is-active { width: 22px; background: var(--orange); border-radius: 5px; }

/* =============================================================
   12. Pillars / methodology
   ============================================================= */
.pillars-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  display: flex; gap: 1rem; padding: 1.6rem; border-radius: var(--radius-md);
  transition: background .4s var(--ease-out);
}
.pillar:hover { background: var(--bg-soft); }
.pillar-icon {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: var(--cafe); color: var(--orange);
  display: grid; place-items: center;
}
.pillar-icon svg { width: 21px; height: 21px; }
.pillar-title { font-size: 1rem; margin-bottom: .35rem; }
.pillar-desc { font-size: .87rem; color: var(--gray); }

/* =============================================================
   13. Blog / resources
   ============================================================= */
.articles-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }
.article-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.article-media { aspect-ratio: 16/10; overflow: hidden; }
.article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.article-card:hover .article-media img { transform: scale(1.08); }
.article-body { padding: 1.5rem 1.5rem 1.7rem; }
.article-tag { font-size: .72rem; font-weight: 600; color: var(--orange-2); text-transform: uppercase; letter-spacing: .06em; }
.article-title { font-size: 1.05rem; margin: .6rem 0 .6rem; }
.article-excerpt { font-size: .87rem; color: var(--gray); }

.articles-cta { text-align: center; margin-top: 2.8rem; }

/* =============================================================
   14. Main CTA
   ============================================================= */
.cta-main {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(155deg, var(--cafe) 0%, var(--cafe-2) 55%, var(--ink) 100%);
  color: var(--white);
  padding-block: 5.5rem;
  text-align: center;
}
.cta-main::before {
  content: ""; position: absolute; inset: -30%; z-index: -1;
  background: radial-gradient(45% 45% at var(--mesh-x) var(--mesh-y), rgba(245,175,46,.35), transparent 70%);
  filter: blur(80px);
  animation: meshShift 22s linear infinite;
}
.cta-title { font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; margin-inline: auto; margin-bottom: 1.1rem; }
.cta-sub { color: rgba(255,255,255,.75); max-width: 46ch; margin-inline: auto; margin-bottom: 2.2rem; font-size: 1.05rem; }

/* =============================================================
   15. Contact form
   ============================================================= */
.contact-grid { display: grid; gap: 2.6rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; } }
.contact-info-item { display: flex; gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--line); }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--bg-soft-2); color: var(--cafe); display: grid; place-items: center;
}
.contact-info-icon svg { width: 19px; height: 19px; }
.contact-info-label { font-size: .78rem; color: var(--gray); }
.contact-info-value { font-weight: 600; font-size: .95rem; }

.contact-form-card {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 40px 90px -36px rgba(5,4,4,.22);
}
.field { position: relative; margin-bottom: 1.3rem; }
.field input, .field textarea {
  width: 100%; padding: 1.35rem 1rem .55rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: transparent; color: var(--ink); font-family: var(--sans); font-size: .96rem;
  transition: border-color .3s var(--ease-out);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--orange); }
.field label {
  position: absolute; left: 1rem; top: 1.05rem; pointer-events: none;
  color: var(--gray); font-size: .96rem;
  transition: all .25s var(--ease-out);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .5rem; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; color: var(--orange-2);
}
.field-error { font-size: .76rem; color: #b3261e; margin-top: .3rem; display: none; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #b3261e; }
.field.is-invalid .field-error { display: block; }

.contact-form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form-error {
  font-size: .84rem; color: #b3261e; background: rgba(179,38,30,.08);
  border: 1px solid rgba(179,38,30,.25); border-radius: 10px;
  padding: .8rem 1rem; margin-bottom: 1.3rem;
}
.contact-form-error a { text-decoration: underline; text-underline-offset: 2px; }
.contact-form-error[hidden] { display: none; }

.contact-form { transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft); }
.contact-form.is-sent { opacity: 0; transform: translateY(-14px); pointer-events: none; position: absolute; inset: 0; }
.contact-submit { position: relative; }
.contact-submit-label, .contact-submit-spinner { transition: opacity .25s var(--ease-out); }
.contact-submit-spinner { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; }
.contact-form.is-sending .contact-submit-label { opacity: 0; }
.contact-form.is-sending .contact-submit-spinner { opacity: 1; }
.contact-submit-spinner::after {
  content: ""; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.35); border-top-color: var(--white);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contact-success {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: .8rem; opacity: 0; pointer-events: none;
  transition: opacity .7s var(--ease-out) .2s, transform .8s var(--ease-soft) .2s;
  transform: translateY(10px);
}
.contact-success.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.contact-success-icon {
  width: 58px; height: 58px; border-radius: 50%; background: #e7f6ee; color: #2f8f5b;
  display: grid; place-items: center;
}
.contact-success-icon svg { width: 26px; height: 26px; }
.contact-success-title { font-family: var(--disp); font-size: 1.2rem; font-weight: 700; }
.contact-success-msg { color: var(--gray); font-size: .92rem; max-width: 34ch; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--cafe); color: rgba(255,255,255,.82); padding-block: 4.5rem 2rem; }
.footer-grid { display: grid; gap: 2.8rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; } }
.footer-logo { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--disp); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 1rem; }
.footer-desc { font-size: .9rem; max-width: 34ch; margin-bottom: 1.4rem; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.footer-social svg { width: 17px; height: 17px; }
.footer-heading { font-family: var(--disp); font-weight: 600; font-size: .92rem; color: var(--white); margin-bottom: 1.1rem; }
.footer-links { display: grid; gap: .75rem; }
.footer-links a { font-size: .9rem; transition: color .3s var(--ease-out); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item { font-size: .9rem; margin-bottom: .7rem; }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.6);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   17. Reduced-motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .cta-main::before { animation: none; }
  .scroll-indicator-dot { animation: none; }
}

/* =============================================================
   18. Responsive tweaks
   ============================================================= */
@media (max-width: 719px) {
  .hero-trust { grid-template-columns: repeat(3, 1fr); gap: .8rem; }
  .founder-card { flex-direction: column; }
}

/* =============================================================
   19. Service subpages
   ============================================================= */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 58vh; min-height: 58svh;
  display: flex; align-items: flex-end;
  padding-top: 8rem; padding-bottom: 3.5rem;
  background: var(--ink);
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: ambientZoom 26s ease-in-out infinite;
}
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.04); }
  50%      { transform: scale(1.1); }
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,4,4,.6) 0%, rgba(5,4,4,.4) 40%, rgba(5,4,4,.88) 100%),
    linear-gradient(90deg, rgba(5,4,4,.55) 0%, rgba(5,4,4,.15) 60%);
}
.page-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 1.2rem;
}
.page-breadcrumb a { color: rgba(255,255,255,.92); font-weight: 600; }
.page-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.page-hero-title { color: var(--white); font-size: clamp(2rem, 4.2vw, 3.1rem); max-width: 19ch; margin-bottom: 1.1rem; }
.page-hero-sub { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 52ch; margin-bottom: 1.8rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.service-intro { max-width: 68ch; }
.service-intro p { color: var(--gray); margin-bottom: 1.1rem; font-size: 1.02rem; }
.service-block-title {
  font-family: var(--disp); font-weight: 600; font-size: 1.35rem; color: var(--ink);
  margin-top: 2.6rem; margin-bottom: .9rem;
}
.service-intro > .service-block-title:first-child { margin-top: 0; }
.service-subblock-title {
  font-family: var(--disp); font-weight: 600; font-size: 1.02rem; color: var(--orange-2);
  margin-top: 1.7rem; margin-bottom: .7rem;
}
.prose-list { display: grid; gap: .6rem; margin: 0 0 1.6rem; }
.prose-list li {
  position: relative; padding-left: 1.4rem;
  color: var(--gray); font-size: .95rem; line-height: 1.55;
}
.prose-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}

.feature-list { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: 2.4rem; }
@media (min-width: 720px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
.feature-item {
  display: flex; gap: 1rem; padding: 1.4rem 1.5rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.feature-item-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-soft-2); color: var(--cafe);
  display: grid; place-items: center;
}
.feature-item-icon svg { width: 18px; height: 18px; }
.feature-item-title { font-weight: 600; font-size: .96rem; margin-bottom: .3rem; }
.feature-item-desc { font-size: .87rem; color: var(--gray); }

.service-layout { display: grid; gap: 3rem; }
@media (min-width: 960px) { .service-layout { grid-template-columns: 1fr 320px; gap: 4rem; } }

.service-sidebar {
  background: var(--bg-soft); border-radius: var(--radius-lg); padding: 2rem;
  position: sticky; top: 6.5rem;
}
.service-sidebar-title { font-family: var(--disp); font-weight: 600; font-size: 1.05rem; margin-bottom: 1rem; }
.service-sidebar-list { display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.service-sidebar-list a {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  font-size: .88rem; padding: .6rem .8rem; border-radius: 10px;
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.service-sidebar-list a:hover { background: var(--white); color: var(--orange-2); }
.service-sidebar-list a.is-current { background: var(--ink); color: var(--white); font-weight: 600; }
.service-sidebar-cta { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.service-sidebar-cta p { font-size: .86rem; color: var(--gray); margin-bottom: 1rem; }

.related-services-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .related-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .related-services-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   20. Floating WhatsApp button
   ============================================================= */
.whatsapp-float {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(5,4,4,.45), 0 4px 12px rgba(5,4,4,.2);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-out);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 18px 36px -10px rgba(5,4,4,.5), 0 6px 16px rgba(5,4,4,.25); }
.whatsapp-float svg { width: 30px; height: 30px; }
@media (max-width: 539px) {
  .whatsapp-float { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
