/* =========================================================
   Klubes Website Design — refined corporate-modern system
   ========================================================= */

:root {
  /* Palette (oklch) */
  --paper:      oklch(98.8% 0.004 95);   /* warm off-white */
  --paper-2:    oklch(96.6% 0.006 95);   /* alt section bg */
  --card:       oklch(100% 0 0);
  --ink:        oklch(23% 0.028 260);    /* near-black, blue-tinted */
  --ink-2:      oklch(18% 0.03 262);     /* deepest, dark bands */
  --ink-soft:   oklch(46% 0.018 260);    /* body text */
  --ink-faint:  oklch(60% 0.014 260);    /* captions */
  --line:       oklch(90% 0.008 260);    /* hairlines */
  --line-soft:  oklch(93.5% 0.006 260);
  --accent:     oklch(53% 0.184 256);    /* cobalt */
  --accent-700: oklch(46% 0.176 256);    /* hover */
  --accent-300: oklch(78% 0.10 256);
  --accent-tint:oklch(95.5% 0.032 256);  /* soft fills */

  /* On-dark variants */
  --d-text:     oklch(96% 0.006 260);
  --d-soft:     oklch(78% 0.014 260);
  --d-faint:    oklch(64% 0.018 260);
  --d-line:     oklch(100% 0 0 / 0.12);

  /* Shadows */
  --sh-sm: 0 1px 2px oklch(23% 0.03 260 / 0.06), 0 2px 6px oklch(23% 0.03 260 / 0.05);
  --sh-md: 0 1px 2px oklch(23% 0.03 260 / 0.05), 0 14px 32px -18px oklch(23% 0.05 260 / 0.28);
  --sh-lg: 0 2px 4px oklch(23% 0.03 260 / 0.05), 0 40px 70px -32px oklch(23% 0.06 260 / 0.40);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 30px;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);
  --nav-h: 76px;

  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); width: 100%; }
section { position: relative; }
.band { padding-block: clamp(72px, 11vw, 132px); }
.band--alt { background: var(--paper-2); }
.band--ink { background: var(--ink-2); color: var(--d-text); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.band--ink .eyebrow { color: var(--accent-300); }
.band--ink .eyebrow::before { background: var(--accent-300); }

.section-head { max-width: 680px; margin-bottom: clamp(48px, 6vw, 76px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.05rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-top: 1.1rem;
  text-wrap: balance;
}
.section-head p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  margin-top: 1.1rem;
  text-wrap: pretty;
}
.band--ink .section-head p { color: var(--d-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  min-height: 50px;
}
.btn .arr { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -12px var(--accent); }
.btn-primary:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: 0 16px 32px -12px var(--accent); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

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

.band--ink .btn-ghost { color: var(--d-text); border-color: var(--d-line); }
.band--ink .btn-ghost:hover { border-color: var(--d-text); }

/* ---------- Navigation ---------- */
nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 9999;
  display: flex; align-items: center;
  background: oklch(98.8% 0.004 95 / 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-sm); }
.nav-row { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; z-index: 10001; }
.kmark { width: 36px; height: 36px; display: block; flex-shrink: 0; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; }
.brand-name small { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

.nav-links { display: flex; align-items: center; gap: 0.4rem; list-style: none; }
.nav-links a.nav-link {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.5rem 0.85rem; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a.nav-link:hover { color: var(--ink); background: var(--paper-2); }
.nav-cta { margin-left: 0.6rem; padding: 0.65rem 1.25rem !important; min-height: 0; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 10001;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px)); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--accent-tint), transparent 60%),
    linear-gradient(180deg, var(--paper-2), var(--paper) 46%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.02;
  margin: 1.3rem 0 0; text-wrap: balance;
}
.hero-text h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600;
  color: var(--ink); margin-top: 1.2rem; letter-spacing: -0.015em;
}
.hero-text p.lede { font-size: 1.1rem; color: var(--ink-soft); margin-top: 1.1rem; max-width: 33em; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 0 2rem; margin-top: 2.4rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.proof-item { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.2rem 0; }
.proof-item b { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em; }
.proof-item span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }

