@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #f5f2eb;
  --cream-2: #ede9e0;
  --cream-3: #e4dfd3;
  --olive: #4a5240;
  --olive-light: #6b7560;
  --olive-dim: rgba(74,82,64,0.08);
  --olive-border: rgba(74,82,64,0.18);
  --charcoal: #1e1e1a;
  --charcoal-2: #2e2e28;
  --muted: #7a7a6e;
  --muted-2: #a8a89a;
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img:not(.client-item):not(.result-logo):not(.footer-logo-img):not(.footer-tornado):not(.nav-logo-img){ display: block; width: 100%; height: 100%; object-fit: cover; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  overflow: visible;
}
h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 400; }
p { color: var(--muted); line-height: 1.8; }
em { font-style: italic; color: var(--olive); }

.container { width: 100%; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .container { padding: 0 4rem; } }

section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 8rem 0; } }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--olive);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: var(--charcoal-2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1px solid var(--olive-border); }
.btn-outline:hover { border-color: var(--olive); background: var(--olive-dim); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(245,242,235,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--olive-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .nav-inner { padding: 0 4rem; } }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color var(--transition);
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo em { font-style: italic; color: rgba(168,184,144,0.9); }
nav.scrolled .nav-logo { color: var(--charcoal); }
nav.scrolled .nav-logo em { color: var(--olive); }

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.875rem; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.nav-links a:hover { color: #fff; }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 3px;
  transition: var(--transition);
}
nav.scrolled .lang-toggle { background: var(--cream-2); border-color: var(--olive-border); }
nav.scrolled .nav-logo-img {
  filter: invert(1);
}
.lang-btn {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  border: none;
  background: transparent;
}
nav.scrolled .lang-btn { color: var(--muted-2); }
.lang-btn.active { background: #fff; color: var(--charcoal); }
nav.scrolled .lang-btn.active { background: var(--charcoal); color: var(--cream); }

/* ── Free Audit CTA button ── */
.btn-audit {
  display: none;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
@media (min-width: 900px) { .btn-audit { display: inline-flex; } }
nav.scrolled .btn-audit { border-color: var(--olive); }

.audit-text {
  padding: 0.7rem 1.2rem 0.7rem 1.4rem;
  color: #fff;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
nav.scrolled .audit-text { color: var(--charcoal); }

.audit-arrow {
  width: 30px; height: 30px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
nav.scrolled .audit-arrow {
  background: var(--olive);
  color: #fff;
}
.audit-arrow svg { width: 13px; height: 13px; transition: transform var(--transition); }
.btn-audit:hover .audit-arrow { background: rgba(255,255,255,0.35); }
.btn-audit:hover .audit-arrow svg { transform: translateX(3px); }
nav.scrolled .btn-audit:hover .audit-arrow { background: var(--charcoal); }
.btn-audit:hover { box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }
nav.scrolled .btn-audit:hover { box-shadow: 0 0 0 3px rgba(74,82,64,0.15); }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 1.25rem 2rem;
}
@media (min-width: 768px) { .hero-top { padding: 4rem 2.5rem 2rem; } }
@media (min-width: 1200px) { .hero-top { padding: 5rem 4rem 2rem; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 2rem;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive);
  animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 { max-width: 920px; }
.hero h1 .l2 { display: block; padding-left: clamp(2rem, 10vw, 8rem); }
.hero h1 .l3 { display: block; padding-left: clamp(4rem, 20vw, 16rem); font-style: italic; color: var(--olive); }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--olive-border);
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .hero-bottom {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem 2.5rem 4rem;
    align-items: end;
  }
}
@media (min-width: 1200px) { .hero-bottom { padding: 2.5rem 4rem 5rem; } }

.hero-sub { font-size: 1rem; color: var(--muted); max-width: 420px; line-height: 1.8; }
@media (min-width: 768px) { .hero-sub { font-size: 1.05rem; } }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) { .hero-right { align-items: flex-end; } }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── PRIMARY hero button ── */
/* ── PRIMARY hero button — left-to-right fill on hover ── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.85);
  font-family: var(--font-body);
  position: relative;
  isolation: isolate;
  background: transparent;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
/* Fill sweeps in from left */
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}
.btn-hero-primary:hover::before { transform: translateX(0); }
.btn-hero-primary:hover { box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }

.bhp-inner {
  position: relative; z-index: 1;
  padding: 0.88rem 1.2rem 0.88rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.btn-hero-primary:hover .bhp-inner { color: var(--charcoal); }

.bhp-arrow {
  position: relative; z-index: 1;
  width: 34px; height: 34px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.bhp-arrow svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.btn-hero-primary:hover .bhp-arrow {
  background: var(--olive);
}
.btn-hero-primary:hover .bhp-arrow svg { transform: translateX(3px); }

/* ── GHOST hero button — left-to-right fill on hover ── */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.88rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.28);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  transition: border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.btn-hero-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}
.btn-hero-ghost:hover::before { transform: translateX(0); }
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-hero-ghost > span { position: relative; z-index: 1; }
.btn-hero-ghost > svg { width: 14px; height: 14px; transition: transform 0.3s ease; opacity: 0.65; position: relative; z-index: 1; }
.btn-hero-ghost:hover > svg { transform: translateX(3px); opacity: 1; }

/* ── Hero stats ── */
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
@media (min-width: 768px) { .hero-stats { justify-content: flex-end; } }

.hero-stat {
  position: relative;
  padding-left: 1rem;
}
.hero-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: rgba(168,184,144,0.5);
  border-radius: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  overflow: visible;
}
.stat-num em { font-style: normal; color: #a8b890; font-size: 0.75em; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; letter-spacing: 0.04em; }

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  background: var(--cream-3);
  border: 1px dashed var(--olive-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted-2);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.img-ph svg { width: 22px; height: 22px; opacity: 0.35; }

/* ── CLIENTS ── */
.clients {
  padding: 2rem 0;
  background: var(--charcoal);
  border-top: none;
  border-bottom: none;
  overflow: hidden;
  position: relative;
}
/* subtle fade edges */
.clients::before,
.clients::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients::before { left: 0; background: linear-gradient(to right, var(--charcoal), transparent); }
.clients::after  { right: 0; background: linear-gradient(to left,  var(--charcoal), transparent); }

.clients-label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.clients-track { overflow: hidden; position: relative; z-index: 1; }
.clients-scroll {
  display: flex;
  gap: 3rem;
  animation: scrollX 22s linear infinite;
  width: max-content;
}
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  transition: color 0.3s;
}
.client-item:hover { color: rgba(255,255,255,0.7); }

