/* ==========================================================================
   Acme VA — Stylesheet
   Aesthetic: Bold · Masculine · Industrial · Black / Yellow / White / Gray
   ========================================================================== */

:root {
  /* Core */
  --black:   #0c0c0c;
  --ink:     #141414;
  --ink-2:   #1c1c1c;
  --ink-3:   #262626;
  --white:   #ffffff;

  /* Yellow */
  --yellow:      #FFCE00;
  --yellow-300:  #FFDA40;
  --yellow-600:  #D9AE00;

  /* Gray */
  --gray-50:  #f5f5f4;
  --gray-100: #ebebe9;
  --gray-200: #dcdcd9;
  --gray-300: #c4c4c0;
  --gray-400: #9b9b97;
  --gray-500: #6e6e6a;
  --gray-600: #4d4d4a;
  --gray-700: #333331;

  --text:  #161614;
  --muted: #5c5c58;

  /* Type */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body:    'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius:    4px;
  --radius-lg: 6px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  padding-left: 42px;
}
.kicker::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 30px; height: 3px;
  background: var(--yellow);
}
.kicker--light { color: var(--white); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 20ch;
}
.section-title em {
  font-style: normal;
  color: var(--yellow-600);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--yellow); }

.section-sub {
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 58ch;
  margin-top: 20px;
  line-height: 1.65;
}
.section-sub--light { color: var(--gray-300); }

.lede {
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 26px -12px rgba(255, 206, 0, 0.9);
}
.btn--yellow:hover {
  transform: translateY(-3px);
  background: var(--yellow-300);
  box-shadow: 0 16px 34px -12px rgba(255, 206, 0, 0.95);
}
.btn--yellow:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}
.btn--lg { padding: 18px 32px; font-size: 14px; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(12, 12, 12, 0.0);
  transition: background-color 0.3s var(--ease), padding 0.3s var(--ease),
              border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12, 12, 12, 0.96);
  border-bottom-color: var(--ink-3);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}
.logo__mark {
  width: 30px; height: 30px;
  color: var(--yellow);
  display: inline-flex;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.logo__text em {
  font-style: normal;
  color: var(--yellow);
  margin-left: 2px;
}
.logo--light { color: var(--white); }

.nav__links {
  display: flex;
  gap: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--gray-300);
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--yellow); }

.nav__cta { font-size: 11px; padding: 12px 20px; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 206, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 206, 0, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 25%, black 20%, transparent 72%);
}
.hero__glow {
  position: absolute;
  top: -240px; right: -180px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(255, 206, 0, 0.16) 0%, transparent 62%);
  filter: blur(40px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid var(--ink-3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 30px;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  animation: fadeUp 0.9s 0.1s var(--ease) both;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
}
.hero__title-line {
  display: block;
  color: var(--yellow);
  -webkit-text-stroke: 0;
}

.hero__sub {
  margin-top: 26px;
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 50ch;
  color: var(--gray-300);
  animation: fadeUp 0.9s 0.2s var(--ease) both;
}

.hero__ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s var(--ease) both;
}
.hero__ctas .btn--ghost {
  border-color: var(--ink-3);
  color: var(--white);
}
.hero__ctas .btn--ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero__assurance {
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
  animation: fadeUp 0.9s 0.4s var(--ease) both;
}
.hero__assurance span { white-space: nowrap; }

.hero__visual {
  position: relative;
  animation: fadeUp 1s 0.25s var(--ease) both;
}
.hero__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-3);
  filter: grayscale(0.15) contrast(1.05);
}
.hero__badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.6);
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}
.hero__badge-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  max-width: 16ch;
}

.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--ink-3);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  color: var(--yellow);
}
.stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 920px) {
  .hero { padding-top: 120px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; padding: 24px 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--ink-3); padding-right: 24px; }
  .stat:nth-child(even) { padding-left: 24px; }
}

/* ==========================================================================
   Logos / trust bar
   ========================================================================== */
.logos {
  padding: 40px 0;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-3);
}
.logos__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.logos__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.dot-sep { color: var(--yellow); }

/* ==========================================================================
   Problem
   ========================================================================== */
