/* ============================================================
   CaveTools — styles.css
   Brand: Blue #0052CC · Orange #FF7A00 · Ink #0D1117
   Font: Manrope
   ============================================================ */

:root {
  --blue: #0052CC;
  --blue-600: #0047b3;
  --blue-050: #E6F0FF;
  --orange: #FF7A00;
  --orange-600: #e66e00;
  --ink: #0D1117;
  --ink-700: #2b323c;
  --grey: #5b6572;
  --grey-050: #F4F6F8;
  --line: #e6e9ee;
  --white: #ffffff;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(13,17,23,.06), 0 4px 12px rgba(13,17,23,.05);
  --shadow-md: 0 10px 30px rgba(13,17,23,.10);
  --shadow-lg: 0 24px 60px rgba(13,17,23,.16);
  --shadow-blue: 0 18px 40px rgba(0,82,204,.28);

  --container: 1160px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .72rem; --pad-x: 1.15rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; font-family: inherit;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 18px 40px rgba(255,122,0,.32); }
.btn--orange:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); background: var(--blue-050); }
.btn--lg { --pad-y: .95rem; --pad-x: 1.6rem; font-size: 1rem; }
.btn--sm { --pad-y: .55rem; --pad-x: 1rem; font-size: .875rem; }
.btn--block { width: 100%; }

