/* ===========================================================================
   Obliq — static HTML/CSS/JS template
   Hand-authored stylesheet converted from the Next.js 15 + Tailwind v4 source.
   All design tokens mirror the original Webflow export.
   =========================================================================== */

@import url("../fonts/fonts.css");
@import url("./pages.css");

/* ---------------------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------------------- */
:root {
  --font-sans: "InterTight", ui-sans-serif, system-ui, sans-serif;
  --font-button: "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Brand colors */
  --color-primary: #d54000;
  --color-soft-white: whitesmoke;
  --color-grey: #626262;
  --color-dark-grey: #3e3d3d;
  --color-soft-grey: #6a6d74;
  --color-stroke: #e1dfd7;
  --color-stroke-dark: #595959;

  /* Layout */
  --container-obliq: 1420px;

  /* Body type */
  --text-md-body: 18px;
  --text-md-body-lh: 1.44em;
  --text-md-body-ls: -0.02rem;
}

/* ---------------------------------------------------------------------------
   2. Base / reset
   --------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-md-body);
  line-height: var(--text-md-body-lh);
  letter-spacing: var(--text-md-body-ls);
  color: #000;
  background: var(--color-soft-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

svg { display: block; }

:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------------------
   3. Layout primitives
   --------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-obliq);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2.5rem; }
}

.section { padding-block: 6rem; }
@media (min-width: 1024px) {
  .section { padding-block: 8rem; }
}

/* ---------------------------------------------------------------------------
   4. Buttons
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-button);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background-color 0.3s, color 0.3s;
}
.btn--dark { background: #000; color: #fff; }
.btn--dark:hover { background: var(--color-primary); }
.btn--light { background: #fff; color: #000; }
.btn--light:hover { background: var(--color-soft-white); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: #000; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------------------
   5. Sub-title pill + section headings
   --------------------------------------------------------------------------- */
.subtitle {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-stroke);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
}
.subtitle__dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--color-primary); }
.subtitle__text {
  font-size: 14px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-dark-grey);
}

.section-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000;
}
.section-title .muted { color: var(--color-grey); }

/* ---------------------------------------------------------------------------
   6. Contact card
   --------------------------------------------------------------------------- */
