/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --cream:   #FAF8F5;
  --cream2:  #F2EFE9;
  --cream3:  #E8E3DA;
  --charcoal:#1A1A1A;
  --mid:     #4A4A4A;
  --muted:   #7A7A7A;
  --sage:    #6B7C5C;
  --sage-lt: #8A9E79;
  --sage-dk: #4E5C43;
  --orange:  #C94F1E;
  --white:   #FFFFFF;
  --r:       10px;
  --nav-h:   72px;
  /* light mode surface vars */
  --bg:      #FAF8F5;
  --bg2:     #F2EFE9;
  --bg3:     #E8E3DA;
  --text:    #1A1A1A;
  --text-mid:#4A4A4A;
  --text-mut:#7A7A7A;
  --border:  #E8E3DA;
  --nav-bg:  #FAF8F5;
  --card-bg: #FFFFFF;
}

html.dark {
  --bg:      #0F0F0F;
  --bg2:     #171717;
  --bg3:     #222222;
  --text:    #F0EDE8;
  --text-mid:#AAAAAA;
  --text-mut:#666666;
  --border:  #2A2A2A;
  --nav-bg:  #0F0F0F;
  --card-bg: #1A1A1A;
  --cream:   #0F0F0F;
  --cream2:  #171717;
  --cream3:  #2A2A2A;
  --charcoal:#F0EDE8;
  --mid:     #AAAAAA;
  --muted:   #666666;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

/* ─── Typography helpers ─────────────────────────────────────────────────── */
.serif { font-family: 'Playfair Display', Georgia, serif; }
.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r);
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn-primary {
  background: rgba(107, 124, 92, 0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 6px 28px rgba(107,124,92,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover {
  background: rgba(107, 124, 92, 0.72);
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(107,124,92,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: rgba(250,248,245,0.88);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 16px rgba(0,0,0,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.btn-dark {
  background: rgba(255,255,255,0.82);
  color: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.95);
}
.btn-dark:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.22), inset 0 1px 0 #fff;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(80vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1A1A1A;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('random-pics/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15,15,13,0.82) 0%, rgba(15,15,13,0.45) 50%, rgba(15,15,13,0.1) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 45%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 64px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
}


/* ── Ken Burns background zoom ── */
@keyframes kenBurns {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero-bg { animation: kenBurns 8s ease-out forwards; }

/* ── Line reveal animation ── */
@keyframes lineReveal {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeUpIn {
  from { transform: translateY(18px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* decorative rule above headline */
.hero-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
}
.hero-rule-line {
  width: 48px; height: 1.5px;
  background: var(--sage-lt);
}
.hero-rule-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.5);
}

/* headline */
.hero h1 {
  font-size: clamp(44px, 7.2vw, 88px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-top: 8px;
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-line-wrap {
  display: block;
  overflow: hidden;
  line-height: 1.08;
}
.hero-line-inner {
  display: block;
  opacity: 0;
  animation: lineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-line-inner.d1 { animation-delay: 0.35s; }
.hero-line-inner.d2 { animation-delay: 0.55s; }
.hero-line-inner.d3 { animation-delay: 0.75s; }

.hero h1 em {
  font-style: italic;
  color: var(--sage-lt);
  position: relative;
}
/* animated underline on "Compete." */
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  height: 3px;
  width: 0;
  background: var(--sage-lt);
  border-radius: 2px;
  animation: underlineGrow 0.7s ease 1.3s forwards;
}
@keyframes underlineGrow {
  to { width: 100%; }
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250,248,245,0.7);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUpIn 0.8s ease 1.0s forwards;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUpIn 0.8s ease 1.15s forwards;
}
/* shimmer on ghost CTA */
.hero-btns .btn-ghost,
.cta-section .btn-ghost {
  position: relative;
  overflow: hidden;
}
.hero-btns .btn-ghost::before,
.cta-section .btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: btnShimmer 3.5s ease 2.5s infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%   { left: -80%; }
  100% { left: 130%; }
}

/* shimmer on all primary btns */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: btnShimmer 3.5s ease 2s infinite;
  pointer-events: none;
}
.hero-btns .btn-primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--r) + 4px);
  border: 1.5px solid rgba(107,124,92,0.5);
  animation: ctaPulse 2.4s ease 2s infinite;
}
@keyframes ctaPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(250,248,245,0.45);
  opacity: 0;
  animation: fadeIn 0.8s ease 1.4s forwards;
}
.hero-proof-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }
.hero-stars { color: #E8C547; letter-spacing: 3px; font-size: 13px; }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(6px); opacity: 1; }
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ─── STATS BAR ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: rgba(20, 30, 18, 0.86);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.3);
  box-shadow: inset 0 1px 0 rgba(155,210,120,0.13), inset 0 -1px 0 rgba(0,0,0,0.15);
}
/* edge fade masks */
.stats-bar::before,
.stats-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.stats-bar::before { left: 0;  background: linear-gradient(to right, rgba(20,30,18,0.92), transparent); }
.stats-bar::after  { right: 0; background: linear-gradient(to left,  rgba(20,30,18,0.92), transparent); }