/* Browser mockup */
.hero-visual { position: relative; }
.browser {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); overflow: hidden;
  transform: perspective(1600px) rotateY(-7deg) rotateX(2.5deg);
  transform-origin: left center;
}
.browser-bar { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line-soft); background: var(--paper-2); }
.dots { display: flex; gap: 6px; }
.dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); display: block; }
.url {
  flex: 1; font-family: var(--mono); font-size: 0.68rem; color: var(--ink-faint);
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 7px;
  padding: 0.35rem 0.7rem; display: flex; align-items: center; gap: 0.5rem;
}
.url::before { content: ""; width: 8px; height: 8px; border: 1.5px solid var(--accent-300); border-radius: 50%; }
.browser-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 1.1rem; }
.mini-nav { display: flex; align-items: center; justify-content: space-between; }
.mini-logo { width: 64px; height: 12px; border-radius: 4px; background: var(--ink); }
.mini-links { display: flex; gap: 8px; }
.mini-links i { width: 26px; height: 7px; border-radius: 4px; background: var(--line); display: block; }
.mini-btn { width: 56px; height: 22px; border-radius: 6px; background: var(--accent); }
.mini-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; align-items: center; margin-top: 0.4rem; }
.mini-h { display: flex; flex-direction: column; gap: 8px; }
.mini-h .bar { height: 13px; border-radius: 5px; background: var(--ink); }
.mini-h .bar.w90 { width: 92%; } .mini-h .bar.w70 { width: 68%; background: var(--accent); }
.mini-h .txt { height: 7px; border-radius: 4px; background: var(--line); }
.mini-h .txt.s { width: 80%; }
.mini-h .pill { width: 78px; height: 24px; border-radius: 7px; background: var(--ink); margin-top: 6px; }
.mini-img { height: 96px; border-radius: 10px; background: linear-gradient(135deg, var(--accent-tint), oklch(92% 0.02 256)); border: 1px solid var(--line-soft); }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.mini-card { height: 56px; border-radius: 9px; border: 1px solid var(--line-soft); background: var(--paper-2); padding: 0.5rem; display: flex; flex-direction: column; gap: 5px; }
.mini-card i { height: 6px; border-radius: 3px; background: var(--line); display: block; }
.mini-card i.dot { width: 16px; height: 16px; border-radius: 5px; background: var(--accent-tint); border: 1px solid var(--accent-300); }
.mini-card i.s { width: 70%; }

.float-chip {
  position: absolute; background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--sh-md); border-radius: 12px; padding: 0.7rem 0.95rem;
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600;
}
.float-chip .tick { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-tint); display: grid; place-items: center; flex-shrink: 0; }
.float-chip .tick svg { width: 14px; height: 14px; }
.float-chip small { display: block; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }
.chip-1 { top: -22px; left: -28px; }
.chip-2 { bottom: -26px; right: -18px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); counter-reset: step; }
.step { position: relative; padding-top: 2.2rem; border-top: 2px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--mono); font-size: 0.85rem; font-weight: 600; color: var(--accent);
  position: absolute; top: -1.45rem; left: 0; background: var(--card); padding-right: 0.7rem;
}
.step.on-paper::before { background: var(--paper); }
.step h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.7rem; }
.step p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.tag { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line); border-radius: 50px; padding: 0.4rem 0.85rem; display: inline-flex; align-items: center; gap: 0.45rem; }
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 36px); align-items: start; }
.work-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
  display: block;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--line-soft); }