.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  transition: background-color 0.2s;
}
.contact-card--light { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); }
.contact-card--light:hover { background: #fff; }
.contact-card--soft { background: var(--color-soft-white); }
.contact-card--soft:hover { background: #fff; }
.contact-card__img {
  width: 4rem; height: 4rem; flex-shrink: 0;
  border-radius: 0.75rem; overflow: hidden;
}
.contact-card__img img { width: 100%; height: 100%; object-fit: cover; }
.contact-card__body { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-card__meta { display: flex; align-items: center; gap: 0.5rem; font-size: 12px; }
.contact-card__role { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #000; }
.contact-card__company { color: var(--color-grey); }
.contact-card__name { font-size: 17px; font-weight: 500; color: #000; }
.contact-card__cta { display: flex; align-items: center; gap: 0.375rem; font-size: 13px; font-weight: 600; color: #000; }

/* ---------------------------------------------------------------------------
   7. Site header
   --------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-stroke);
  background: rgba(245, 245, 245, 0.85);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header__left { display: flex; align-items: center; gap: 2rem; }
.site-header__logo { display: block; height: 2rem; }
.site-header__logo img { width: auto; height: 100%; }

.nav-primary { display: none; align-items: center; gap: 2rem; }
.nav-primary a {
  font-size: 15px; font-weight: 500; color: rgba(0, 0, 0, 0.85);
  transition: color 0.2s;
}
.nav-primary a:hover { color: var(--color-primary); }

.site-header__right { display: flex; align-items: center; gap: 1rem; }

.cart-link {
  position: relative;
  display: flex; width: 2.5rem; height: 2.5rem;
  align-items: center; justify-content: center;
  border-radius: 9999px; border: 1px solid var(--color-stroke);
  color: #000; transition: background-color 0.2s;
}
.cart-link:hover { background: #fff; }
.cart-badge {
  position: absolute; right: -0.25rem; top: -0.25rem;
  display: flex; width: 1.25rem; height: 1.25rem;
  align-items: center; justify-content: center;
  border-radius: 9999px; background: var(--color-primary);
  font-size: 11px; font-weight: 600; color: #fff;
}
.cart-badge[hidden] { display: none; }

.header-cta { display: none; }

.menu-toggle {
  display: flex; width: 2.5rem; height: 2.5rem;
  align-items: center; justify-content: center;
  border-radius: 9999px; border: 1px solid var(--color-stroke); color: #000;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Pages dropdown */
.pages-dropdown { position: relative; }
.pages-dropdown__trigger {
  display: flex; align-items: center; gap: 0.25rem; padding: 0.5rem 0;
  font-size: 15px; font-weight: 500; color: rgba(0, 0, 0, 0.85); transition: color 0.2s;
}
.pages-dropdown:hover .pages-dropdown__trigger { color: var(--color-primary); }
.pages-dropdown__panel {
  position: absolute; left: 50%; top: 100%; z-index: 50;
  width: 640px; transform: translateX(-50%);
  padding-top: 0.75rem;
  visibility: hidden; opacity: 0; transition: opacity 0.2s, visibility 0.2s;
}
.pages-dropdown:hover .pages-dropdown__panel { visibility: visible; opacity: 1; }
.pages-dropdown__card {
  border-radius: 1rem; border: 1px solid var(--color-stroke);
  background: #fff; padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.dropdown-col__title {
  margin-bottom: 0.75rem; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-grey);
}
.dropdown-col ul { display: flex; flex-direction: column; gap: 0.375rem; }
.dropdown-col a { font-size: 14px; color: rgba(0,0,0,0.85); transition: color 0.2s; }
.dropdown-col a:hover { color: var(--color-primary); }

/* Mobile menu */
.mobile-menu { display: none; }
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.5rem 0 1.5rem; }
.mobile-menu a.m-link { border-radius: 0.5rem; padding: 0.75rem; font-size: 16px; font-weight: 500; color: #000; }
.mobile-menu a.m-link:hover { background: #fff; }
.mobile-menu__divider { margin: 0.5rem 0; height: 1px; background: var(--color-stroke); }
.mobile-menu__label { padding: 0 0.75rem 0.25rem; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-grey); }
.mobile-menu a.m-sub { border-radius: 0.5rem; padding: 0.625rem 0.75rem; font-size: 15px; color: var(--color-grey); }
.mobile-menu a.m-sub:hover { color: #000; }
.mobile-menu__cta { margin-top: 1rem; }

@media (min-width: 1024px) {
  .site-header__inner { height: 6rem; }
  .site-header__left { gap: 3rem; }
  .site-header__logo { height: 2.25rem; }
  .nav-primary { display: flex; }
  .header-cta { display: block; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------------------------------------------------------------------------
   8. Footer
   --------------------------------------------------------------------------- */
.site-footer { background: var(--color-soft-white); color: #000; }
.site-footer__top { padding-block: 5rem; }
.footer-grid { display: grid; gap: 4rem; }
.footer-contact { display: flex; flex-direction: column; gap: 2.5rem; }
.footer-contact__lines { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-phone { font-size: 17px; color: var(--color-grey); transition: color 0.2s; }
.footer-phone:hover { color: #000; }
.footer-email {
  font-size: clamp(28px, 5vw, 46px); font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em; color: #000; transition: color 0.2s;
}
.footer-email:hover { color: var(--color-primary); }

.footer-right { display: flex; flex-direction: column; gap: 3rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.footer-col__title { font-size: 18px; font-weight: 500; color: #000; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 15px; color: var(--color-grey); transition: color 0.2s; }
.footer-col a:hover { color: #000; }
.footer-logo { margin-top: auto; display: block; }
.footer-logo img { height: auto; width: 100%; max-width: 520px; }

.site-footer__bottom { border-top: 1px solid var(--color-stroke); }
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding-block: 1.5rem; font-size: 14px; color: var(--color-grey);
}

@media (min-width: 640px) {
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .site-footer__top { padding-block: 7rem; }
  .footer-grid { grid-template-columns: 1.1fr 1.4fr; gap: 5rem; }
}

/* ---------------------------------------------------------------------------
   9. Hero
   --------------------------------------------------------------------------- */
.hero { padding-top: 2rem; }
.hero__head {
  display: grid; align-items: end; gap: 2rem; padding-bottom: 2.5rem;
}
.hero__eyebrow {
  margin-bottom: 1.5rem; font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-grey);
}
.hero__title {
  font-size: clamp(52px, 8.5vw, 128px); font-weight: 500;
  line-height: 0.98; letter-spacing: -0.02em; color: #000;
}
.hero__lead {
  max-width: 20rem; font-size: 22px; font-weight: 500;
  line-height: 1.25; color: var(--color-dark-grey);
}
.hero__media { position: relative; overflow: hidden; border-radius: 1.5rem; }
.hero__media video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero__card { position: absolute; right: 1.25rem; top: 1.25rem; display: none; }

@media (min-width: 640px) {
  .hero__card { display: block; right: 2rem; top: 2rem; }
}
@media (min-width: 1024px) {
  .hero { padding-top: 3rem; }
  .hero__head { grid-template-columns: 1fr auto; gap: 4rem; padding-bottom: 3.5rem; }
  .hero__lead { padding-bottom: 0.75rem; }
  .hero__media video { aspect-ratio: 2.2 / 1; }
}

/* ---------------------------------------------------------------------------
   10. About (home)
   --------------------------------------------------------------------------- */
.about__wrap { display: flex; flex-direction: column; gap: 2.5rem; }
.about__intro { display: flex; flex-direction: column; gap: 1.5rem; }
.about__lead {
  max-width: 56rem; font-size: clamp(22px, 2.6vw, 38px); font-weight: 500;
  line-height: 1.22; color: var(--color-grey);
}
.about__lead .ink { color: #000; }
.about__cols { display: grid; gap: 2rem; }
.about__photo {
  position: relative; aspect-ratio: 5 / 4; overflow: hidden;
  border-radius: 1.5rem; background: var(--color-stroke);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  border-radius: 1.5rem; background: #fff; padding: 2rem;
}
.avatar-row { display: flex; align-items: center; gap: 1rem; }
.avatar-stack { display: flex; }
.avatar-stack > * { margin-left: -0.75rem; }
.avatar-stack > *:first-child { margin-left: 0; }
.avatar-stack span {
  position: relative; width: 3rem; height: 3rem; overflow: hidden;
  border-radius: 9999px; box-shadow: 0 0 0 4px #fff;
}
.avatar-stack img { width: 100%; height: 100%; object-fit: cover; }
.avatar-row p { font-size: 17px; font-weight: 500; color: #000; }
.about__card-body { display: flex; flex-direction: column; gap: 1.5rem; }
.about__card-body p { font-size: 17px; line-height: 1.5; color: var(--color-grey); }
.about__card .btn { align-self: flex-start; }

@media (min-width: 1024px) {
  .about__wrap { gap: 4rem; }
  .about__intro { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .about__intro .subtitle-wrap { padding-top: 0.75rem; }
  .about__cols { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
  .about__card { padding: 2.5rem; }
}

/* ---------------------------------------------------------------------------
   11. Projects grid
   --------------------------------------------------------------------------- */
.projects__head { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 3rem; }
.projects__head .section-title { max-width: 48rem; }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.project-card { display: flex; flex-direction: column; gap: 1.25rem; }
.project-card__media {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: 1.5rem; background: var(--color-stroke);
}
.project-card__media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.project-card:hover .project-card__media img { transform: scale(1.05); }
.project-card__hover {
  position: absolute; inset-inline: 0; bottom: 0; display: flex; justify-content: flex-end;
  padding: 1rem; opacity: 0; transition: opacity 0.3s;
}
.project-card:hover .project-card__hover { opacity: 1; }
.pill-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; background: #fff; padding: 0.5rem 1rem;
  font-size: 13px; font-weight: 600; color: #000;
}
.project-card__foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.project-card__title { font-size: 20px; font-weight: 500; line-height: 1.2; color: #000; }
.project-card__cat { font-size: 15px; color: var(--color-grey); }
.project-card__date { flex-shrink: 0; font-size: 14px; color: var(--color-grey); }
.center-cta { margin-top: 3.5rem; display: flex; justify-content: center; }

@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .projects__head { padding-bottom: 4rem; }
  .cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------------------------------------------------------------------------
   12. Brand marquee
   --------------------------------------------------------------------------- */
.brand-marquee { border-block: 1px solid var(--color-stroke); background: #fff; padding-block: 2.5rem; overflow: hidden; }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 3rem; animation: marquee-left 40s linear infinite; }
.marquee-track .cell { display: flex; align-items: center; gap: 3rem; flex-shrink: 0; }
.marquee-track img { height: 2.5rem; width: auto; opacity: 0.8; filter: grayscale(1); }
.marquee-track .divider { height: 1.5rem; width: 1px; background: var(--color-stroke); }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------------------
   13. Services list
   --------------------------------------------------------------------------- */
.services__head { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 3.5rem; }
.services__head .section-title { max-width: 56rem; }
.services-list { display: flex; flex-direction: column; border-block: 1px solid var(--color-stroke); }
.service-row {
  display: grid; grid-template-columns: 1fr; align-items: center; gap: 1.5rem;
  padding-block: 2rem; border-top: 1px solid var(--color-stroke);
}
.service-row:first-child { border-top: none; }
.service-row__title {
  font-size: clamp(40px, 5vw, 80px); font-weight: 500; line-height: 1;
  letter-spacing: -0.02em; color: #000; transition: color 0.2s;
}
.service-row:hover .service-row__title { color: var(--color-primary); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  display: inline-flex; align-items: center; border-radius: 9999px;
  border: 1px solid var(--color-stroke); background: #fff;
  padding: 0.375rem 0.875rem; font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-dark-grey);
}
.service-row__end { display: flex; align-items: center; gap: 1rem; color: #000; }
.service-row__num { font-size: 15px; color: var(--color-primary); }
.service-row__arrow { transition: transform 0.2s; }
.service-row:hover .service-row__arrow { transform: translateX(0.25rem); }

@media (min-width: 1024px) {
  .services__head { padding-bottom: 5rem; }
  .service-row { grid-template-columns: 1fr 2fr auto; gap: 3rem; padding-block: 3rem; }
  .service-tags { opacity: 0; transition: opacity 0.5s; }
  .service-row:hover .service-tags { opacity: 1; }
  .service-row__end { justify-content: flex-end; }
}

/* ---------------------------------------------------------------------------
   14. Feedback + stats
   --------------------------------------------------------------------------- */
.feedback__head { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 3.5rem; }
.feedback__grid { display: grid; gap: 1.5rem; align-items: stretch; }
.feedback__left { display: flex; flex-direction: column; gap: 1.5rem; height: 100%; }
.quote-card { display: flex; flex-direction: column; gap: 2rem; border-radius: 1.5rem; background: #fff; padding: 2rem; }
.quote-card__text { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.3; color: #000; }
.quote-card__text .q { color: var(--color-primary); }
.quote-card__author { display: flex; align-items: center; gap: 1rem; }
.quote-card__avatar { position: relative; width: 3.5rem; height: 3.5rem; overflow: hidden; border-radius: 9999px; }
.quote-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-card__name { font-size: 17px; font-weight: 500; color: #000; }
.quote-card__role { font-size: 14px; color: var(--color-grey); }
.stat-pair { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feedback__right { display: grid; grid-template-rows: repeat(2, 1fr); gap: 1.5rem; height: 100%; }
.stat-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  border-radius: 1.5rem; background: #fff; padding: 2rem; height: 100%;
}
.stat-card__value { font-size: clamp(40px, 5vw, 72px); font-weight: 500; line-height: 1; letter-spacing: -0.02em; color: #000; }
.stat-card--lg .stat-card__value { font-size: clamp(56px, 7vw, 96px); }
.stat-card__label { font-size: 18px; font-weight: 500; color: #000; }
.stat-card__caption { font-size: 14px; color: var(--color-grey); margin-top: 0.375rem; }

@media (min-width: 640px) { .stat-pair { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .feedback__grid { grid-template-columns: 1.4fr 1fr; }
  .quote-card, .stat-card { padding: 2.5rem; }
  .quote-card { padding: 3rem; }
}

/* ---------------------------------------------------------------------------
   15. Pricing (home)
   --------------------------------------------------------------------------- */
.pricing__head { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 3.5rem; }
.pricing__head .section-title { max-width: 56rem; }
.pricing__grid { display: grid; gap: 1.5rem; }
.plan-card { border-radius: 1.5rem; padding: 2rem; }
.plan-card--dark { display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem; background: #000; color: #fff; }
.plan-card--light { display: grid; grid-template-columns: 1fr; gap: 2rem; background: #fff; }
.plan-name { font-size: 20px; font-weight: 600; }
.plan-desc { font-size: 14px; margin-top: 0.5rem; }
.plan-card--dark .plan-desc { color: rgba(255,255,255,0.55); }
.plan-card--light .plan-desc { color: var(--color-grey); }
.plan-features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.plan-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 15px; }
.plan-card--light .plan-features li { color: #000; }
.plan-check { color: var(--color-primary); flex-shrink: 0; }
.plan-price { display: flex; align-items: baseline; gap: 0.5rem; }
.plan-price__amount { font-size: clamp(40px, 5vw, 56px); font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.plan-card--dark .plan-price__billing { font-size: 15px; color: rgba(255,255,255,0.55); }
.plan-card--light .plan-price__billing { font-size: 15px; color: var(--color-grey); }
.plan-card--dark .plan-foot { display: flex; flex-direction: column; gap: 1.5rem; }
.plan-card--dark .btn { align-self: flex-start; }
.plan-light__main { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
.plan-delivery { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--color-stroke); padding-top: 1.25rem; font-size: 14px; margin-top: 1.5rem; }
.plan-delivery .label { color: var(--color-grey); }
.plan-delivery .value { font-weight: 500; color: #000; }
.plan-light__side { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 2rem; }

@media (min-width: 640px) { .plan-features--grid { display: grid; grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .plan-card { padding: 2.5rem; }
  .pricing__grid { grid-template-columns: 1fr 1.6fr; }
  .plan-card--light { grid-template-columns: 1.4fr 1fr; }
  .plan-light__side { align-items: flex-end; text-align: right; }
}

/* ---------------------------------------------------------------------------
   16. FAQ accordion
   --------------------------------------------------------------------------- */
.faq__grid { display: grid; gap: 3rem; }
.faq__head { display: flex; flex-direction: column; gap: 1.5rem; }
.faq__head h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
.faq-list { display: flex; flex-direction: column; border-block: 1px solid var(--color-stroke); }
.faq-item { padding-block: 1.5rem; border-top: 1px solid var(--color-stroke); }
.faq-item:first-child { border-top: none; }
.faq-item summary { display: flex; cursor: pointer; list-style: none; align-items: flex-start; justify-content: space-between; gap: 1.5rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q { font-size: clamp(18px, 2vw, 24px); font-weight: 500; line-height: 1.35; color: #000; }
.faq-toggle {
  margin-top: 0.25rem; display: grid; width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  place-items: center; border-radius: 9999px; border: 1px solid var(--color-stroke); color: #000;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.faq-item[open] .faq-toggle { border-color: #000; background: #000; color: #fff; }
.faq-toggle .icon-minus { display: none; }
.faq-item[open] .faq-toggle .icon-plus { display: none; }
.faq-item[open] .faq-toggle .icon-minus { display: block; }
.faq-item__a { padding-top: 1rem; font-size: 16px; line-height: 1.55; color: var(--color-grey); }

@media (min-width: 1024px) { .faq__grid { grid-template-columns: 1fr 1.4fr; gap: 5rem; } }

/* ---------------------------------------------------------------------------
   17. Process (sticky scroll)
   --------------------------------------------------------------------------- */
.process { background: var(--color-soft-white); }
.process__inner { position: relative; }
.process__eyebrow { position: sticky; top: 6rem; z-index: 10; display: flex; justify-content: center; padding-top: 4rem; padding-bottom: 0.5rem; }
.process__steps { display: flex; flex-direction: column; }
.process-step { display: flex; align-items: center; justify-content: center; min-height: 80vh; }
.process-step:last-child { padding-bottom: 6rem; }
.process-step p {
  text-align: center; font-size: clamp(56px, 12vw, 200px); font-weight: 500;
  line-height: 0.95; letter-spacing: -0.02em; color: #000;
  transform: translateY(3rem); opacity: 0; transition: transform 0.7s ease-out, opacity 0.7s ease-out;
}
.process-step.is-visible p { transform: translateY(0); opacity: 1; }
.process-step .num { color: var(--color-primary); }
@media (min-width: 1024px) { .process__eyebrow { padding-top: 6rem; } }

/* ---------------------------------------------------------------------------
   18. Blog preview / list
   --------------------------------------------------------------------------- */
.blog__head { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 3.5rem; }
.blog__head-text { display: flex; flex-direction: column; gap: 1.5rem; max-width: 42rem; }
.blog__head-text h2 { font-size: clamp(32px, 4.5vw, 60px); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
.blog__head-cta { display: none; }
.blog-grid { display: grid; gap: 1.5rem; }
.blog-card { display: flex; flex-direction: column; gap: 1.25rem; }
.blog-card__media { position: relative; overflow: hidden; border-radius: 1.5rem; background: var(--color-stroke); aspect-ratio: 16 / 13; }
.blog-card--lg .blog-card__media { aspect-ratio: 16 / 11; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { display: flex; flex-direction: column; gap: 1rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 14px; color: var(--color-grey); }
.blog-meta .dot { width: 0.25rem; height: 0.25rem; border-radius: 9999px; background: rgba(98,98,98,0.4); }
.blog-card__title { font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; line-height: 1.2; color: #000; }
.blog-card__more { display: flex; align-items: center; gap: 0.5rem; font-size: 14px; font-weight: 600; color: #000; }
.blog__foot-cta { margin-top: 2.5rem; display: flex; justify-content: center; }

@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .blog__head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 4rem; }
  .blog__head-cta { display: block; }
  .blog__foot-cta { display: none; }
}

/* ---------------------------------------------------------------------------
   19. Generic page hero (inner pages)
   --------------------------------------------------------------------------- */
.page-hero { padding-top: 4rem; padding-bottom: 2rem; }
.page-hero__inner { display: flex; flex-direction: column; gap: 1.5rem; }
.page-hero__title { font-size: clamp(44px, 7vw, 120px); font-weight: 500; line-height: 1; letter-spacing: -0.02em; color: #000; }
.page-hero__lead { max-width: 40rem; font-size: clamp(18px, 2vw, 24px); line-height: 1.4; color: var(--color-grey); }
@media (min-width: 1024px) { .page-hero { padding-top: 6rem; padding-bottom: 3rem; } }

/* Utility helpers reused by inner pages */
.muted-text { color: var(--color-grey); }
.prose { max-width: 46rem; }
.prose h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; line-height: 1.2; margin: 2rem 0 0.75rem; }
.prose p { font-size: 18px; line-height: 1.6; color: var(--color-dark-grey); margin-bottom: 1.25rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose li { font-size: 18px; line-height: 1.55; color: var(--color-dark-grey); }
.prose blockquote { border-left: 3px solid var(--color-primary); padding-left: 1.25rem; margin: 1.5rem 0; font-size: 22px; line-height: 1.4; color: #000; }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose strong { font-weight: 600; color: #000; }
.prose img { border-radius: 1rem; margin: 1.5rem 0; }
