/* ============================================================
   NEXTUPAUTOMATION — style.css
   Scandinavian editorial · Monochrome · Schibsted Grotesk
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #F5F4EF;
  --fg:          #0C0C0C;
  --fg-mid:      #9A9A9A;
  --fg-light:    #C2C2C2;
  --fg-muted:    #6B6B6B;
  --fg-faint:    rgba(12, 12, 12, 0.08);
  --border:      rgba(12, 12, 12, 0.09);
  --dark-bg:     #0C0C0C;
  --dark-text:   #F5F4EF;
  --white:       #FFFFFF;
  --tinted:      #EFEDE6;

  --font:        'Schibsted Grotesk', sans-serif;

  --nav-h:       64px;
  --px:          clamp(24px, 3.5vw, 64px);
  --section-py:  clamp(72px, 9vw, 128px);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav__logo {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav__square {
  font-size: 9px;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}

.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg);
  transition: color 0.2s;
  letter-spacing: -0.005em;
}

.nav__links a:hover {
  color: var(--fg-mid);
}

/* Dropdown */
.nav__has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: inherit;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}

.nav__dropdown-btn:hover { color: var(--fg-mid); }

.nav__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav__has-dropdown.is-open .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  list-style: none;
  min-width: 210px;
  box-shadow: 0 8px 28px rgba(12,12,12,0.10), 0 2px 8px rgba(12,12,12,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.nav__has-dropdown.is-open .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown li { list-style: none; }

.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  color: var(--fg);
  border-radius: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav__dropdown a:hover {
  background: var(--tinted);
}

.nav__contact {
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: -0.005em;
  flex-shrink: 0;
}

.nav__contact:hover { color: var(--fg-mid); }

.diag {
  font-size: 11px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav__hamburger.is-open span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav__hamburger.is-open span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile ul {
  list-style: none;
  padding: 28px var(--px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nav__mobile a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--fg);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding-top: calc(var(--nav-h) + 52px);
  padding-left: var(--px);
  padding-right: var(--px);
  padding-bottom: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-image: url('https://res.cloudinary.com/dmusfcrd5/image/upload/q_auto/f_auto/v1779807871/ChatGPT_Image_May_26_2026_06_04_16_PM_dyn7cq.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  --fg-muted: #444444;
  --fg-mid:   #555555;
  --fg-light: #777777;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  margin-bottom: 44px;
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fg);
  display: block;
  flex-shrink: 0;
}

.hero__headline {
  font-size: clamp(36px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.c--dark  { color: var(--fg); }
.c--mid   { color: var(--fg-mid); }
.c--light { color: var(--fg-light); }

.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 460px;
  margin-top: 32px;
}

.hero__lower {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-top: 48px;
  padding-bottom: 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.hero__statusbar {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  letter-spacing: -0.01em;
}

.btn--pill {
  font-size: 14px;
  background: var(--fg);
  color: var(--white);
  padding: 14px 20px 14px 24px;
  border-radius: 100px;
}

.btn--pill:hover { background: #2A2A2A; }

.btn--pill-large {
  font-size: 15.5px;
  padding: 18px 24px 18px 32px;
}

.btn__icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.btn--pill-large .btn__icon {
  width: 34px;
  height: 34px;
}

.btn--link {
  font-size: 14px;
  color: var(--fg);
  background: none;
  padding: 0;
  letter-spacing: -0.01em;
}

.btn--link:hover { color: var(--fg-mid); }

/* ============================================================
   SECTION BASE
   ============================================================ */

.section {
  padding: var(--section-py) var(--px);
  border-top: 1px solid var(--border);
}

.section--tinted { background: var(--tinted); }

.section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.section__num {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--fg-mid);
  letter-spacing: 0.1em;
}

.section__tag {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.section__heading {
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.section__text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.section__intro {
  font-size: 15px;
  line-height: 1.72;
  color: var(--fg-muted);
  max-width: 520px;
}

/* ============================================================
   PSERVICES — editorial service cards (screenshot-matched)
   ============================================================ */

/* Section header */
.pservices__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
}

.pservices__head-left {
  flex: 1;
}

.pservices__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.pservices__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg);
  display: inline-block;
  flex-shrink: 0;
}

.pservices__title {
  font-size: clamp(34px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.pservices__title-gray {
  color: var(--fg-mid);
}

.pservices__head-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
  padding-bottom: 10px;
}

.pservices__head-stats span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.8;
}

.pservices__rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
}

/* Cards stack */
.pservices__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pscard__subrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── Card base ───────────────────────────────────────────────── */

.pscard {
  background: #111010;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pscard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
}

.pscard__link {
  display: block;
  text-decoration: none;
  height: 100%;
}

/* ── Full-bleed background image ─────────────────────────────── */

.pscard__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pscard__bg .pscard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pscard:hover .pscard__bg .pscard__img {
  transform: scale(1.06);
}

/* ── Gradient overlays ────────────────────────────────────────── */

.pscard__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pscard--main .pscard__overlay {
  background: linear-gradient(
    100deg,
    rgba(10,8,8,0.94) 0%,
    rgba(10,8,8,0.82) 36%,
    rgba(10,8,8,0.38) 66%,
    rgba(10,8,8,0.04) 100%
  );
}

.pscard--seo .pscard__overlay,
.pscard--google .pscard__overlay {
  background: linear-gradient(
    to top,
    rgba(10,8,8,0.97) 0%,
    rgba(10,8,8,0.75) 38%,
    rgba(10,8,8,0.22) 68%,
    rgba(10,8,8,0.0) 100%
  );
}

/* ── Content layer ────────────────────────────────────────────── */

.pscard__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* ── Main card ────────────────────────────────────────────────── */

.pscard--main .pscard__link {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.5vw, 36px);
  min-height: 360px;
}

.pscard--main .pscard__content {
  max-width: 52%;
}

.pscard__toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Badge pill */
.pscard__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 13px 6px 9px;
  line-height: 1;
}