.problem {
  padding: 120px 0;
  background: var(--white);
}
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  align-items: start;
}
.problem__left { position: sticky; top: 110px; }
.problem__img {
  margin-top: 32px;
  width: 100%;
  border-radius: var(--radius-lg);
  filter: grayscale(1);
}
.problem__list {
  margin-top: 34px;
  display: grid;
  gap: 0;
}
.problem__list li {
  display: flex;
  gap: 18px;
  align-items: baseline;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  padding: 20px 0;
  border-bottom: 2px solid var(--gray-100);
}
.problem__list li span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  background: var(--yellow);
  padding: 2px 9px;
  border-radius: 3px;
  flex-shrink: 0;
}
.problem__punch {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--ink);
  border-left: 6px solid var(--yellow);
  padding-left: 22px;
}

@media (max-width: 880px) {
  .problem { padding: 80px 0; }
  .problem__inner { grid-template-columns: 1fr; gap: 36px; }
  .problem__left { position: static; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  padding: 120px 0;
  background: var(--gray-50);
}
.services__head { max-width: 800px; margin-bottom: 56px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 44px 34px;
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative;
}
.service-card:hover {
  background: var(--yellow);
  z-index: 1;
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gray-200);
  margin-bottom: 18px;
  transition: color 0.35s var(--ease);
}
.service-card:hover .service-card__num { color: var(--black); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.42rem;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 22px;
}
.service-card:hover p { color: var(--ink-2); }
.service-card ul {
  display: grid;
  gap: 9px;
  padding-top: 20px;
  border-top: 2px solid var(--gray-100);
}
.service-card:hover ul { border-top-color: rgba(0,0,0,0.18); }
.service-card ul li {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 9px; height: 9px;
  background: var(--yellow);
}
.service-card:hover ul li::before { background: var(--black); }
.service-card:hover ul li { color: var(--ink-2); }

.service-card--feature {
  background: var(--black);
  color: var(--white);
}
.service-card--feature:hover { background: var(--ink-2); }
.service-card--feature .service-card__num { color: var(--ink-3); }
.service-card--feature:hover .service-card__num { color: var(--yellow); }
.service-card--feature h3 { color: var(--white); }
.service-card--feature p,
.service-card--feature:hover p { color: var(--gray-400); }
.service-card--feature ul { border-top-color: var(--ink-3); }
.service-card--feature:hover ul { border-top-color: var(--ink-3); }
.service-card--feature ul li,
.service-card--feature:hover ul li { color: var(--gray-300); }
.service-card--feature ul li::before,
.service-card--feature:hover ul li::before { background: var(--yellow); }

@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Force / Team oneness
   ========================================================================== */
.force {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
}
.force__head { max-width: 860px; margin-bottom: 52px; }
.force__gallery {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 56px;
}
.force__shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-3);
}
.force__shot--tall { grid-row: span 2; }
.force__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.force__shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 22px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.92), transparent);
}

.force__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value {
  padding: 32px 28px;
  background: var(--ink);
  border: 1px solid var(--ink-3);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.value:hover { transform: translateY(-5px); background: var(--ink-2); }
.value__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.value h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.value p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-400);
  line-height: 1.6;
}

@media (max-width: 880px) {
  .force { padding: 80px 0; }
  .force__gallery { grid-template-columns: 1fr; }
  .force__shot--tall { grid-row: auto; }
  .force__values { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Process
   ========================================================================== */
.process {
  padding: 120px 0;
  background: var(--yellow);
  color: var(--black);
}
.process__head { max-width: 760px; margin-bottom: 56px; }
.process__head .kicker { color: var(--black); }
.process__head .kicker::before { background: var(--black); }
.process__head .section-title { color: var(--black); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  padding: 30px 26px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease);
}
.step:hover { transform: translateY(-6px); }
.step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.18rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--gray-400);
}