img.client-item {
  display: block;
  height: 40px;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
  will-change: transform;
    margin-right: 4rem;
}
.clients-scroll {
  align-items: center;
}

img.client-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}
img.client-item[alt="Methodes"] { height: 22px; }
img.client-item[alt="Moja Obuka"] { height: 82px; }

/* ═══════════════════════════════════════
   SERVICES — v4 rework
   ═══════════════════════════════════════ */
.services {
  background: #faf8f4;
  position: relative;
  overflow: hidden;
  background-image: url('../images/Services_Background_2.webp');
  background-size: cover;
  background-position: center;
}

/* Cream overlay so cards stay readable */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(250,248,244,0.82);
}

/* Decorative background rings */
.services-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--olive-border);
}
.deco-ring-1 {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  opacity: 0.5;
}
.deco-ring-2 {
  width: 380px; height: 380px;
  top: -80px; right: -80px;
  opacity: 0.35;
  border-color: var(--olive);
}

/* No horizontal lines — replaced by background image */
.services-deco::after { display: none; }

.services-header {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-header {
    padding: 0 2.5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media (min-width: 1200px) { .services-header { padding: 0 4rem; } }
.services-header-right { max-width: 360px; }
.services-header-right p { font-size: 0.95rem; margin-bottom: 1.5rem; }

/* Grid wrapper — constrain to ~80% centered */
.services-grid-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services-grid-wrap { max-width: 100%; }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--olive-border);
  border-left: 1px solid var(--olive-border);
}
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Service card — anchor tag ── */
.service-card {
  display: block;
  border-bottom: 1px solid var(--olive-border);
  border-right: 1px solid var(--olive-border);
  transition: background var(--transition), box-shadow var(--transition);
  position: relative;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
}
.service-card:hover { background: #f7f4ee; box-shadow: inset 0 0 0 1px rgba(74,82,64,0.12); }

.service-card-inner {
  padding: 2rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) { .service-card-inner { padding: 2.5rem; } }

/* ── Custom service icon ── */
.service-icon-wrap {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--olive);
  opacity: 0.6;
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.service-card:hover .service-icon-wrap {
  opacity: 1;
  transform: scale(1.06);
}
.service-icon {
  width: 100%;
  height: 100%;
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted-2);
  margin-bottom: 0.5rem;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  overflow: visible;
  padding-bottom: 0.1em;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.service-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--olive-dim);
  border: 1px solid var(--olive-border);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ── Arrow — appears on hover ── */