.pscard__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

.pscard__num {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* Headings */
.pscard__heading {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}

.pscard__heading--main {
  font-size: clamp(30px, 3.8vw, 56px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.pscard__main-body {
  display: flex;
  flex-direction: column;
}

.pscard__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 400px;
}

/* Buttons */
.pscard__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pscard__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.pscard__btn--fill {
  background: #FFFFFF;
  color: #0C0C0C;
  padding: 11px 18px;
  border-radius: 100px;
}

.pscard__btn--fill:hover {
  background: rgba(255,255,255,0.88);
}

.pscard__btn-arrow {
  font-size: 12px;
}

.pscard__btn--ghost {
  color: rgba(255,255,255,0.5);
  background: none;
  font-size: 13px;
}

.pscard__btn--ghost:hover {
  color: rgba(255,255,255,0.82);
}

/* ── Sub-cards ────────────────────────────────────────────────── */

.pscard__link--sub {
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2vw, 26px);
  min-height: 270px;
}

.pscard__content--sub {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pscard__sub-body .pscard__heading {
  margin-bottom: 8px;
}

.pscard__sub-body .pscard__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}


/* ============================================================
   MIKSI — editorial 4-column feature section
   ============================================================ */

/* ============================================================
   MIKSI — ultra-premium editorial redesign
   ============================================================ */

.miksi {
  background: var(--dark-bg);
  border-top: 1px solid rgba(245,244,239,0.06);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) var(--px) clamp(48px, 5vw, 72px);
}

/* Cinematic glow — two soft radials */
.miksi::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 25%, rgba(245,244,239,0.028) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 75%, rgba(245,244,239,0.016) 0%, transparent 44%);
  pointer-events: none;
  z-index: 0;
}

/* SVG grain overlay */
.miksi__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 1;
}

.miksi__inner {
  position: relative;
  z-index: 2;
}

/* Eyebrow row */
.miksi__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.miksi__eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,244,239,0.22);
}

.miksi__meta {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,244,239,0.15);
}

/* Oversized headline */
.miksi__hero {
  margin-bottom: clamp(36px, 4vw, 56px);
}