@media (max-width: 980px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process { padding: 80px 0; }
  .process__steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Proof
   ========================================================================== */
.proof {
  padding: 120px 0;
  background: var(--white);
}
.proof__head { margin-bottom: 56px; }
.proof__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.quote {
  background: var(--gray-50);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.quote:hover {
  border-color: var(--yellow);
  transform: translateY(-5px);
}
.quote blockquote {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 22px;
}
.quote--lg {
  grid-row: span 2;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 36px;
}
.quote--lg:hover { border-color: var(--yellow); }
.quote--lg blockquote {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.32;
}
.quote--lg blockquote::before {
  content: '“';
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: 22px;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 18px;
  border-top: 2px solid var(--gray-100);
}
.quote--lg figcaption { border-top-color: var(--ink-3); }
.quote__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.quote--lg .quote__name { color: var(--yellow); }
.quote__role { font-size: 0.84rem; font-weight: 600; color: var(--muted); }
.quote--lg .quote__role { color: var(--gray-400); }

.proof__metrics {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.metric {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
}
.metric__num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
}
.metric__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.35;
}

@media (max-width: 980px) {
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .quote--lg { grid-row: auto; grid-column: span 2; }
  .proof__metrics { grid-column: span 2; }
}
@media (max-width: 640px) {
  .proof { padding: 80px 0; }
  .proof__grid { grid-template-columns: 1fr; }
  .quote--lg, .proof__metrics { grid-column: auto; }
  .proof__metrics { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing {
  padding: 120px 0;
  background: var(--gray-50);
}
.pricing__head { text-align: center; margin-bottom: 56px; }
.pricing__head .section-title { margin: 0 auto; }
.pricing__head .section-sub { margin: 18px auto 0; }
.pricing__head .kicker { padding-left: 0; }
.pricing__head .kicker::before { display: none; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -28px rgba(0,0,0,0.4);
}
.plan--featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-14px);
}
.plan--featured:hover { transform: translateY(-20px); }
.plan__badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  padding: 7px 18px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan__head { margin-bottom: 22px; }
.plan__head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: inherit;
  margin-bottom: 6px;
}
.plan--featured .plan__head h3 { color: var(--yellow); }
.plan__head p { font-size: 0.88rem; font-weight: 500; color: var(--muted); }
.plan--featured .plan__head p { color: var(--gray-400); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 16px 0 22px;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 24px;
}
.plan--featured .plan__price { border-bottom-color: var(--ink-3); }
.plan__currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--muted);
}
.plan--featured .plan__currency { color: var(--gray-400); }
.plan__amount {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--ink);
}
.plan--featured .plan__amount { color: var(--white); }
.plan__period { font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.plan--featured .plan__period { color: var(--gray-400); }
.plan__price--custom .plan__amount { font-size: 2.8rem; }

.plan__features {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}
.plan__features li {
  font-size: 0.92rem;
  font-weight: 600;
  padding-left: 26px;
  position: relative;
  line-height: 1.45;
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.15em;
  width: 16px; height: 16px;
  background: var(--yellow);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing__note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 980px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .pricing { padding: 80px 0; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 120px 0;
  background: var(--white);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.faq__left { position: sticky; top: 110px; }
.faq-item {
  border-bottom: 2px solid var(--gray-100);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--gray-100);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.faq-item[open] summary::after {
  content: '–';
  background: var(--yellow);
  color: var(--black);
}
.faq-item summary:hover { color: var(--yellow-600); }
.faq-item p {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.65;
  font-size: 0.97rem;
  max-width: 62ch;
  animation: fadeUp 0.4s var(--ease) both;
}

@media (max-width: 880px) {
  .faq { padding: 80px 0; }
  .faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .faq__left { position: static; }
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -220px; left: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 206, 0, 0.14) 0%, transparent 62%);
  filter: blur(40px);
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
  z-index: 1;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--white);
}
.cta__sub {
  color: var(--gray-300);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 46ch;
}
.cta__list { display: grid; gap: 12px; }
.cta__list li {
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
}
.cta__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  font-weight: 800;
  color: var(--black);
  background: var(--yellow);
  width: 20px; height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.cta__img {
  margin-top: 32px;
  width: 100%;
  border-radius: var(--radius-lg);
}

.cta__form {
  background: var(--ink);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.field input,
.field select,
.field textarea {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  color: var(--white);
  padding: 13px 15px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-600); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.field select option { background: var(--ink); color: var(--white); }
.cta__form button { grid-column: span 2; }
.form__fineprint {
  grid-column: span 2;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
}

@media (max-width: 880px) {
  .cta { padding: 80px 0; }
  .cta__inner { grid-template-columns: 1fr; gap: 44px; }
  .cta__form { padding: 26px 20px; grid-template-columns: 1fr; }
  .field--full, .cta__form button, .form__fineprint { grid-column: auto; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 66px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--ink-3);
}
.footer__brand p {
  margin-top: 18px;
  color: var(--gray-400);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 34ch;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  font-weight: 800;
}
.footer__cols ul { display: grid; gap: 10px; }
.footer__cols a {
  color: var(--gray-400);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}
.footer__cols a:hover { color: var(--yellow); }
.footer__base {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
}

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__base { flex-direction: column; gap: 8px; text-align: center; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.35); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

::selection { background: var(--yellow); color: var(--black); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