.service-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  color: var(--olive);
}
.service-arrow svg { width: 18px; height: 18px; }
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   MEDIA STRIP — dark section with texture
   ═══════════════════════════════════════ */
.media-strip {
  background: var(--charcoal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .media-strip { padding: 8rem 0; } }

/* Subtle diagonal line texture */
.media-strip-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(107,117,96,0.04) 28px,
    rgba(107,117,96,0.04) 29px
  );
}

.media-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .media-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 0 2.5rem;
    align-items: center;
  }
}
@media (min-width: 1200px) { .media-inner { padding: 0 4rem; } }

.media-strip .section-label { color: var(--olive-light); }
.media-strip .section-label::before { background: var(--olive-light); }
.media-strip h2 { color: var(--cream); }
.media-strip h2 em { color: var(--olive-light); }
.media-strip p { color: var(--muted-2); font-size: 1rem; margin-bottom: 1rem; }

.media-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.media-img-tall {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 768px) { .media-img-tall { height: 420px; } }
.media-img-sm { height: 150px; border-radius: 12px; overflow: hidden; }
@media (min-width: 768px) { .media-img-sm { height: 196px; } }

.media-img-tall img,
.media-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.media-img-tall:hover img,
.media-img-sm:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════
   AI SECTION v6 — robot background
   ═══════════════════════════════════════ */
.ai-section {
  background: var(--cream-2);
  border-top: 1px solid var(--olive-border);
  position: relative;
  overflow: hidden;
  background-image: url('../images/AI_agents.webp');
  background-size: cover;
  background-position: center;
}

/* Cream overlay so text stays readable and palette stays consistent */
.ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(237,233,224,0.92) 0%,
    rgba(237,233,224,0.85) 40%,
    rgba(237,233,224,0.7) 70%,
    rgba(237,233,224,0.55) 100%
  );
  z-index: 0;
}

.ai-deco { display: none; }
.ai-deco-grid { display: none; }

.ai-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 0 1.25rem;
}
@media (min-width: 900px) {
  .ai-inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 0 2.5rem;
    align-items: start;
  }
}
@media (min-width: 1200px) { .ai-inner { padding: 0 4rem; } }

.ai-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--olive-border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1rem;
}
.ai-card {
  background: var(--cream);
  padding: 1.75rem;
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.ai-card:hover { background: var(--cream-3); }
.ai-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.ai-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--olive);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.ai-card:hover .ai-card-icon { opacity: 1; }
.ai-card-icon svg { width: 100%; height: 100%; }
.ai-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  overflow: visible;
  flex: 1;
}
.ai-badge {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive); background: var(--olive-dim); border: 1px solid var(--olive-border);
  padding: 0.2rem 0.6rem; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.ai-card p { font-size: 0.875rem; color: var(--muted); }

/* ═══════════════════════════════════════
   RESULTS v7 — dark, big numbers, PNG logos
   ═══════════════════════════════════════ */
.results {
  background: var(--charcoal);
  background-image: url('../images/Numbers_Background2.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 18, 0.72);
  z-index: 0;
  pointer-events: none;
}
.results-inner { position: relative; z-index: 1; }
@media (min-width: 768px) { .results { padding: 9rem 0; } }

/* 2-column: left text, right grid */
.results-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 0 1.25rem;
}
@media (min-width: 900px) {
  .results-inner {
    grid-template-columns: 1fr 1.8fr;
    gap: 5rem;
    padding: 0 2.5rem;
    align-items: start;
  }
}
@media (min-width: 1200px) { .results-inner { padding: 0 4rem; } }

.results-intro .section-label { color: var(--olive-light); }
.results-intro .section-label::before { background: var(--olive-light); }
.results-intro h2 { color: #fff; }
.results-intro h2 em { color: var(--olive-light); }
.results-intro p { color: rgba(255,255,255,0.45); }

/* 2x2 grid */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(80,60,160,0.25);
  border-radius: 20px;
  overflow: hidden;
}