.miksi__headline {
  font-size: clamp(44px, 7.5vw, 108px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.miksi__hl        { display: block; }
.miksi__hl--1     { color: rgba(245,244,239,0.90); }
.miksi__hl--2     { color: rgba(245,244,239,0.11); }

/* Full-width hairline */
.miksi__divider {
  height: 1px;
  background: rgba(245,244,239,0.08);
  margin-bottom: clamp(32px, 3.5vw, 48px);
}

/* Feature blocks — open modular grid */
.miksi__feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: clamp(36px, 4vw, 56px);
}

.miksi__feat {
  padding-right: clamp(24px, 3vw, 44px);
  border-right: 1px solid rgba(245,244,239,0.07);
  transition: opacity 0.3s ease;
}

.miksi__feat:hover { opacity: 0.7; }

.miksi__feat:first-child { padding-left: 0; }

.miksi__feat:last-child {
  padding-right: 0;
  padding-left: clamp(24px, 3vw, 44px);
  border-right: none;
}

.miksi__feat:nth-child(2),
.miksi__feat:nth-child(3) {
  padding-left: clamp(24px, 3vw, 44px);
}

.miksi__feat-idx {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(245,244,239,0.18);
  margin-bottom: 18px;
}

.miksi__feat-rule {
  height: 1px;
  background: rgba(245,244,239,0.08);
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.miksi__feat-title {
  font-size: clamp(17px, 1.9vw, 24px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: rgba(245,244,239,0.86);
  margin-bottom: 14px;
}

.miksi__feat-sub {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(245,244,239,0.3);
}

/* Bottom metadata bar */
.miksi__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid rgba(245,244,239,0.06);
}

.miksi__foot span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(245,244,239,0.17);
}

/* Responsive */
@media (max-width: 1024px) {
  .miksi__feats {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(36px, 5vw, 56px) 0;
  }

  .miksi__feat:nth-child(2) {
    border-right: none;
  }

  .miksi__feat:nth-child(3) {
    padding-left: 0;
    border-right: 1px solid rgba(245,244,239,0.07);
  }

  .miksi__feat:nth-child(4) {
    border-right: none;
  }

  .miksi__foot { flex-wrap: wrap; gap: 10px 28px; }
}

@media (max-width: 640px) {
  .miksi__headline { letter-spacing: -0.035em; }

  .miksi__feats { grid-template-columns: 1fr; gap: 36px 0; }

  .miksi__feat,
  .miksi__feat:nth-child(2),
  .miksi__feat:nth-child(3),
  .miksi__feat:nth-child(4) {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
  }
}

/* ============================================================
   PROSESSI — steps
   ============================================================ */

.section__heading { margin-bottom: 0; }

.steps {
  margin-top: 48px;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-mid);
  letter-spacing: 0.1em;
  padding-top: 5px;
}

.step__title {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.step__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 500px;
}

/* ============================================================
   KONSEPTIT
   ============================================================ */

.section__concepts-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}

.section__concepts-intro .section__heading {
  margin-bottom: 0;
}

.concepts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.concept {
  display: flex;
  flex-direction: column;
}

.concept__img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
  background: var(--tinted);
}

.concept__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.concept:hover .concept__img {
  transform: scale(1.025);
}

.concept__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.concept__type {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.concept__style {
  font-size: 12.5px;
  color: var(--fg-mid);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  text-align: center;
}

.cta__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fg-muted);
}

.cta__heading {
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.035em;
}

.cta__sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 420px;
}

.cta__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cta__field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.cta__input {
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--fg);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.cta__input::placeholder {
  color: var(--fg-light);
}

.cta__input:focus {
  border-color: rgba(12, 12, 12, 0.4);
}

.cta__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.cta__submit {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 480px) {
  .cta__form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRICING CTA
   ============================================================ */

.pricing-cta {
  padding-bottom: clamp(48px, 6vw, 80px);
}

.pcta__card {
  background: var(--tinted);
  border: 1px solid rgba(12,12,12,0.09);
  border-radius: 24px;
  padding: clamp(52px, 6.5vw, 88px) clamp(44px, 5.5vw, 76px);
  display: flex;
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}

.pcta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 40%, rgba(255,255,255,0.72) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.pcta__left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.pcta__eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(12,12,12,0.32);
  margin-bottom: 22px;
}

