/* ============================================================
   NORMANDIA WEB — V4 Final
   Premium Dark Minimal Landing Page
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Brand */
  --red: #F05454;
  --green: #7FD856;
  --cyan: #0EA5E9;
  --orange: #FFB84D;
  --gray: #3E4A5E;

  /* Neutrals */
  --bg-primary: #09090B;
  --bg-card: #18181B;
  --bg-elevated: #1C1C1F;
  --border: #27272A;
  --border-hover: #3F3F46;

  --text-primary: #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;

  /* Spacing */
  --section-gap: 120px;
  --container-max: 1100px;
  --header-h: 72px;

  /* Typography */
  --font: 'Fira Code', monospace;
  --lh-body: 1.7;
  --lh-title: 1.15;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.5s;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--red), var(--orange), var(--cyan));
  --gradient-text: linear-gradient(135deg, var(--red) 0%, var(--orange) 40%, var(--cyan) 100%);
}

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

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

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: var(--lh-body);
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

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

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.link-arrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  transition: color var(--duration) var(--ease);
}

.link-arrow:hover {
  color: var(--orange);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: var(--lh-title);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-brand);
  color: var(--bg-primary);
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 84, 84, 0.2);
}

.btn--outline {
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 12px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              backdrop-filter var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 28px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
}

.header__link:hover {
  color: var(--text-primary);
}

.header__cta {
  margin-left: 24px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(240, 84, 84, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 20% 60%, rgba(127, 216, 86, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 700;
  line-height: var(--lh-title);
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 56px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero__stat-suffix {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero__stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-gap) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: var(--lh-title);
  margin-bottom: 24px;
}

.about__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.about__quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}

.about__quote p {
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__quote footer {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-gap) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  transition: all var(--duration) var(--ease);
  border-top: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--red);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card__number {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: var(--lh-title);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.service-card__features {
  margin-bottom: 24px;
}

.service-card__features li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
}

.service-card .link-arrow {
  font-size: 12px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--section-gap) 0;
}

.process__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
  cursor: grab;
}

.process__track::-webkit-scrollbar {
  display: none;
}

.process__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.process-card {
  flex: 0 0 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  scroll-snap-align: start;
  transition: border-color var(--duration) var(--ease);
}

.process-card:hover {
  border-color: var(--border-hover);
}

.process-card__number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}

.process-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: var(--lh-title);
}

.process-card__desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.process-card__time {
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   TECH STACK
   ============================================================ */
.stack {
  padding: var(--section-gap) 0;
}

.stack__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stack__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
}

.stack__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.stack__list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}

.stack__list li:last-child {
  border-bottom: none;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(240, 84, 84, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__item {
  padding: 32px 16px;
}

.stats__number {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.stats__suffix {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
}

.stats__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog {
  padding: var(--section-gap) 0;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--duration) var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.blog-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card__date {
  font-size: 11px;
  color: var(--text-muted);
}

.blog-card__link {
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  transition: color var(--duration) var(--ease);
}

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

.blog__more {
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-gap) 0;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--duration) var(--ease);
}

.faq__question:hover {
  color: var(--red);
}

.faq__icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.is-active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq__item.is-active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  font-size: 13px;
  color: var(--text-secondary);
  padding-bottom: 24px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(240, 84, 84, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 30% 50%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: var(--lh-title);
  margin-bottom: 20px;
}

.cta__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__logo img {
  height: 24px;
  width: auto;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer__rfc {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer__heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a,
.footer__links span {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
  color: var(--text-primary);
}

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

.footer__bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__code {
  color: var(--red);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-gap: 96px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stack__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
    --header-h: 64px;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(9, 9, 11, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .header__nav .header__link {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }

  .header__nav .header__link:last-child {
    border-bottom: none;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

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

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

  .hero__stats {
    flex-direction: column;
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --section-gap: 64px;
  }

  body {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .service-card {
    padding: 28px;
  }

  .process-card {
    flex: 0 0 200px;
  }

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

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

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================================
   INNER PAGES — Page Hero
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 60px;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: var(--lh-title);
  margin-bottom: 20px;
}

.page-hero__desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.section-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   SERVICES PAGE — Service Detail Blocks
   ============================================================ */
.service-detail {
  padding: 48px 0;
}

.service-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.service-detail__num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.service-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-detail__subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.service-detail__body > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 700px;
  margin-bottom: 32px;
}

.service-detail__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.service-detail__feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color var(--duration) var(--ease);
}

.service-detail__feature:hover {
  border-color: var(--border-hover);
}

.service-detail__feature h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.service-detail__feature p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
}

.service-detail__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.service-detail__tech span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
}

.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* ============================================================
   PROCESS PAGE — Detailed Steps
   ============================================================ */
.process-detail {
  padding: 40px 0;
}

.process-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.process-detail__num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.process-detail__meta h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.process-detail__time {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
}

.process-detail__body > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 650px;
  margin-bottom: 24px;
}

.process-detail__deliverables {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.process-detail__deliverables h4 {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.process-detail__deliverables ul {
  list-style: none;
}

.process-detail__deliverables li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.process-detail__deliverables li:last-child {
  border-bottom: none;
}

.process-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--red), var(--orange));
  margin: 0 auto;
  border-radius: 1px;
}

/* ============================================================
   GUARANTEE CARDS
   ============================================================ */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.guarantee-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.guarantee-card h3 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.guarantee-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================================
   INNER PAGES RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .service-detail__features {
    grid-template-columns: 1fr;
  }

  .service-detail__header {
    flex-direction: column;
    gap: 12px;
  }

  .service-detail__num {
    font-size: 2rem;
  }

  .process-detail__header {
    flex-direction: column;
    gap: 12px;
  }

  .process-detail__num {
    font-size: 2rem;
  }

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

  .page-hero {
    padding: calc(var(--header-h) + 48px) 0 40px;
  }
}

/* ============================================================
   FAQ PAGE — Grouped Sections
   ============================================================ */
.faq-group {
  margin-bottom: 56px;
}

.faq-group__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