.result-card {
  background: rgba(15, 12, 35, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 90, 180, 0.2);
  padding: 2rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.35s ease, border-color 0.35s ease;
}
@media (min-width: 768px) { .result-card { padding: 2.5rem 2rem; } }
.result-card:hover { background: rgba(25, 20, 55, 0.82); border-color: rgba(130, 110, 220, 0.35); }

/* PNG logo — large, floated top-right corner */
/* Top row: number left, logo right */
.result-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.result-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
  transition: transform 0.35s ease, filter 0.35s ease;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .result-logo { width: 70px; height: 70px; }
  
}
@media (max-width: 767px) {
  .result-logo { width: 20px; height: 20px; }
}
.result-card:hover .result-logo { transform: scale(1.1) rotate(-4deg); filter: brightness(1.2); }

/* FB JPEG has white background — invert + screen kills it on dark bg */
.result-card:nth-child(1) .result-logo {
  filter: brightness(0) invert(1) opacity(0.9);
  mix-blend-mode: screen;
}
.result-card:nth-child(1):hover .result-logo {
  filter: brightness(0) invert(1) opacity(1);
}

/* Instagram — slightly bigger */
.result-card:nth-child(2) .result-logo {
  width: 70px; height: 70px;
}
@media (min-width: 768px) {
  .result-card:nth-child(2) .result-logo { width: 80px; height: 80px; }
}
@media (max-width: 767px) {
  .result-card:nth-child(2) .result-logo { width: 20px; height: 20px; }
}

/* CTA button in results intro — same style as hero primary but olive on dark */
.btn-results-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-family: var(--font-body);
  position: relative;
  isolation: isolate;
  background: transparent;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.btn-results-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}