.pcta__heading {
  font-size: clamp(40px, 5.8vw, 86px);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.038em;
  color: var(--fg);
}

.pcta__sep {
  width: 1px;
  height: 110px;
  background: rgba(12,12,12,0.1);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pcta__right {
  flex: 0 0 auto;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.pcta__body {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--fg-muted);
}

.pcta__body strong {
  color: var(--fg);
  font-weight: 700;
}

.pcta__btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .pcta__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
  .pcta__sep {
    width: 40px;
    height: 1px;
  }
  .pcta__right {
    max-width: 100%;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 0 var(--px);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.footer__logo {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__nav a {
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg-muted);
  transition: color 0.2s;
  letter-spacing: -0.005em;
}

.footer__nav a:hover { color: var(--fg); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
}

/* ============================================================
   SCROLL REVEAL — initial hidden state
   ============================================================ */

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */

@media (max-width: 1024px) {
  .concepts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concepts__grid .concept:last-child {
    display: none;
  }
}

@media (max-width: 960px) {
  .pscard--main .pscard__content {
    max-width: 100%;
  }

  .pscard--main .pscard__overlay {
    background: linear-gradient(
      to top,
      rgba(10,8,8,0.97) 0%,
      rgba(10,8,8,0.78) 48%,
      rgba(10,8,8,0.28) 100%
    );
  }

  .pservices__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pservices__head-stats {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .pscard__subrow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .section__concepts-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */

@media (max-width: 640px) {
  .nav__links,
  .nav__contact {
    display: none;
  }

  .nav__hamburger { display: flex; }

  .hero__lower {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 44px;
    gap: 28px;
  }

  .hero__statusbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  .btn--pill {
    width: 100%;
    justify-content: center;
  }

  .step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .concepts__grid {
    grid-template-columns: 1fr;
  }

  .concepts__grid .concept:last-child {
    display: block;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 16px 0;
  }

  .br-desktop { display: none; }
}

/* ============================================================
   BLOG LATEST
   ============================================================ */

.blog-latest {
  background: var(--white);
}

.blog-latest .section__header {
  margin-bottom: 20px;
}

.blog-latest__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.blog-latest__all-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
}

.blog-latest__all-link:hover {
  color: var(--fg);
  border-color: rgba(12, 12, 12, 0.4);
}

.blog-latest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.blog-card {
  border-right: 1px solid var(--border);
}

.blog-card:last-child {
  border-right: none;
}

.blog-card__img-wrap {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
}

.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card__link:hover .blog-card__img-wrap img {
  transform: scale(1.03);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 2.5vw, 36px) clamp(32px, 4vw, 52px);
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: background 0.2s ease;
  height: 100%;
}

.blog-card__link:hover {
  background: rgba(12, 12, 12, 0.025);
}

.blog-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-card__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-light);
}

.blog-card__cat {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.blog-card__title {
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.blog-card__excerpt {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--fg-muted);
  flex-grow: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--fg-light);
  letter-spacing: 0.01em;
}

.blog-card__dot {
  line-height: 1;
}

.blog-card__read {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  transition: color 0.2s;
  margin-top: 4px;
}

.blog-card__link:hover .blog-card__read {
  color: var(--fg);
}

@media (max-width: 860px) {
  .blog-latest__grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .blog-card:last-child {
    border-bottom: none;
  }

  .blog-card__link {
    padding: 32px 0;
  }

  .blog-latest__head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SHARED PRICING — hn- prefix (used on all 3 service pages)
   ============================================================ */

.hn-tabs {
  padding: clamp(44px, 5.5vw, 64px) var(--px) clamp(36px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
}

.hn-tabs__selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.hn-tabs__btn {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  background: none;
  border: none;
  border-radius: 100px;
  padding: 9px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}

.hn-tabs__btn.is-active {
  background: var(--fg);
  color: var(--white);
}

.hn-tabs__btn:not(.is-active):hover {
  background: var(--tinted);
}

.hn-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
  padding-top: 18px;
}

.hn-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.hn-card:hover {
  box-shadow: 0 8px 28px rgba(12,12,12,0.07);
  transform: translateY(-2px);
}

.hn-card--featured {
  border: 2px solid var(--fg);
  box-shadow: 0 6px 32px rgba(12,12,12,0.09);
  overflow: visible;
  position: relative;
}

.hn-card--featured:hover {
  box-shadow: 0 12px 44px rgba(12,12,12,0.13);
  transform: translateY(-3px);
}

.hn-card--featured .hn-card__badge-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  margin-bottom: 0;
  z-index: 1;
}