.work-top { padding: clamp(1.1rem, 2vw, 1.6rem) clamp(1.1rem, 2vw, 1.6rem) 0; }
.shot-frame { border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: var(--card); box-shadow: var(--sh-sm); }
.frame-bar { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line-soft); background: var(--paper-2); }
.frame-bar .dots { display: flex; gap: 5px; }
.frame-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: block; }
.frame-bar .furl { flex: 1; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.03em; color: var(--ink-faint); background: var(--card); border: 1px solid var(--line-soft); border-radius: 6px; padding: 0.28rem 0.65rem; display: flex; align-items: center; gap: 0.45rem; }
.frame-bar .furl::before { content: ""; width: 7px; height: 7px; border: 1.4px solid var(--accent-300); border-radius: 50%; flex-shrink: 0; }
.frame-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--ink-2); }
.frame-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.work-card:hover .frame-img img { transform: scale(1.05); }
.shot-tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: #fff; background: oklch(23% 0.03 260 / 0.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); padding: 0.38rem 0.65rem; border-radius: 50px; display: inline-flex; align-items: center; gap: 0.4rem; }
.shot-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: oklch(78% 0.17 145); }
.work-body { padding: clamp(1.3rem, 2vw, 1.7rem); }
.thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.2rem 0 1.4rem; }
.thumb { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; aspect-ratio: 3/4; background: var(--ink-2); }
.thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.work-card:hover .thumb img { transform: scale(1.05); }
.work-body .ctype { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.work-body h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 0.5rem 0 0.7rem; }
.work-body p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.work-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--ink); }
.work-link .arr { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.work-card:hover .work-link { color: var(--accent); }
.work-card:hover .work-link .arr { transform: translateX(4px); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.svc {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: clamp(1.8rem, 3vw, 2.6rem); transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--line-soft); }
.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.svc-ico { width: 52px; height: 52px; border-radius: 13px; background: var(--accent-tint); border: 1px solid var(--accent-300); display: grid; place-items: center; color: var(--accent); }
.svc-ico svg { width: 24px; height: 24px; }
.svc-idx { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-faint); font-weight: 500; }
.svc h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.svc > p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.flist { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.flist li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--ink); font-size: 0.97rem; }
.flist li svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ---------- Pricing comparison (dark) ---------- */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.cmp {
  border: 1px solid var(--d-line); border-radius: var(--r-md); padding: 2rem 1.8rem;
  background: oklch(100% 0 0 / 0.02);
}
.cmp.win { background: var(--card); color: var(--ink); border-color: transparent; box-shadow: var(--sh-lg); position: relative; }
.cmp h4 { font-size: 1.05rem; font-weight: 600; color: var(--d-soft); margin-bottom: 1.1rem; }
.cmp.win h4 { color: var(--ink-soft); }
.cmp .amount { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.cmp:not(.win) .amount { color: var(--d-faint); }
.cmp.win .amount { color: var(--accent); }
.cmp .when { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.9rem; color: var(--d-faint); }
.cmp.win .when { color: var(--ink-faint); }
.cmp .strike { text-decoration: line-through; text-decoration-color: oklch(60% 0.16 25 / 0.6); text-decoration-thickness: 2px; }
.win-flag { position: absolute; top: -12px; left: 1.8rem; background: var(--accent); color: #fff; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 50px; }

/* ---------- Pricing tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); align-items: start; }
.tier {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(2rem, 3vw, 2.6rem); transition: transform .3s, box-shadow .3s; position: relative;
  display: flex; flex-direction: column;
}
.tier:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.tier.feat { border-color: var(--accent); box-shadow: 0 30px 60px -30px var(--accent); }
.tier.feat:hover { box-shadow: 0 36px 66px -28px var(--accent); }
.tier-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 50px; white-space: nowrap; }
.tier-name { font-size: 0.78rem; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.tier-price { font-size: clamp(2.2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.035em; margin-top: 0.7rem; line-height: 1; }
.tier-price span { font-size: 0.95rem; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; }
.tier-desc { color: var(--ink-soft); margin: 1rem 0 1.6rem; font-size: 0.97rem; min-height: 3em; }
.tier .flist { margin-bottom: 1.8rem; }
.tier .flist li { font-size: 0.93rem; }
.tier .btn { margin-top: auto; width: 100%; }

/* ---------- Maintenance ---------- */
.maint-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.4rem; }
.maint-head h3 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 700; letter-spacing: -0.025em; }
.maint-head p { color: var(--ink-soft); margin-top: 0.5rem; max-width: 40em; }
.maint-note { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-soft); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 0.7rem 1rem; max-width: 360px; }
.maint-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.maint {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 2rem; transition: transform .3s, box-shadow .3s;
}
.maint:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.maint .m-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.maint h4 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; }
.maint .m-price { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); }
.maint .m-price span { font-size: 0.85rem; color: var(--ink-faint); font-weight: 500; }
.maint .m-hours { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink-soft); margin: 0.6rem 0 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line-soft); }
.maint .flist li { font-size: 0.92rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.profile { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.2rem; box-shadow: var(--sh-md); position: sticky; top: calc(var(--nav-h) + 24px); }
.avatar { width: 96px; height: 96px; border-radius: 22px; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.avatar::selection { background: none; }
.profile h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.profile .role { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 0.35rem; font-weight: 600; }
.profile .edu { color: var(--ink-soft); font-size: 0.92rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.about-text h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.philosophy { margin-top: 2rem; padding: 1.8rem; background: var(--accent-tint); border: 1px solid var(--accent-300); border-radius: var(--r-md); }
.philosophy h4 { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-700); margin-bottom: 0.8rem; }
.philosophy p { color: var(--ink); margin: 0; font-size: 1.02rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--sh-md); }
.fg { margin-bottom: 1.3rem; }
.fg label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; margin-bottom: 0.5rem; color: var(--ink); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.fg select { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23667085" d="M6 8 0 0h12z"/></svg>'); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.fg textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-aside h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.025em; }
.contact-aside > p { color: var(--ink-soft); margin: 1rem 0 2rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card); margin-bottom: 1.2rem; }
.contact-method .cm-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); border: 1px solid var(--accent-300); display: grid; place-items: center; color: var(--accent); flex-shrink: 0; }
.contact-method .cm-ico svg { width: 20px; height: 20px; }
.contact-method b { display: block; font-size: 0.78rem; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.contact-method span { font-size: 1.02rem; font-weight: 600; }
.consult { margin-top: 0.5rem; padding: 1.8rem; border-radius: var(--r-md); background: var(--ink-2); color: var(--d-text); }
.consult h4 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; }
.consult p { color: var(--d-soft); margin: 0.5rem 0 1.4rem; font-size: 0.95rem; }
.consult .btn { width: 100%; }