/* ---------- Brand wordmark ---------- */
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { flex: none; }
.brand__word { font-weight: 800; font-size: 1.32rem; letter-spacing: .06em; }
.brand__cave { color: var(--blue); }
.brand__tools { color: var(--orange); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
  margin-bottom: .9rem;
}
.eyebrow--light { color: #9dc0ff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { font-weight: 600; font-size: .95rem; color: var(--ink-700); transition: color .15s; }
.nav__links a:hover { color: var(--blue); }
.nav__cta { color: #fff !important; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(0,82,204,.09), transparent 70%),
    radial-gradient(50% 50% at 0% 30%, rgba(255,122,0,.08), transparent 70%);
  z-index: -1;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.hero__lead { margin-top: 1.25rem; font-size: 1.15rem; color: var(--grey); max-width: 34ch; }
.hero__lead strong { color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__points { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; margin-top: 2rem; }
.hero__points li { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: var(--ink-700); }
.check { width: 20px; height: 20px; fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.check--light { stroke: var(--orange); }

/* Hero mock UI */
.hero__art { position: relative; }
.hero__glow { position: absolute; inset: -10% -6% -12% -6%; background: radial-gradient(60% 60% at 50% 40%, rgba(0,82,204,.18), transparent 70%); filter: blur(10px); z-index: 0; }
/* ---- Slideshow shell ---- */
.slideshow { position: relative; z-index: 1; }
.slides {
  position: relative; aspect-ratio: 4 / 3;
  transform: perspective(1500px) rotateY(-8deg) rotateX(3deg); transform-origin: center;
}
.slide {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; transform: translateY(16px) scale(.97); pointer-events: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.slide__caption {
  position: absolute; left: 12px; bottom: 12px; z-index: 3;
  background: rgba(13,17,23,.82); color: #fff; font-size: .78rem; font-weight: 700;
  padding: .38rem .8rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.slideshow__dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.sdot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: #c8d0dc; cursor: pointer; transition: width .25s var(--ease), background .25s var(--ease); }
.sdot:hover { background: #9fb0c4; }
.sdot.is-active { width: 26px; background: var(--blue); }

/* ---- Browser window frame ---- */
.win { width: 100%; max-height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column; }
.win__bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: var(--grey-050); border-bottom: 1px solid var(--line); }
.dot3 { width: 9px; height: 9px; border-radius: 50%; background: #d3d8e0; flex: none; }
.dot3:nth-child(1) { background: #ff9a9a; } .dot3:nth-child(2) { background: #ffd27a; } .dot3:nth-child(3) { background: #a7e0a7; }
.win__url { margin-left: 8px; flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .66rem; color: var(--grey); padding: .2rem .65rem; }
.win__screen { flex: 1; overflow: hidden; }

/* ---- Slide: Zimeleni-style business site (desktop) ---- */
.biz { position: relative; height: 100%; overflow: hidden; display: flex; flex-direction: column; color: #fff; background: linear-gradient(135deg, #0c3f26 0%, #072215 100%); }
.biz__watermark { position: absolute; right: -46px; top: 50%; transform: translateY(-50%); width: 200px; height: 200px; opacity: .12; z-index: 1; }
.biz__watermark svg { width: 100%; height: 100%; }
.biz__nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; }
.biz__brand { display: flex; align-items: center; gap: 8px; }
.biz__emblem { width: 30px; height: 30px; flex: none; }
.biz__emblem svg { width: 100%; height: 100%; display: block; }
.biz__name { font-weight: 800; font-size: .78rem; letter-spacing: .01em; }
.biz__links { display: flex; align-items: center; gap: 11px; font-size: .6rem; color: #cfe0d5; }
.biz__links .reg { border: 1px solid rgba(255,255,255,.4); padding: .2rem .5rem; border-radius: 6px; }
.biz__hero { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 6px 20px 36px; max-width: 74%; }
.biz__badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 5px; font-size: .53rem; font-weight: 700; color: #bfe3c9; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: .26rem .58rem; border-radius: 999px; }
.biz__title { font-size: 1.5rem; line-height: 1.08; font-weight: 800; }
.biz__title span { display: block; color: #e0a92a; }
.biz__text { font-size: .6rem; line-height: 1.5; color: #b3c6ba; max-width: 92%; }
.biz__cta { display: flex; gap: 8px; margin-top: 6px; }
.biz__btn { font-size: .6rem; font-weight: 700; padding: .46rem .8rem; border-radius: 7px; }
.biz__btn--gold { background: #d4a017; color: #0b2e1b; }
.biz__btn--ghost { border: 1px solid rgba(255,255,255,.35); color: #fff; }

/* helper bars */
.bar { display: block; height: 9px; border-radius: 5px; background: #e2e7ee; }
.bar--lg { height: 13px; }
.bar--sm { height: 8px; background: #eef1f5; }

/* ---- Slide 1: business site ---- */
.site { display: flex; flex-direction: column; }
.site__nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.site__logo { display: flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 800; color: var(--ink); }
.site__logo i { width: 14px; height: 14px; border-radius: 4px; background: var(--blue); }
.site__links { display: flex; gap: 8px; }
.site__links i { width: 22px; height: 7px; border-radius: 4px; background: #e2e7ee; }
.site__btn { width: 46px; height: 16px; border-radius: 8px; background: var(--orange); }
.site__hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 12px; padding: 14px; align-items: center; }
.site__htext { display: flex; flex-direction: column; gap: 7px; }
.site__cta { margin-top: 5px; width: 72px; height: 20px; border-radius: 8px; background: var(--blue); }
.site__himg { height: 92px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), #3f86ff); }
.site__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 14px 14px; }
.site__feat { height: 42px; border-radius: 8px; background: var(--grey-050); border: 1px solid var(--line); }

/* ---- Slide 2: phone / eMenu ---- */
.phonewrap { width: 100%; height: 100%; display: grid; place-items: center; border-radius: 14px; background: radial-gradient(60% 55% at 50% 42%, rgba(0,82,204,.12), transparent 72%); }
.phone { position: relative; width: 188px; height: 94%; max-height: 340px; background: #fff; border: 6px solid #0d1117; border-radius: 28px; box-shadow: var(--shadow-lg); overflow: hidden; }
.phone__notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 62px; height: 13px; background: #0d1117; border-radius: 0 0 10px 10px; z-index: 2; }
.phone__screen { height: 100%; overflow: hidden; }
/* dark rounded cards on a light cream page */
.emenu { height: 100%; overflow: hidden; display: flex; flex-direction: column; gap: 8px; padding: 12px 12px; background: #efe9dd; }
.emenu__brand { font-weight: 800; font-size: .82rem; color: #2d2925; padding: 1px 4px 0; }
.emenu__card { background: #2d2925; color: #f2ede3; border-radius: 14px; padding: 9px 13px; }
.emenu__card--veg { position: relative; padding-top: 20px; margin-top: 5px; margin-bottom: 3px; }
.emenu__sec { font-size: .82rem; font-weight: 800; letter-spacing: .06em; margin-bottom: 3px; }
.emenu__item { padding: 6px 0; border-top: 1px solid rgba(255,255,255,.09); }
.emenu__item:first-of-type { border-top: 0; padding-top: 2px; }
.emenu__line { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.emenu__line b { font-size: .66rem; font-weight: 800; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 5px; }
.emenu__price { flex: none; }
.emenu__pill { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 5px; white-space: nowrap; max-width: calc(100% - 8px); background: #2d2925; border: 1px solid rgba(242,237,227,.5); border-radius: 999px; padding: .26rem .68rem; font-size: .56rem; font-weight: 800; letter-spacing: .04em; }
.emenu__pill span { color: #d8813f; font-size: .43rem; font-weight: 800; }
.emenu__pill svg { width: 11px; height: 11px; flex: none; }
.tag { font-style: normal; font-size: .42rem; font-weight: 800; background: #5f7d3f; color: #eef5e6; padding: .07rem .32rem; border-radius: 5px; letter-spacing: .04em; }

/* ---- Slide 3: career ---- */
.cv { display: grid; grid-template-columns: .78fr 1.22fr; height: 100%; }
.cv__side { padding: 16px 14px; background: var(--grey-050); border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.cv__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange)); margin-bottom: 4px; }
.cv__side b { font-size: .8rem; }
.cv__side em { font-style: normal; font-size: .64rem; color: var(--grey); }
.cv__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.cv__tags span { width: 30px; height: 12px; border-radius: 999px; background: var(--blue-050); }
.cv__main { padding: 16px 14px; display: flex; flex-direction: column; gap: 8px; }
.cv__h { font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--grey); }
.cv__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cv__cards div { height: 46px; border-radius: 8px; background: var(--grey-050); border: 1px solid var(--line); }
.cv__timeline { display: flex; flex-direction: column; gap: 8px; }

/* ---- Slide 4: automation ---- */
.auto { padding: 13px 14px; display: flex; flex-direction: column; gap: 11px; }
.auto__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.auto__stat { border: 1px solid var(--line); border-radius: 8px; padding: 7px 9px; display: flex; flex-direction: column; gap: 1px; }
.auto__stat small { font-size: .54rem; text-transform: uppercase; letter-spacing: .05em; color: var(--grey); font-weight: 700; }
.auto__stat b { font-size: .85rem; }
.auto__stat em { font-style: normal; font-size: .58rem; color: #16a34a; font-weight: 700; }
.auto__flow { display: flex; align-items: center; gap: 4px; }
.node { flex: 1; text-align: center; font-size: .6rem; font-weight: 700; padding: .4rem .2rem; border-radius: 7px; background: var(--grey-050); border: 1px solid var(--line); color: var(--ink-700); }
.node--blue { background: var(--blue); color: #fff; border-color: transparent; }
.node--done { background: #e8f7ee; color: #16a34a; border-color: #bfe8cd; }
.conn { width: 12px; height: 2px; background: #c8d0dc; flex: none; position: relative; }
.conn::after { content: ""; position: absolute; right: -1px; top: -2px; border: 3px solid transparent; border-left-color: #c8d0dc; }
.auto__chart { border: 1px solid var(--line); border-radius: 8px; padding: 6px; }
.auto__chart svg { width: 100%; height: 68px; }

/* ---- Slide: GP practice site (mobile) ---- */
.gp { background: #f6f5ec; height: 100%; display: flex; flex-direction: column; }
.gp__bar { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 18px 12px 5px; font-size: .54rem; color: #8a8d78; }
.gp__bar svg { display: block; }
.gp__nav { display: flex; align-items: center; justify-content: space-between; padding: 5px 12px 3px; }
.gp__brand { display: flex; align-items: center; gap: 6px; }
.gp__emblem { width: 24px; height: 24px; flex: none; }
.gp__emblem svg { width: 100%; height: 100%; display: block; }
.gp__name { font-family: Georgia, 'Times New Roman', serif; font-size: .72rem; color: #5f6b3a; }
.gp__book { font-size: .5rem; font-weight: 700; color: #fff; background: #6b7642; padding: .28rem .55rem; border-radius: 999px; }
.gp__hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; padding: 4px 16px 14px; }
.gp__eyebrow { font-size: .46rem; letter-spacing: .13em; text-transform: uppercase; color: #8a9560; font-weight: 700; }
.gp__title { font-family: Georgia, 'Times New Roman', serif; font-size: 1.15rem; line-height: 1.14; color: #4d5733; }
.gp__title em { font-style: italic; color: #7d8a4f; }
.gp__text { font-size: .54rem; line-height: 1.5; color: #7c7f6a; max-width: 94%; }
.gp__cta { margin-top: 4px; width: 88%; background: #6b7642; color: #fff; font-size: .56rem; font-weight: 700; padding: .5rem; border-radius: 8px; }
.gp__dots { display: flex; gap: 4px; margin-top: 8px; }
.gp__dots i { width: 12px; height: 3px; border-radius: 3px; background: #cfd3b8; display: block; }
.gp__dots i.on { width: 18px; background: #7d8a4f; }

/* ============================================================
   PROMISE BAND
   ============================================================ */
.promise { background: var(--blue-050); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.4rem 0; }
.promise__label { text-align: center; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem; }
.promise__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.promise__item { display: flex; align-items: flex-start; gap: .7rem; }
.promise__item .check { width: 22px; height: 22px; margin-top: 2px; flex: none; }
.promise__item b { display: block; font-size: 1rem; }
.promise__item span { font-size: .86rem; color: var(--grey); }
.promise__note { text-align: center; margin-top: 1.7rem; font-size: .82rem; color: var(--grey); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--alt { background: var(--grey-050); }
.section__head { max-width: 620px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section__head p { margin-top: 1rem; color: var(--grey); font-size: 1.06rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.7rem; display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card--featured { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.card__badges { position: absolute; top: -12px; left: 1.7rem; right: 1.7rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.card__badge {
  background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; letter-spacing: .02em;
}
.card__badge--blue { background: var(--blue); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--blue-050);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--blue); stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.3rem; }
.card__for { color: var(--orange); font-weight: 700; font-size: .85rem; margin: .25rem 0 .8rem; }
.card > p { color: var(--grey); font-size: .96rem; }
.card__list { margin: 1.2rem 0 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.card__list li { position: relative; padding-left: 1.6rem; font-size: .92rem; color: var(--ink-700); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 16px; height: 9px;
  border-left: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}
.card__foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.price { display: flex; align-items: baseline; gap: .25rem; }
.price span { font-size: .78rem; color: var(--grey); }
.price b { font-size: 1.6rem; color: var(--ink); }
.price small { font-size: .82rem; color: var(--grey); }

/* ============================================================
   TROPHY / AUTOMATION
   ============================================================ */
.trophy { background: linear-gradient(135deg, #0a2a63 0%, var(--ink) 100%); color: #fff; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.trophy__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.trophy__copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.trophy__copy > p { margin-top: 1.1rem; color: #b9c4d6; font-size: 1.06rem; }
.trophy__list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .8rem; }
.trophy__list li { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: #e4eaf4; }
.trophy__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 2rem; text-align: center; backdrop-filter: blur(6px);
}
.trophy__tag { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9dc0ff; margin-bottom: .8rem; }
.trophy__price { display: flex; align-items: baseline; justify-content: center; gap: .4rem; }
.trophy__price span { color: #9fb2cc; font-size: .9rem; }
.trophy__price b { font-size: 2.6rem; }
.trophy__card p { color: #9fb2cc; font-size: .9rem; margin: .5rem 0 1.5rem; }

/* ============================================================
   WHY
   ============================================================ */
.why__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why__art { display: grid; place-items: center; }
.why__logo {
  width: min(320px, 80%); aspect-ratio: 1; border-radius: 28px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.why__logo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 30%, rgba(255,122,0,.10), transparent 70%); }
.why__copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.why__copy > p { margin-top: 1rem; color: var(--grey); font-size: 1.05rem; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2rem; }
.why__item { display: flex; flex-direction: column; gap: .2rem; padding-left: 1rem; border-left: 3px solid var(--orange); }
.why__item b { font-size: 1rem; }
.why__item span { font-size: .9rem; color: var(--grey); }

/* ============================================================
   PRICING
   ============================================================ */
.ptable { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: stretch; }
.ptier__from { font-size: .78rem; color: var(--grey); font-weight: 600; }
.ptier {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; display: flex; flex-direction: column; text-align: center;
}
.ptier--pop { border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-8px); }
.ptier__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: .74rem; font-weight: 700;
  padding: .32rem .9rem; border-radius: 999px;
}
.ptier h3 { font-size: 1.2rem; }
.ptier__price { display: flex; align-items: baseline; justify-content: center; gap: .2rem; margin: 1rem 0 .2rem; }
.ptier__price b { font-size: 2.6rem; color: var(--ink); }
.ptier__price small { color: var(--grey); font-weight: 600; }
.ptier__sub { color: var(--grey); font-size: .88rem; margin-bottom: 1.4rem; }
.ptier ul { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.8rem; text-align: left; }
.ptier ul li { position: relative; padding-left: 1.7rem; font-size: .92rem; color: var(--ink-700); }
.ptier ul li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 16px; height: 9px;
  border-left: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue); transform: rotate(-45deg);
}
.ptier .btn { margin-top: auto; }
.pricing__note { text-align: center; margin-top: 2rem; color: var(--grey); }
.pricing__note a { color: var(--blue); font-weight: 700; }

/* ============================================================
   WORK / PORTFOLIO
   ============================================================ */
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.work__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; min-height: 150px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.work__item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,82,204,.07), rgba(255,122,0,.06)); opacity: 0; transition: opacity .25s; }
.work__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.work__item:hover::before { opacity: 1; }
.work__tag { position: relative; align-self: flex-start; font-size: .72rem; font-weight: 700; color: var(--blue); background: var(--blue-050); padding: .28rem .7rem; border-radius: 999px; margin-bottom: auto; }
.work__item b { position: relative; font-size: 1.1rem; margin-top: 1rem; }
.work__item em { position: relative; font-style: normal; color: var(--grey); font-size: .88rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta { background: var(--blue); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.cta p { margin: 1rem 0 2rem; color: #d6e4ff; font-size: 1.08rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.contact__copy > p { margin-top: 1rem; color: var(--grey); font-size: 1.05rem; }
.contact__meta { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact__meta li { display: flex; flex-direction: column; }
.contact__meta b { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--grey); }
.contact__meta a, .contact__meta span { font-weight: 600; color: var(--ink); }

.contact__form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink-700); }
.field .opt { color: var(--grey); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .95rem; color: var(--ink);
  padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s, box-shadow .15s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,82,204,.14);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #e5484d; box-shadow: 0 0 0 3px rgba(229,72,77,.12); }
.contact__form .btn { grid-column: 1 / -1; }
.form__status { grid-column: 1 / -1; text-align: center; font-weight: 600; font-size: .92rem; min-height: 1.2em; }
.form__status.ok { color: #16a34a; }
.form__status.err { color: #e5484d; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #c3ccd9; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.10); }
.brand--footer .brand__cave { color: #fff; }
.footer__brand p { margin-top: 1rem; font-size: .95rem; max-width: 42ch; color: #94a1b3; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__cols h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer__cols a { display: block; font-size: .92rem; margin-bottom: .6rem; color: #a9b4c4; transition: color .15s; }
.footer__cols a:hover { color: var(--orange); }
.footer__values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer__values div { display: flex; flex-direction: column; gap: .2rem; }
.footer__values b { color: #fff; font-size: .95rem; }
.footer__values span { font-size: .84rem; color: #8a97a9; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.6rem; font-size: .85rem; color: #8a97a9; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards, .ptable { grid-template-columns: repeat(2, 1fr); }
  .ptier--pop { transform: none; }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  /* Flatten the 3D tilt on smaller screens — it skews awkwardly and can
     push the mock past the viewport edge. Keep the mock straight-on. */
  .slides { transform: none; }
  .hero__lead { max-width: none; }
  .why__inner, .trophy__inner, .contact__inner { grid-template-columns: 1fr; }
  .why__art { order: -1; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: .5rem 24px 1.5rem; transform: translateY(-120%); transition: transform .3s var(--ease); z-index: 40;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: .8rem; }
  .nav__toggle { display: flex; }
  .cards, .ptable, .work__grid { grid-template-columns: 1fr; }
  .ptier--pop { transform: none; }
  .promise__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__values { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 460px) {
  .promise__grid, .footer__values { grid-template-columns: 1fr; }
  .hero__points { gap: .8rem 1.2rem; }
}
