/* =========================================================
   NIKATO WEB EXPRESS — styles.css
   Vanilla CSS · dark theme · green accent · grain · Nikato brand
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0A0A0A;
  --surface:   #121212;
  --surface-2: #181818;
  --green:     #00E0A4;
  --green-d:   #00b886;
  --green-dim: rgba(0, 224, 164, 0.12);
  --white:     #FFFFFF;
  --text:      rgba(255, 255, 255, 0.92);
  --muted:     rgba(255, 255, 255, 0.52);
  --faint:     rgba(255, 255, 255, 0.34);
  --border:    rgba(255, 255, 255, 0.09);
  --border-2:  rgba(255, 255, 255, 0.14);

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(72px, 12vw, 140px); position: relative; }

.section__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 68px); }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.section__title em { color: var(--green); font-style: italic; }
.section__lead { margin-top: 18px; color: var(--muted); font-size: 1.05rem; max-width: 560px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow span { color: var(--faint); }

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: -120%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 120; background: transparent; pointer-events: none;
}
.progress__bar {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green-d), var(--green));
  box-shadow: 0 0 12px rgba(0, 224, 164, 0.6);
}

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 200; pointer-events: none; opacity: 0; }
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__dot { width: 6px; height: 6px; background: var(--green); }
.cursor__ring {
  width: 34px; height: 34px; border: 1px solid rgba(0, 224, 164, 0.6);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor.is-hover .cursor__ring { width: 54px; height: 54px; background: rgba(0, 224, 164, 0.08); }
@media (hover: none), (max-width: 1024px) { .cursor { display: none; } }
/* Hide the native Windows pointer only while the custom cursor is active */
html.cursor-active,
html.cursor-active * { cursor: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn--green { background: var(--green); color: #042b21; }
.btn--green:hover { background: #2bf0bd; }
.btn--ghost { border: 1px solid var(--border-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em;
}
.nav__logo-mark { color: var(--green); font-size: 1rem; }
.nav__logo-img { height: 22px; width: auto; display: block; }
.footer__brand .nav__logo-img { height: 26px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 0.96rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--green); }
.nav__cta { padding: 11px 20px; font-size: 0.92rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 34px; height: 34px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.mobile-menu__links a:not(.btn) { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; transition: color 0.2s; }
.mobile-menu__links a:not(.btn):hover { color: var(--green); }
.mobile-menu__links .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; }
.hero__glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; max-width: 120vw;
  background: radial-gradient(ellipse at center, rgba(0, 224, 164, 0.16), transparent 62%);
  filter: blur(30px); pointer-events: none;
}
.hero__inner { position: relative; padding-top: 90px; }
.hero__eyebrow span { margin-inline: 2px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8.5vw, 6rem);
  line-height: 0.98; letter-spacing: -0.04em;
  margin-bottom: 28px;
}
/* padding+negative margin gives ascenders/descenders room without clipping, position unchanged */
.hero__title .line { display: block; overflow: hidden; padding: 0.12em 0.06em; margin: -0.12em -0.06em; }
.hero__title .line > span { display: block; }
.hero__title em { color: var(--green); font-style: italic; }
.hero__sub { max-width: 540px; color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.2rem); margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 999px;
  font-size: 0.9rem; color: var(--muted); background: rgba(255,255,255,0.02);
}
.hero__badge strong { color: var(--text); font-weight: 600; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
}
.hero__scroll span { width: 1px; height: 38px; background: linear-gradient(var(--green), transparent); }

/* ---------- Pillars ---------- */
.pillars__grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  position: relative; padding: 30px 26px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface);
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.pillar:hover { border-color: var(--border-2); transform: translateY(-4px); background: var(--surface-2); }
.pillar__num { position: absolute; top: 22px; right: 24px; font-family: var(--font-display); font-size: 0.8rem; color: var(--faint); }
.pillar__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px;
  border-radius: 12px; background: var(--green-dim); color: var(--green); font-size: 1.3rem;
}
.pillar h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.pillar p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Compare ---------- */
.compare { max-width: 640px; margin-inline: auto; }
.compare__toggle {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  padding: 6px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--surface); margin-bottom: 26px;
}
.compare__pill {
  position: absolute; top: 6px; left: 6px; bottom: 6px; width: calc(50% - 6px);
  border-radius: 999px; background: var(--green-dim); border: 1px solid rgba(0,224,164,0.4);
  transition: transform 0.4s var(--ease);
}
.compare__toggle[data-active="comun"] .compare__pill { transform: translateX(0); }
.compare__toggle[data-active="express"] .compare__pill { transform: translateX(100%); }
.compare__tab {
  position: relative; z-index: 1; padding: 12px 10px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; color: var(--muted); transition: color 0.3s; text-align: center;
}
.compare__tab.is-active { color: var(--green); }
.compare__panels { position: relative; }
.compare__panel {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  padding: 14px 26px;
}
.compare__panel { display: none; }
.compare__panel.is-active { display: block; }
.compare__list { list-style: none; }
.compare__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1.02rem;
}
.compare__list li:last-child { border-bottom: none; }
.compare__list .ic {
  flex: none; width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; font-size: 0.85rem; font-weight: 700;
}
.compare__list--bad .ic { background: rgba(255, 90, 90, 0.12); color: #ff7a7a; }
.compare__list--bad li { color: var(--muted); }
.compare__list--good .ic { background: var(--green-dim); color: var(--green); }

/* ---------- Benefits ---------- */
.benefits__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefit {
  padding: 32px 30px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); transition: border-color 0.3s, transform 0.3s var(--ease);
}
.benefit:hover { border-color: var(--border-2); transform: translateY(-4px); }
.benefit__ic { font-size: 1.7rem; margin-bottom: 16px; }
.benefit h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.benefit p { color: var(--muted); }