/* ---------- Footer ---------- */
footer { background: var(--ink-2); color: var(--d-soft); padding: clamp(56px, 8vw, 84px) 0 36px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(28px, 5vw, 64px); padding-bottom: 3rem; border-bottom: 1px solid var(--d-line); }
.foot-brand .brand { --tile: oklch(100% 0 0 / 0.07); --tile-stroke: oklch(100% 0 0 / 0.16); }
.foot-brand .kmark { width: 44px; height: 44px; }
.foot-brand .brand-name b { color: var(--d-text); }
.foot-brand .brand-name small { color: var(--d-faint); }
.foot-brand .tagline { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--accent-300); margin: 1.3rem 0 0.9rem; }
.foot-brand p { font-size: 0.95rem; max-width: 34em; line-height: 1.7; }
.foot-col h5 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--d-faint); margin-bottom: 1.2rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.foot-col a { font-size: 0.95rem; color: var(--d-soft); transition: color .2s; }
.foot-col a:hover { color: var(--d-text); }
.foot-bottom { padding-top: 2rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--d-faint); text-align: center; }

/* ---------- Scroll reveal ---------- */
.reveal.armed { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.armed.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal.armed { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .browser { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 540px; }
  .browser { transform: none; }
  .about-grid { grid-template-columns: 1fr; }
  .profile { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .compare, .tiers, .maint-grid { grid-template-columns: 1fr; }
  .tier.feat { order: -1; }
  .svc-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; height: 100dvh; width: 100%;
    flex-direction: column; justify-content: center; gap: 0.4rem;
    background: var(--paper); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.3,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a.nav-link { font-size: 1.4rem; padding: 0.7rem 1.5rem; }
  .nav-cta { margin-left: 0; margin-top: 0.8rem; font-size: 1.05rem !important; padding: 0.85rem 1.8rem !important; }
  body.lock { overflow: hidden; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .maint-head { flex-direction: column; align-items: flex-start; }
  /* Mobile nav brand: drop "Klubes", show "Website Design" only */
  nav .brand-name b { display: none; }
  nav .brand-name small { font-size: 0.74rem; letter-spacing: 0.18em; color: var(--ink); font-weight: 600; }
}

@media (max-width: 460px) {
  body { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 0 1.4rem; }
  .float-chip { display: none; }
}