.hn-card--featured .hn-card__badge {
  background: var(--fg);
  color: var(--white);
  border-color: transparent;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  box-shadow: 0 2px 8px rgba(12,12,12,0.18);
}

.hn-card__top {
  padding: clamp(22px, 2.5vw, 30px) clamp(22px, 2.5vw, 30px) 20px;
}

.hn-card--featured .hn-card__top {
  padding-top: clamp(20px, 2.2vw, 26px);
}

.hn-card__badge-wrap {
  height: 24px;
  margin-bottom: 16px;
}

.hn-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--tinted);
  border: 1px solid rgba(12,12,12,0.10);
  border-radius: 100px;
  padding: 4px 11px;
}

.hn-card__name {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 16px;
}

.hn-card__setup {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.hn-card__price {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--fg);
  line-height: 1.0;
}

.hn-card__price-suffix {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
  margin-left: 2px;
}

.hn-card__monthly {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}

.hn-card__monthly strong {
  color: var(--fg);
  font-weight: 600;
}

.hn-card__divider {
  height: 1px;
  background: var(--border);
  margin: 0 clamp(22px, 2.5vw, 30px);
}

.hn-card__features {
  padding: 20px clamp(22px, 2.5vw, 30px) clamp(22px, 2.5vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.hn-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.hn-card__feat:last-child { border-bottom: none; padding-bottom: 0; }
.hn-card__feat:first-child { padding-top: 0; }

.hn-card__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tinted);
  border: 1px solid rgba(12,12,12,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hn-card__check svg {
  width: 7px; height: 7px;
  stroke: var(--fg);
  stroke-width: 2;
  fill: none;
}

.hn-card__foot {
  padding: 0 clamp(22px, 2.5vw, 30px) clamp(22px, 2.5vw, 30px);
}

.hn-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  background: var(--tinted);
  border: 1px solid rgba(12,12,12,0.10);
  border-radius: 100px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.hn-card__btn:hover { background: var(--border); border-color: rgba(12,12,12,0.18); }
.hn-card--featured .hn-card__btn { background: var(--fg); color: var(--white); border-color: transparent; }
.hn-card--featured .hn-card__btn:hover { background: #2a2a2a; }

.hn-bundle {
  padding: clamp(36px, 4vw, 52px) var(--px) clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--border);
}

.hn-bundle__card {
  background: var(--tinted);
  border: 1px solid rgba(12,12,12,0.09);
  border-radius: 20px;
  padding: clamp(40px, 5vw, 64px) clamp(36px, 4.5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hn-bundle__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.70) 0%, transparent 58%);
  pointer-events: none;
}

.hn-bundle__left { position: relative; z-index: 1; }

.hn-bundle__eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.hn-bundle__heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 16px;
}

.hn-bundle__desc {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--fg-muted);
  max-width: 440px;
}

.hn-bundle__pricing { margin-top: 28px; }

.hn-bundle__setup-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2px;
}

.hn-bundle__price {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--fg);
}

.hn-bundle__monthly { font-size: 14px; color: var(--fg-muted); margin-top: 6px; }
.hn-bundle__monthly strong { color: var(--fg); font-weight: 600; }

.hn-bundle__right { position: relative; z-index: 1; flex-shrink: 0; }

.hn-bundle__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 220px;
}

.hn-bundle__feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(12,12,12,0.07);
  font-size: 13.5px;
  color: var(--fg-muted);
}

.hn-bundle__feat:last-child { border-bottom: none; }

.hn-bundle__feat-check {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--fg);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .hn-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hn-bundle__card { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .hn-cards { grid-template-columns: 1fr; }
  .hn-tabs__selector { width: 100%; justify-content: center; }
  .hn-tabs__btn { flex: 1; text-align: center; padding: 9px 14px; }
}