/* ---------- Works ---------- */
.works__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.work {
  display: block; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.work:hover { border-color: var(--green); transform: translateY(-6px); }
.work__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), opacity 0.4s; }
.work__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.55));
  opacity: 0; transition: opacity 0.4s;
}
.work:hover .work__media img { transform: scale(1.06); }
.work:hover .work__media::after { opacity: 1; }
.work__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; }
.work__meta h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; }
.work__tag { display: inline-block; margin-top: 4px; font-size: 0.85rem; color: var(--muted); }
.work__go { color: var(--green); font-weight: 600; font-size: 0.95rem; opacity: 0; transform: translateX(-6px); transition: opacity 0.3s, transform 0.3s var(--ease); white-space: nowrap; }
.work:hover .work__go { opacity: 1; transform: translateX(0); }

.works__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 38px; }
.works__more { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.works__more span { display: block; font-family: var(--font-body); font-size: 0.92rem; color: var(--muted); margin-top: 4px; font-weight: 400; }
.works__note { margin-top: 22px; color: var(--faint); font-size: 0.92rem; }

/* ---------- Sectors ---------- */
.sectors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sector {
  display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.sector:hover { border-color: var(--green); transform: translateY(-5px); }
.sector__media { aspect-ratio: 16 / 9; overflow: hidden; }
.sector__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.sector:hover .sector__media img { transform: scale(1.06); }
.sector__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sector__body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.sector__body p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.sector__go { color: var(--green); font-weight: 600; font-size: 0.92rem; margin-top: 6px; }
.sector--more { justify-content: center; background: var(--green-dim); border-color: rgba(0,224,164,0.3); }
.sector--more .sector__body { justify-content: center; }

/* ---------- Pricing ---------- */
.pricing__wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; align-items: start; }
.price-card {
  position: relative; padding: 38px 34px; border: 1px solid var(--green); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(0,224,164,0.06), var(--surface));
  box-shadow: 0 30px 80px -40px rgba(0, 224, 164, 0.4);
}
.price-card__badge {
  display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 0.76rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--green); color: #042b21; margin-bottom: 18px;
}
.price-card__name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.price-card__price { display: flex; align-items: baseline; gap: 14px; margin: 10px 0 4px; }
.price-card__old { color: var(--faint); text-decoration: line-through; font-size: 1.2rem; }
.price-card__now { font-family: var(--font-display); font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; }
.price-card__pay { color: var(--muted); font-size: 0.92rem; }
.price-card__list { list-style: none; margin: 26px 0; }
.price-card__list li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.price-card__list li:last-child { border-bottom: none; }
.price-card__list .ic { color: var(--green); font-weight: 700; }
.price-card__fine { margin-top: 16px; color: var(--faint); font-size: 0.86rem; text-align: center; }