.btn-results-cta:hover::before { transform: translateX(0); }
.btn-results-cta:hover { border-color: rgba(255,255,255,0.6); }
.results-cta-inner {
  position: relative; z-index: 1;
  padding: 0.8rem 1.2rem 0.8rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
}
.results-cta-arrow {
  position: relative; z-index: 1;
  width: 30px; height: 30px;
  margin: 0 5px;
  border-radius: 50%;
  background: var(--olive);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.results-cta-arrow svg { width: 13px; height: 13px; transition: transform 0.3s ease; }
.btn-results-cta:hover .results-cta-arrow { background: #4a5240; }
.btn-results-cta:hover .results-cta-arrow svg { transform: translateX(3px); }

/* Big white number */
.result-num-big {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 0.06em;
  overflow: visible;
}
.runit {
  font-size: 0.42em;
  color: var(--olive-light);
  font-style: italic;
  letter-spacing: 0;
  font-weight: 300;
}

.result-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}
.result-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* Coloured radial glow per card */
.result-card-glow {
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.12;
  transition: opacity 0.4s;
  z-index: 0;
}
.result-card:hover .result-card-glow { opacity: 0.22; }
.result-card:nth-child(1) .result-card-glow { background: #1877F2; }
.result-card:nth-child(2) .result-card-glow { background: #d6249f; }
.result-card:nth-child(3) .result-card-glow { background: #69C9D0; }
.result-card:nth-child(4) .result-card-glow { background: #FF0000; }

/* ═══════════════════════════════════════
   PROCESS v11 — staircase layout
   ═══════════════════════════════════════ */
.process {
  background: var(--cream-2);
  background-image: url('../images/Services_Background_2.webp');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--olive-border);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237,233,224,0.88);
  z-index: 0;
  pointer-events: none;
}
.process-inner { position: relative; z-index: 1; }

.process-inner { padding: 5rem 1.25rem; }
@media (min-width: 768px) { .process-inner { padding: 7rem 2.5rem; } }
@media (min-width: 1200px) { .process-inner { padding: 8rem 4rem; } }

.process-header { margin-bottom: 4rem; }

/* ── Staircase container ── */
.process-stairs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 900px) {
  .process-stairs {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

/* ── Each stair step ── */
.process-stair {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}
/* Desktop: each step pushed down progressively */
@media (min-width: 900px) {
  .process-stair-1 { margin-top: 105px; }
  .process-stair-2 { margin-top: 70px; }
  .process-stair-3 { margin-top: 35px; }
  .process-stair-4 { margin-top: 0; }
}

/* Faint vertical connector between stairs on mobile */
.process-stair + .process-stair::before {
  content: '';
  display: block;
  width: 1px;
  height: 2rem;
  background: var(--olive-border);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .process-stair + .process-stair::before { display: none; }
}

/* Big italic step number — outside card, top */
.stair-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--muted-2);
  padding: 0 0 0.6rem 0.25rem;
  line-height: 1;
}
@media (min-width: 900px) { .stair-number { padding-left: 1.5rem; } }

/* Card itself */
.stair-card {
  background: #fff;
  border: 1px solid var(--olive-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin: 0 0.5rem;
}
@media (min-width: 900px) { .stair-card { margin: 0 0.75rem; } }
.process-stair:hover .stair-card {
  box-shadow: 0 8px 28px rgba(74,82,64,0.12);
  transform: translateY(-3px);
}

/* Coloured top border per step */
.process-stair-1 .stair-card::before { content:''; position:absolute; top:0;left:0;right:0;height:3px;background:linear-gradient(to right,#6b8f5e,transparent);border-radius:16px 16px 0 0; }
.process-stair-2 .stair-card::before { content:''; position:absolute; top:0;left:0;right:0;height:3px;background:linear-gradient(to right,#8f7a5e,transparent);border-radius:16px 16px 0 0; }
.process-stair-3 .stair-card::before { content:''; position:absolute; top:0;left:0;right:0;height:3px;background:linear-gradient(to right,#5e728f,transparent);border-radius:16px 16px 0 0; }
.process-stair-4 .stair-card::before { content:''; position:absolute; top:0;left:0;right:0;height:3px;background:linear-gradient(to right,#4a5240,transparent);border-radius:16px 16px 0 0; }

.stair-icon {
  width: 28px; height: 28px;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.stair-icon svg { width: 100%; height: 100%; }
.process-stair-1 .stair-icon { color: #6b8f5e; }
.process-stair-2 .stair-icon { color: #8f7a5e; }
.process-stair-3 .stair-icon { color: #5e728f; }
.process-stair-4 .stair-icon { color: #4a5240; }

.stair-pill {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
  width: fit-content;
}
.process-stair-1 .stair-pill { background:rgba(107,143,94,0.1); color:#6b8f5e; border:1px solid rgba(107,143,94,0.22); }
.process-stair-2 .stair-pill { background:rgba(143,122,94,0.1); color:#8f7a5e; border:1px solid rgba(143,122,94,0.22); }
.process-stair-3 .stair-pill { background:rgba(94,114,143,0.1); color:#5e728f; border:1px solid rgba(94,114,143,0.22); }
.process-stair-4 .stair-pill { background:rgba(74,82,64,0.08); color:#4a5240; border:1px solid rgba(74,82,64,0.18); }

.stair-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  overflow: visible;
}
.stair-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Animated shimmer connector SVG — desktop only ── */
.process-shimmer-svg {
  display: none;
  width: 100%;
  height: 48px;
  pointer-events: none;
  overflow: visible;
  margin-bottom: 1.5rem;
}
@media (min-width: 900px) { .process-shimmer-svg { display: block; } }

.shimmer-base {
  stroke: rgba(74,82,64,0.2);
  stroke-width: 1.5;
  stroke-dasharray: 6 5;
}
.shimmer-light {
  stroke: url(#stairShimmer);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 80 1000;
  animation: stairShimmerAnim 2.6s ease-in-out infinite;
}
@keyframes stairShimmerAnim {
  0%   { stroke-dashoffset: 1100; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* Hide old inline connectors */
.stair-connector { display: none; }

/* ── CONTACT ── */
.contact { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 0 1.25rem;
}
@media (min-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    padding: 0 2.5rem;
    align-items: start;
  }
}
@media (min-width: 1200px) { .contact-inner { padding: 0 4rem; } }

.contact-form {
  background: var(--cream-2);
  border: 1px solid var(--olive-border);
  border-radius: 20px;
  padding: 2rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream);
  border: 1px solid var(--olive-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--olive); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--cream); }
.form-submit {
  width: 100%;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--charcoal-2); }

.contact-detail { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.contact-detail-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--muted); }
.contact-icon {
  width: 32px; height: 32px;
  background: var(--cream-2);
  border: 1px solid var(--olive-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--olive);
}
.contact-icon svg { width: 14px; height: 14px; }

/* ── FOOTER ── */
/* ── FOOTER REDESIGN ── */
footer {
  background: black;
  color: var(--cream);
}

/* CTA strip */
.footer-cta {
  border-bottom: 1px solid rgba(245,242,235,0.08);
  padding: 4rem 1.25rem;
}
@media (min-width: 768px) { .footer-cta { padding: 5rem 2.5rem; } }
@media (min-width: 1200px) { .footer-cta { padding: 6rem 4rem; } }

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-cta-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-cta-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--olive-light);
  flex-shrink: 0;
}

.footer-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.footer-cta-heading em { color: #a8b890; font-style: italic; }

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--cream);
  padding: 1rem 2rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-footer-cta:hover {
  background: #e4dfd3;
  transform: translateY(-2px);
}
.btn-footer-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.btn-footer-cta:hover svg { transform: translateX(3px); }

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 1.25rem;
  border-bottom: 1px solid rgba(245,242,235,0.08);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 4rem 2.5rem;
    gap: 2rem;
  }
}
@media (min-width: 1200px) { .footer-grid { padding: 4rem; } }

.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }

.footer-logo-img {
 width: 220px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  display: block;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(245,242,235,0.45);
  line-height: 1.8;
  max-width: 260px;
}

footer .footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.9);
  margin-bottom: 1.25rem;
}

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

footer .footer-col ul li a,
footer .footer-col ul li span {
  font-size: 0.875rem;
  color: rgba(245,242,235,0.6);
  transition: color var(--transition);
}
footer .footer-col ul li a:hover { color: var(--cream); }

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .footer-bottom { padding: 1.75rem 2.5rem; } }
@media (min-width: 1200px) { .footer-bottom { padding: 1.75rem 4rem; } }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245,242,235,0.25);
  letter-spacing: 0.02em;
}

.footer-tornado {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.04;
  position: absolute;
  right: 2rem;
  bottom: -10px;
  pointer-events: none;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }

.hero-slide-1 { background-image: url('../images/Hero_Cafe.webp'); }
.hero-slide-2 { background-image: url('../images/Hero_Consulting.webp'); }
.hero-slide-3 { background-image: url('../images/Hero_Decor.webp'); }
.hero-slide-4 { background-image: url('../images/Hero_Fashion.webp'); }
/* hero-slide-5 removed */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,18,14,0.72) 0%,
    rgba(20,18,14,0.45) 55%,
    rgba(20,18,14,0.25) 100%
  );
  z-index: 1;
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(20,18,14,0.6), transparent);
  z-index: 1;
}

.hero { position: relative; color: #f5f2eb; }
.hero-top { position: relative; z-index: 2; }
.hero-bottom { position: relative; z-index: 2; border-top-color: rgba(245,242,235,0.15); }
.hero h1 { color: #f5f2eb; }
.hero h1 .l3 { color: #a8b890; }
.hero-sub { color: rgba(245,242,235,0.65); }
.hero .hero-tag { color: #a8b890; }
.hero .hero-tag-dot { background: #a8b890; }
.hero .stat-num { color: #f5f2eb; }
.hero .stat-num em { color: #a8b890; }
.hero .stat-label { color: rgba(245,242,235,0.45); }
.hero .btn-dark { background: #f5f2eb; color: #1e1e1a; }
.hero .btn-dark:hover { background: #e4dfd3; }
.hero .btn-outline { color: rgba(245,242,235,0.8); border-color: rgba(245,242,235,0.25); }
.hero .btn-outline:hover { background: rgba(245,242,235,0.1); border-color: rgba(245,242,235,0.4); color: #f5f2eb; }

/* Slide indicators */
.slide-indicators {
  position: absolute;
  bottom: 2rem;
  right: 1.25rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media (min-width: 768px) { .slide-indicators { right: 2.5rem; } }
@media (min-width: 1200px) { .slide-indicators { right: 4rem; } }

.slide-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.4);
  transition: opacity 0.6s;
}
.slide-dots { display: flex; gap: 5px; }
.slide-dot {
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255,255,255,0.2);
  transition: background 0.6s, width 0.4s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.slide-dot.active {
  background: rgba(245,242,235,0.7);
  width: 32px;
}

/* ═══════════════════════════════════════
   RESULTS v5 — social media platform icons
   ═══════════════════════════════════════ */
.result-card {
  position: relative;
  overflow: hidden;
}

.result-platform {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.result-platform svg { width: 18px; height: 18px; }

.result-platform-meta {
  background: #1877F2;
  color: #fff;
}
.result-platform-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
.result-platform-tiktok {
  background: #010101;
  color: #fff;
}
.result-platform-youtube {
  background: #FF0000;
  color: #fff;
}

/* ═══════════════════════════════════════
   PROCESS v5 — coloured accents + blobs
   ═══════════════════════════════════════ */
.process {
  background: var(--cream-2);
  background-image: url('../images/Services_Background_2.webp');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--olive-border);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237,233,224,0.88);
  z-index: 0;
  pointer-events: none;
}
.process-inner { position: relative; z-index: 1; }

/* Decorative background blobs */
.process-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.process-deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.process-deco-blob-1 {
  width: 320px; height: 320px;
  top: -80px; left: -60px;
  background: radial-gradient(circle, rgba(74,82,64,0.08) 0%, transparent 70%);
}
.process-deco-blob-2 {
  width: 260px; height: 260px;
  bottom: -60px; right: 10%;
  background: radial-gradient(circle, rgba(168,184,144,0.12) 0%, transparent 70%);
}
/* Connecting dashed line between steps (desktop) */
.process-deco-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--olive-border) 0px,
    var(--olive-border) 6px,
    transparent 6px,
    transparent 14px
  );
  display: none;
}
@media (min-width: 768px) { .process-deco-line { display: block; } }

.process-inner { position: relative; z-index: 1; padding: 0 1.25rem; }
@media (min-width: 768px) { .process-inner { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .process-inner { padding: 0 4rem; } }

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 3rem;
  gap: 0;
}
@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  padding: 2rem 0;
  border-bottom: 1px solid var(--olive-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-step {
    padding: 2rem 2rem 2rem 0;
    border-bottom: none;
    border-right: 1px solid var(--olive-border);
  }
  .process-step:last-child { border-right: none; padding-right: 0; }
  .process-step + .process-step { padding-left: 2rem; }
}

/* Step accent block — number + icon side by side */
.step-accent {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.step-accent-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  opacity: 0.7;
}
.step-icon svg { width: 100%; height: 100%; }

/* Per-step accent colors */
.process-step-1 .step-accent-num { color: #6b8f5e; }
.process-step-1 .step-icon { color: #6b8f5e; }
.process-step-2 .step-accent-num { color: #8f7a5e; }
.process-step-2 .step-icon { color: #8f7a5e; }
.process-step-3 .step-accent-num { color: #5e728f; }
.process-step-3 .step-icon { color: #5e728f; }
.process-step-4 .step-accent-num { color: #4a5240; }
.process-step-4 .step-icon { color: #4a5240; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  overflow: visible;
}
.step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* Small pill / tag per step */
.step-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  width: fit-content;
  margin-top: 0.25rem;
}
.step-pill-1 { background: rgba(107,143,94,0.12); color: #6b8f5e; border: 1px solid rgba(107,143,94,0.25); }
.step-pill-2 { background: rgba(143,122,94,0.12); color: #8f7a5e; border: 1px solid rgba(143,122,94,0.25); }
.step-pill-3 { background: rgba(94,114,143,0.12); color: #5e728f; border: 1px solid rgba(94,114,143,0.25); }
.step-pill-4 { background: rgba(74,82,64,0.1); color: #4a5240; border: 1px solid rgba(74,82,64,0.2); }

@media (min-width: 900px) { #hamburger { display: none !important; } }
#hamburger span { background: #fff; }
nav.scrolled #hamburger span { background: #333; }

/* PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
#page-loader img {
  width: 140px;
  height: auto;
  object-fit: contain;
  animation: loader-pulse 1.4s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.96); }
}

.grecaptcha-badge {
  visibility: hidden !important;
}

/* ═══════════════════════════════════════
   AI PROMPT za background (za DALL-E / Midjourney)
   ═══════════════════════════════════════

   Predloženi prompt:
   "Abstract dark background for a digital marketing AI section.
   Deep charcoal #1e1e1a base. Glowing olive-green data streams
   and circuit-like lines flowing diagonally from bottom-left to
   top-right. Subtle hexagonal grid texture. Small bright nodes
   at intersections. Atmospheric depth with dark vignette edges.
   Wide 16:9, no text, photorealistic render, 4K."

   Kada imaš sliku, dodaj u CSS:
   .ai-section { background-image: url('../images/ai-bg.jpg'); background-size: cover; }
   ═══════════════════════════════════════ */

/* AI section container needs z-index to sit above the ::before overlay */
.ai-section > .container { position: relative; z-index: 1; }