.stats-bar-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: statsTicker 28s linear infinite;
}
.stats-bar-inner:hover { animation-play-state: paused; }

@keyframes statsTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  white-space: nowrap;
  flex-shrink: 0;
  height: 44px;
}
.stat-icon {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(140,190,110,0.1);
  border: 1px solid rgba(140,190,110,0.2);
  box-shadow: 0 0 10px rgba(140,190,110,0.08);
  opacity: 1;
}
.stat-icon svg { width: 13px; height: 13px; stroke: rgba(180,230,150,0.9); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stat-text { display: flex; align-items: center; gap: 7px; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(230,245,220,0.95);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 0 18px rgba(155,210,120,0.25);
}
.stat-num sup {
  font-size: 0.75em;
  font-weight: 500;
  vertical-align: super;
  color: rgba(255,255,255,0.7);
}
.stat-lbl {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  position: relative;
  top: 2px;
}
.stat-sep-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(107,124,92,0.5);
  flex-shrink: 0;
  margin: 0 4px;
}
/* separator between groups */
.stat-sep {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(155,210,120,0.25), transparent);
  flex-shrink: 0;
  align-self: center;
  margin: 0 4px;
}

/* ─── SECTION WRAPPER ────────────────────────────────────────────────────── */
.section {
  padding: 112px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-wide {
  padding: 112px 48px;
}
.section-wide > .inner { max-width: 1200px; margin: 0 auto; }

/* ─── SERVICES / TIER TILES ──────────────────────────────────────────────── */
.services-wrap { background: var(--cream); padding-top: 8px; }
.tier-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.tier-tile {
  border-radius: 12px;
  background: #fff;
  border-style: solid;
  border-width: 4px 1.5px 1.5px 1.5px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background-size: 200% 100%;
  animation: tierShimmer 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.tier-tile-hust::before { background: linear-gradient(90deg, transparent 0%, rgba(205,127,50,0.6) 50%, transparent 100%); background-size: 200% 100%; animation-delay: 0s; }
.tier-tile-hand::before { background: linear-gradient(90deg, transparent 0%, rgba(158,158,158,0.55) 50%, transparent 100%); background-size: 200% 100%; animation-delay: 1.7s; }
.tier-tile-pro::before  { background: linear-gradient(90deg, transparent 0%, rgba(184,134,11,0.6) 50%, transparent 100%); background-size: 200% 100%; animation-delay: 3.4s; }
@keyframes tierShimmer {
  0%   { background-position: -200% 0; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { background-position: 300% 0; opacity: 0; }
}

.tier-tile-pro  { border-color: #B8860B; border-left-color: rgba(184,134,11,0.4); border-right-color: rgba(184,134,11,0.4); border-bottom-color: rgba(184,134,11,0.4); }
.tier-tile-hand { border-color: #9E9E9E; border-left-color: rgba(158,158,158,0.4); border-right-color: rgba(158,158,158,0.4); border-bottom-color: rgba(158,158,158,0.4); }
.tier-tile-hust { border-color: #CD7F32; border-left-color: rgba(205,127,50,0.4);  border-right-color: rgba(205,127,50,0.4);  border-bottom-color: rgba(205,127,50,0.4); }

.tier-tile:hover { transform: translateY(-5px); }
.tier-tile-pro:hover  { box-shadow: 0 14px 44px rgba(184,134,11,0.22), 0 2px 16px rgba(0,0,0,0.06); }
.tier-tile-hand:hover { box-shadow: 0 14px 44px rgba(158,158,158,0.22), 0 2px 16px rgba(0,0,0,0.06); }
.tier-tile-hust:hover { box-shadow: 0 14px 44px rgba(205,127,50,0.22), 0 2px 16px rgba(0,0,0,0.06); }
.tier-tile-hdr {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--cream3);
}
html.dark .tier-tile-hdr { border-color: #2a2a2a; }
.tier-tile-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 3px 11px;
  margin-bottom: 10px;
}
.tier-badge-pro  { background: #FBF5E0; color: #B8860B; }
.tier-badge-hand { background: #F5F5F5; color: #5E5E5E; }
.tier-badge-hust { background: #FBF0E6; color: #A0522D; }
html.dark .tier-badge-pro  { background: rgba(184,134,11,0.15); }
html.dark .tier-badge-hand { background: rgba(158,158,158,0.15); }
html.dark .tier-badge-hust { background: rgba(205,127,50,0.15); }
.tier-tile-hdr h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}
.tier-tile-sub { font-size: 12px; color: #5A5A5A; margin: 0; }
html.dark .tier-tile-sub { color: #999; }
.tier-dds { flex: 1; }
.tier-dd { border-bottom: 1px solid var(--cream3); }
html.dark .tier-dd { border-color: #2a2a2a; }
.tier-dd:last-child { border-bottom: none; }
.tier-dd summary {
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.15s;
}
.tier-dd summary::-webkit-details-marker { display: none; }
.tier-dd summary::after { content: '+'; font-size: 18px; font-weight: 300; color: var(--muted); }
.tier-dd[open] summary::after { content: '−'; }
.tier-tile-pro  .tier-dd[open] summary { color: #B8860B; }
.tier-tile-hand .tier-dd[open] summary { color: #757575; }
.tier-tile-hust .tier-dd[open] summary { color: #A0522D; }
.tier-dd summary:hover { background: var(--cream2); }
html.dark .tier-dd summary:hover { background: #222; }
.tier-dd ul { list-style: none; margin: 0; padding: 2px 20px 14px; columns: 2; column-gap: 10px; }
.tier-dd li {
  font-size: 12.5px;
  color: var(--muted);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  break-inside: avoid;
  line-height: 1.45;
}
.tier-dd li::before {
  content: '';
  width: 6px; height: 6px;
  min-width: 6px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.tier-tile-pro  .tier-dd li::before { background: #B8860B; }
.tier-tile-hand .tier-dd li::before { background: #9E9E9E; }
.tier-tile-hust .tier-dd li::before { background: #CD7F32; }
.tier-tile-cta {
  display: block;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  font-weight: 600;
  border-top: 1px solid var(--cream3);
  text-decoration: none;
  transition: background 0.15s;
}
html.dark .tier-tile-cta { border-color: #2a2a2a; }
.tier-tile-pro  .tier-tile-cta { color: #B8860B; }
.tier-tile-hand .tier-tile-cta { color: #757575; }
.tier-tile-hust .tier-tile-cta { color: #A0522D; }
.tier-tile-cta:hover { background: var(--cream2); }
html.dark .tier-tile-cta:hover { background: #222; }
@media (max-width: 900px) { .tier-tiles { grid-template-columns: 1fr; } .tier-dd ul { columns: 1; } }

/* ─── ABOUT / WHY US ─────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.about-img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* ─── MOCK DASHBOARD ─────────────────────────────────────────────────────── */
.mock-dashboard {
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.1);
  background: #fff;
  font-size: 13px;
}
.mock-hero-img {
  position: relative;
  width: calc(100% + 0px);
  aspect-ratio: 16/7;
  overflow: hidden;
  margin: -14px -14px 12px -14px;
  border-radius: 8px 8px 0 0;
}
.mock-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mock-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}
.mock-hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(107,124,92,0.85);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
}
.mock-chrome {
  background: #efefef;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #ddd;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.mock-dot-r { background: #ff5f57; }
.mock-dot-y { background: #febc2e; }
.mock-dot-g { background: #28c840; }
.mock-url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  color: #888;
  margin-left: 8px;
  text-align: center;
}
.mock-nav {
  background: #fff;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.mock-brand-logo { height: 24px; width: auto; display: block; }
.mock-greeting { font-size: 11px; color: #888; }
.mock-body { background: #f5f4f1; padding: 14px 16px 18px; }
.mock-section-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #aaa;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.mock-job-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #eee;
}
.mock-job-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.mock-job-name { font-size: 13px; font-weight: 700; color: #111; }
.mock-job-sub { font-size: 10px; color: #aaa; margin-top: 2px; }
.mock-live {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff0f0;
  color: #e53e3e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.mock-pulse {
  width: 6px; height: 6px;
  background: #e53e3e;
  border-radius: 50%;
  animation: mockPulse 1.2s infinite;
}
@keyframes mockPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}
.mock-timer {
  font-size: 11px;
  color: #666;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}
.mock-timer strong { color: #111; }
.mock-bids-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 8px;
}
.mock-bids { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.mock-bid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: #f8f8f8;
  border-radius: 8px;
  opacity: 0;
  animation: bidSlide 0.45s ease forwards;
}
.mock-bid-win {
  background: #f0f5ec;
  border: 1px solid rgba(107,124,92,0.25);
}
@keyframes bidSlide {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mock-bid-left { display: flex; align-items: center; gap: 8px; }
.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-bid-name { font-size: 12px; font-weight: 600; color: #111; }
.mock-bid-stars { font-size: 10px; color: #f59e0b; }
.mock-bid-price { font-size: 15px; font-weight: 700; color: #111; }
.mock-bid-price-win { color: var(--sage); }
.mock-lowest {
  background: var(--sage);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0;
  animation: bidSlide 0.45s ease 3.2s forwards;
}
.mock-lowest strong { font-size: 16px; }
/* Timer row */
.mock-timer-row { font-size: 11px; color: #666; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid #f2f2f2; }
.mock-timer-row strong { color: #111; }
/* Tabs */
.mock-tabs { display: flex; background: #fff; border-bottom: 1px solid #eee; padding: 0 16px; }
.mock-tab { background: none; border: none; border-bottom: 2px solid transparent; padding: 9px 12px; font-size: 12px; font-weight: 600; color: #aaa; cursor: pointer; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s; }
.mock-tab-active { color: var(--sage); border-bottom-color: var(--sage); }
.mock-tab-hidden { display: none !important; }
/* Nav right */
.mock-nav-right { display: flex; align-items: center; gap: 8px; }
.mock-notif-badge { background: #e53e3e; color: #fff; font-size: 9px; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
/* Accept */
.mock-accept-wrap { margin-top: 10px; }
.mock-accept-btn { width: 100%; padding: 11px 16px; background: var(--sage); color: #fff; border: none; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: background 0.2s; }
.mock-accept-btn:hover { filter: brightness(1.1); }
/* Success */
.mock-success-state { text-align: center; padding: 20px 10px; }
.mock-success-icon { font-size: 32px; margin-bottom: 6px; }
.mock-success-title { font-size: 15px; font-weight: 700; color: var(--sage); margin-bottom: 4px; }
.mock-success-sub { font-size: 11px; color: #888; }
/* Completed */
.mock-completed-list { display: flex; flex-direction: column; gap: 8px; }
.mock-completed-item { display: flex; justify-content: space-between; align-items: center; background: #fff; border-radius: 8px; padding: 11px 13px; border: 1px solid #eee; }
.mock-completed-left { display: flex; align-items: center; gap: 10px; }
.mock-check { width: 22px; height: 22px; background: #e8f0e3; color: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.mock-completed-name { font-size: 12px; font-weight: 700; color: #111; }
.mock-completed-sub { font-size: 10px; color: #aaa; }
.mock-completed-right { text-align: right; }
.mock-completed-price { font-size: 13px; font-weight: 700; color: #111; }
.mock-completed-stars { font-size: 10px; color: #f59e0b; }
/* Messages */
.mock-messages-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.mock-msg-item { display: flex; gap: 10px; }
.mock-msg-body { flex: 1; }
.mock-msg-from { font-size: 11px; font-weight: 700; color: #111; margin-bottom: 2px; }
.mock-msg-time { font-weight: 400; color: #aaa; margin-left: 6px; }
.mock-msg-text { font-size: 11px; color: #555; line-height: 1.4; }
.mock-reply-bar { display: flex; gap: 8px; align-items: center; background: #f0f0ee; border-radius: 8px; padding: 8px 12px; }
.mock-reply-input { flex: 1; font-size: 11px; color: #aaa; }
.mock-reply-btn { background: var(--sage); color: #fff; border: none; border-radius: 6px; padding: 5px 12px; font-size: 11px; font-weight: 600; cursor: pointer; }
/* Flash */
@keyframes mockFlash { 0%,100%{background:inherit} 50%{background:#e8f0e3} }
.mock-bid-flash { animation: mockFlash 0.5s ease; }

.about-content p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 36px;
  margin-top: 20px;
}
.differentiators {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.diff-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 18px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.diff-item:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-color: rgba(107,124,92,0.3);
}
.diff-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(107,124,92,0.1);
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 18px; height: 18px; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.diff-text { flex: 1; }
.diff-text h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; font-family: 'Inter', sans-serif; line-height: 1.3; }
.diff-text p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery-wrap { background: var(--cream2); padding-top: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 64px;
}
.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery-card:nth-child(1) { grid-row: 1 / span 2; aspect-ratio: unset; }
.gallery-card:nth-child(4) { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-cta {
  grid-column: 1;
  grid-row: 3;
  background: var(--sage);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 1 / 1;
}
.gallery-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.gallery-cta h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}
.gallery-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
}
.gallery-cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 22px;
  background: var(--white);
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.gallery-cta-btn:hover { opacity: 0.85; }
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.04); filter: brightness(0.75); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(107,124,92,0.8);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 6px;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testi-scroll {
  overflow: hidden;
  padding: 8px 0 24px;
}
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testi-marquee 50s linear infinite;
}
.testi-scroll:hover .testi-track { animation-play-state: paused; }
@keyframes testi-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  flex: 0 0 360px;
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}
.testi-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px rgba(107,124,92,0.13), 0 6px 16px rgba(0,0,0,0.07);
  border-color: var(--sage-lt);
}
.testi-stars { color: #D4A017; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
.cta-section {
  background: #2C3B2D;
  padding: 112px 48px;
  text-align: center;
}
.cta-section .label { color: rgba(250,248,245,0.5); }
.cta-section h2 {
  color: var(--white);
  margin: 0 auto 18px;
  max-width: 560px;
}
.cta-section h2 em { color: var(--sage-lt); }
.cta-sub {
  font-size: 17px;
  color: rgba(250,248,245,0.6);
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ─── RECAPTCHA ───────────────────────────────────────────────────────────── */
.grecaptcha-badge { visibility: hidden !important; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: #FAF8F5;
  padding: 64px 48px 36px;
  color: rgba(26,26,26,0.55);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 28px;
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(26,26,26,0.5);
  line-height: 1.65;
  max-width: 260px;
}
.footer-nav { display: flex; gap: 80px; }
.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(26,26,26,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #1A1A1A; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: rgba(26,26,26,0.4);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(26,26,26,0.75); }

/* ─── Dark mode overrides ────────────────────────────────────────────────── */
html.dark .btn-ghost { color: var(--text); border-color: var(--border); }
html.dark .btn-ghost:hover { border-color: var(--sage); color: var(--sage); }

html.dark .services-wrap { background: var(--bg); }
html.dark .tier-tile { background: #1a1a1a; }
html.dark .tier-tile-pro  { border-color: #B8860B; border-left-color: rgba(184,134,11,0.35); border-right-color: rgba(184,134,11,0.35); border-bottom-color: rgba(184,134,11,0.35); }
html.dark .tier-tile-hand { border-color: #9E9E9E; border-left-color: rgba(158,158,158,0.3); border-right-color: rgba(158,158,158,0.3); border-bottom-color: rgba(158,158,158,0.3); }
html.dark .tier-tile-hust { border-color: #CD7F32; border-left-color: rgba(205,127,50,0.35); border-right-color: rgba(205,127,50,0.35); border-bottom-color: rgba(205,127,50,0.35); }
html.dark .tier-tile-hust::before { background: linear-gradient(90deg, transparent 0%, rgba(205,127,50,0.55) 50%, transparent 100%); background-size: 200% 100%; }
html.dark .tier-tile-hand::before { background: linear-gradient(90deg, transparent 0%, rgba(158,158,158,0.45) 50%, transparent 100%); background-size: 200% 100%; }
html.dark .tier-tile-pro::before  { background: linear-gradient(90deg, transparent 0%, rgba(184,134,11,0.55) 50%, transparent 100%); background-size: 200% 100%; }
html.dark .service-item { border-top-color: var(--border); }
html.dark .service-item:last-child { border-bottom-color: var(--border); }
html.dark .service-body p { color: var(--text-mut); }
html.dark .service-checklist li { color: var(--text-mut); }
html.dark .service-checklist li::before {
  border-color: var(--sage-lt);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1,4 4,7 9,1' stroke='%238A9E79' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

html.dark .gallery-wrap { background: var(--bg2); }

html.dark .testi-card { background: var(--bg2); border-color: var(--border); }
html.dark .testi-card:hover { box-shadow: 0 24px 56px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.3); border-color: var(--sage); }
html.dark .testi-quote { color: var(--text-mid); }

html.dark .service-item:hover .service-body h3 { color: var(--sage-lt); }

html.dark .about-content p { color: var(--text-mid); }
html.dark .diff-item { background: #1a1a1a; border-color: rgba(255,255,255,0.07); }
html.dark .diff-item:hover { border-color: rgba(107,124,92,0.35); box-shadow: 0 4px 18px rgba(0,0,0,0.3); }
html.dark .diff-icon { background: rgba(107,124,92,0.2); }
html.dark .diff-text p { color: var(--text-mut); }

html.dark .testi-role { color: var(--text-mid); }

html.dark footer { background: #050505; color: rgba(250,248,245,0.5); }
html.dark .footer-grid { border-bottom-color: rgba(255,255,255,0.07); }
html.dark .footer-tagline { color: rgba(250,248,245,0.4); }
html.dark .footer-col-heading { color: rgba(250,248,245,0.3); }
html.dark .footer-col ul li a { color: rgba(250,248,245,0.55); }
html.dark .footer-col ul li a:hover { color: #FAF8F5; }
html.dark .footer-legal a { color: rgba(250,248,245,0.35); }
html.dark .footer-legal a:hover { color: rgba(250,248,245,0.7); }
html.dark .footer-brand img { content: url('logo-dark.png'); }

/* Stats bar dark mode — same glass treatment, slightly deeper */
html.dark .stats-bar {
  background: rgba(12, 18, 10, 0.90) !important;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.4);
  box-shadow: inset 0 1px 0 rgba(155,210,120,0.1), inset 0 -1px 0 rgba(0,0,0,0.2) !important;
}
html.dark .stats-bar .stat-sep {
  background: linear-gradient(to bottom, transparent, rgba(155,210,120,0.2), transparent);
}
html.dark .stats-bar .stat-num { color: rgba(220,240,210,0.95); text-shadow: 0 0 18px rgba(155,210,120,0.2); }
html.dark .stats-bar .stat-lbl { color: rgba(180,210,160,0.5); }
html.dark .stats-bar .stat-icon {
  background: rgba(140,190,110,0.08);
  border-color: rgba(140,190,110,0.15);
  box-shadow: 0 0 10px rgba(140,190,110,0.06);
}
html.dark .stats-bar-inner { box-shadow: none; }
html.dark .stats-bar::before { background: linear-gradient(to right, rgba(12,18,10,0.92), transparent); }
html.dark .stats-bar::after  { background: linear-gradient(to left,  rgba(12,18,10,0.92), transparent); }
html.dark .stats-bar .stat-item { background: transparent !important; }

/* Ensure CTA section background matches light mode in dark mode */
html.dark .cta-section {
  background: #2C3B2D !important;
}
/* CTA buttons in dark mode — sage glass to match theme */
html.dark .cta-section .btn-dark,
html.dark .cta-section .btn {
  background: rgba(107,124,92,0.55) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  box-shadow: 0 6px 28px rgba(107,124,92,0.35), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}
html.dark .cta-section .btn-dark:hover,
html.dark .cta-section .btn:hover {
  background: rgba(107,124,92,0.72) !important;
  box-shadow: 0 10px 36px rgba(107,124,92,0.45), inset 0 1px 0 rgba(255,255,255,0.35) !important;
}

/* ─── Scroll reveal ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.nav-hidden { display: none !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
.about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 16/9; max-height: 380px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card:nth-child(1) { grid-row: span 1; }
  .gallery-card:nth-child(4) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-inner { padding: 60px 20px 48px; }
  .hero h1 { font-size: clamp(46px, 11vw, 64px); margin-top: 6px; }
  .hero-sub { font-size: 17px; margin-bottom: 32px; }
  .hero-btns { gap: 10px; }
  .hero-proof { flex-wrap: wrap; gap: 8px; font-size: 12px; }

  .section { padding: 72px 20px; }
  .section-wide { padding: 72px 20px; }
  .service-checklist { columns: 1; }
  .about-img { display: none; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(4) { aspect-ratio: 4/3; grid-row: span 1; grid-column: span 1; }

  .testi-card { flex: 0 0 280px; padding: 24px 20px; }

  .cta-section { padding: 72px 20px; }
  .cta-section h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-sub { font-size: 15px; }

  footer { padding: 48px 20px 24px; }
  .footer-nav { gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ─── Small phones (iPhone SE, 375–480px) ────────────────────────────────── */
@media (max-width: 480px) {
  /* Nav */
  :root { --nav-h: 56px; }
  nav { overflow: hidden; }

  /* Hide the decorative underline on Compete — looks misaligned at small sizes */
  .hero h1 em::after { display: none; }

  /* Hero */
  .hero { min-height: calc(76vh - 60px); }
  .hero-inner { padding: 64px 16px 40px; }
  .hero-rule { margin-bottom: 20px; }
  .hero h1 { font-size: clamp(42px, 11.5vw, 56px); margin-bottom: 16px; }
  .hero-sub { font-size: 16px; max-width: 100%; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 16px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-proof { font-size: 11px; }
  .hero-proof-divider { display: none; }
  .hero-scroll { display: none; }

  /* Sections */
  .section { padding: 56px 16px; }
  .section-wide { padding: 56px 16px; }

  /* Services */
  .services-wrap .section { padding-top: 36px; }
  .services-wrap h2 { margin-bottom: 6px; }
  .services-grid { margin-top: 20px; }
  .service-item { grid-template-columns: 36px 1fr; gap: 14px; padding: 20px 0; }
  .service-checklist { columns: 1; }

  /* Gallery */
  .gallery-grid { gap: 10px; }

  /* Stats bar */
  .stat-item { padding: 14px 20px; gap: 10px; }
  .stat-icon { width: 28px; height: 28px; border-radius: 7px; }
  .stat-icon svg { width: 13px; height: 13px; }
  .stat-num { font-size: 16px; }
  .stat-lbl { font-size: 9.5px; }

  /* Testimonials */
  .testi-card { flex: 0 0 260px; }

  /* CTA */
  .cta-section { padding: 56px 16px; }
  .cta-section h2 { font-size: clamp(26px, 8vw, 36px); }
  .cta-sub { font-size: 14px; margin-bottom: 28px; }
  .cta-section .hero-btns { flex-direction: column; align-items: stretch; }
  .cta-section .btn { width: 100%; justify-content: center; }

  /* Footer */
  footer { padding: 40px 16px 20px; }
  .footer-grid { gap: 28px; }
  .footer-nav { flex-direction: column; gap: 24px; }
  .footer-tagline { max-width: 100%; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
}