.pricing__side { display: flex; flex-direction: column; gap: 18px; }
.market { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.market__title { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 18px; }
.market ul { list-style: none; }
.market li { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.market li:last-child { border-bottom: none; }
.market li span { color: var(--muted); }
.market li b { font-family: var(--font-display); font-weight: 600; }
.market__win span, .market__win b { color: var(--green); }
.custom-note { padding: 28px; border: 1px dashed var(--border-2); border-radius: var(--radius); }
.custom-note p { color: var(--muted); margin-bottom: 18px; font-size: 0.96rem; }

/* ---------- Guarantee ---------- */
.guarantee-section { padding-block: clamp(40px, 8vw, 90px); }
.guarantee {
  text-align: center; max-width: 760px; margin-inline: auto;
  padding: clamp(40px, 6vw, 64px); border: 1px solid var(--border-2); border-radius: var(--radius);
  background: radial-gradient(ellipse at top, rgba(0,224,164,0.08), var(--surface));
}
.guarantee__ic { font-size: 2.4rem; display: block; margin-bottom: 18px; }
.guarantee h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; letter-spacing: -0.03em; }
.guarantee h2 em { color: var(--green); font-style: italic; }
.guarantee p { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
/* Keep the guarantee sentence on a single line where it fits */
@media (min-width: 720px) { .guarantee p { white-space: nowrap; } }

/* ---------- Process ---------- */
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 34px 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.step__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--green-dim); -webkit-text-stroke: 1px var(--green); display: block; margin-bottom: 16px; }
.step h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.step p { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color 0.3s; }
.faq__item.is-open { border-color: var(--border-2); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; text-align: left; font-family: var(--font-display); font-size: 1.08rem; font-weight: 500;
}
.faq__plus { position: relative; flex: none; width: 18px; height: 18px; }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--green); transition: transform 0.3s var(--ease);
}
.faq__plus::before { width: 16px; height: 2px; }
.faq__plus::after { width: 2px; height: 16px; }
.faq__item.is-open .faq__plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { height: 0; overflow: hidden; }
.faq__a p { padding: 0 26px 24px; color: var(--muted); max-width: 620px; }

/* ---------- CTA Final ---------- */
.cta-final { position: relative; text-align: center; }
.cta-final__glow {
  position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px; max-width: 130vw;
  background: radial-gradient(ellipse at center, rgba(0,224,164,0.18), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.cta-final__title { position: relative; font-family: var(--font-display); font-size: clamp(2.2rem, 6.5vw, 4.4rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1.02; }
.cta-final__title em { color: var(--green); font-style: italic; }
.cta-final__sub { position: relative; margin-top: 18px; color: var(--muted); font-size: 1.15rem; }
.cta-final__btns { position: relative; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding-block: 54px 30px; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.footer__brand p { margin-top: 14px; color: var(--muted); font-size: 0.94rem; }
.footer__links { display: flex; gap: 26px; align-items: flex-start; }
.footer__links a { color: var(--muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--green); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 26px; color: var(--faint); font-size: 0.86rem; }

/* ---------- Reveal (only active when JS is on) ---------- */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(28px); }
.reveal-ready [data-split] .word { opacity: 0; transform: translateY(40%); display: inline-block; }

/* ---------- Sector subpages ---------- */
.subhero { position: relative; padding-top: 160px; padding-bottom: clamp(50px, 8vw, 90px); }
.subhero__glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 760px; height: 520px; max-width: 120vw;
  background: radial-gradient(ellipse at center, rgba(0,224,164,0.14), transparent 62%);
  filter: blur(30px); pointer-events: none;
}
.subhero__back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; transition: color 0.2s; }
.subhero__back:hover { color: var(--green); }
.subhero__title {
  position: relative; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: 1.0; letter-spacing: -0.04em; max-width: 12ch;
}
.subhero__title em { color: var(--green); font-style: italic; }
.subhero__sub { position: relative; margin-top: 22px; max-width: 560px; color: var(--muted); font-size: 1.12rem; }
.subhero__cta { position: relative; margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature {
  display: flex; gap: 16px; padding: 24px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface); transition: border-color 0.3s, transform 0.3s var(--ease);
}
.feature:hover { border-color: var(--border-2); transform: translateY(-3px); }
.feature__ic { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--green-dim); color: var(--green); font-size: 1.15rem; }
.feature h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.02em; }
.feature p { color: var(--muted); font-size: 0.94rem; }

.why-list { list-style: none; display: grid; gap: 14px; max-width: 720px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; padding: 20px 24px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.why-list .ic { flex: none; color: var(--green); font-weight: 700; font-size: 1.1rem; line-height: 1.5; }
.why-list span.txt { color: var(--text); }

@media (max-width: 760px) { .feature-list { grid-template-columns: 1fr; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__wrap { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { height: 66px; }
  .nav__logo-img { height: 22px; }

  /* Hero: scroll hint flows below the badge instead of overlapping it */
  .hero { flex-direction: column; align-items: stretch; justify-content: center; }
  .hero__scroll { position: static; transform: none; margin-top: 30px; align-self: center; }

  .benefits__grid, .works__grid, .pillars__grid, .sectors__grid { grid-template-columns: 1fr; }

  .section__head { margin-bottom: 36px; }
  .compare__list li { font-size: 0.96rem; }
  .works__foot { flex-direction: column; align-items: flex-start; }
  .price-card { padding: 30px 24px; }
  .price-card__now { font-size: 2.5rem; }
  .footer__inner { flex-direction: column; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .hero__cta .btn, .cta-final__btns .btn { width: 100%; }
}
