/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --red:        #C0392B;
  --red-dark:   #a93226;
  --black:      #111111;
  --grey-dark:  #333333;
  --grey-mid:   #666666;
  --grey-light: #999999;
  --bg-white:   #FFFFFF;
  --bg-light:   #F9F9F9;
  --bg-dark:    #111111;
  --border:     #EEEEEE;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --radius:   8px;
  --shadow:   0 2px 16px rgba(0,0,0,.08);
  --shadow-md:0 4px 24px rgba(0,0,0,.12);

  --section-pad: 80px 24px;
  --max-width: 1160px;
}

/* ── BASE ── */
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--bg-white);
  padding-top: 96px;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--red);
}

.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 12px;
}
.section-title em {
  color: var(--red);
  font-style: normal;
}

.section-subtitle {
  font-size: 15px;
  color: var(--grey-mid);
  max-width: 560px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 5px;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grey-dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.btn-ghost .arrow { color: var(--red); }
.btn-ghost:hover { color: var(--black); }

/* Offset anchor scroll targets below fixed nav */
[id] {
  scroll-margin-top: 100px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 96px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo img { height: 84px; width: auto; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--black); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__lang { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--grey-light); }
.nav__lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 12px; font-weight: 600; color: var(--grey-light);
  padding: 2px 4px; transition: color 0.2s;
}
.nav__lang-btn--active { color: var(--black); }
.nav__lang-btn:hover { color: var(--black); }

.nav__cta { font-size: 13px; padding: 9px 20px; }

/* Burger — hidden on desktop */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-white);
}
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.nav__mobile a { font-size: 18px; font-weight: 600; color: var(--black); }
.nav__mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
}

/* ── HERO ── */
.hero {
  background: var(--bg-white);
  overflow: hidden;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  position: relative;
  z-index: 0;
}

/* Ghost logo watermark — sits behind all hero content */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 832px; height: 425px;
  background: url('../images/logo.png') center / contain no-repeat;
  filter: brightness(0);
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero__h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 20px;
}
.hero__h1 em { color: var(--red); font-style: normal; }

.hero__sub {
  font-size: 16px;
  color: var(--grey-mid);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Proof strip */
.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.proof__item {
  display: flex;
  flex-direction: column;
  padding-right: 24px;
}
.proof__item + .proof__item {
  padding-left: 24px;
  padding-right: 24px;
  border-left: 1px solid var(--border);
}
.proof__item:last-child { padding-right: 0; }

.proof__value {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.proof__value--sm { font-size: 17px; padding-top: 4px; }
.proof__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.proof__sub {
  font-size: 10px;
  color: var(--grey-light);
  margin-top: 2px;
  line-height: 1.4;
}

/* Hero visual */
.hero__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 6/5;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual::before {
  content: '';
  position: absolute; inset: 0; left: -1px;
  background: linear-gradient(to right, var(--bg-white) 0%, transparent 20%);
  z-index: 1;
}

.hero__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--bg-white);
  border-left: 3px solid var(--red);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  line-height: 1.5;
  color: var(--black);
  z-index: 2;
}
.hero__badge strong { color: var(--red); }

@media (max-width: 1024px) {
  .hero__inner { gap: 32px; }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
  }
  .hero__visual { aspect-ratio: 16/9; }
  .hero__proof { grid-template-columns: 1fr 1fr; }
  .proof__item:nth-child(3) {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 16px 0 0;
    margin-top: 8px;
  }
}

/* ── SERVICES ── */
.services {
  background: var(--bg-light);
  padding: var(--section-pad);
  min-height: calc(100vh - 100px);
  scroll-snap-align: start;
}

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

.svc-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border-top: 3px solid var(--red);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.svc-card__icon { font-size: 24px; margin-bottom: 12px; }

.svc-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.svc-card__desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.55;
}

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

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

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

/* ── OMNISCIENT ── */
.omni {
  background: var(--bg-dark);
  padding: var(--section-pad);
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

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

.omni__tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.omni__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.omni__sub {
  font-size: 17px;
  color: #aaa;
  margin-bottom: 28px;
  line-height: 1.5;
}

.omni__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.omni__list li {
  font-size: 14px;
  color: #ccc;
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.omni__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.omni__cta { display: inline-block; }

/* Chat mockup */
.omni__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.omni__chat {
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}

.omni__chat-header {
  background: #222;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #2a2a2a;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.omni__chat-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.omni__chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.omni__msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.omni__msg--bot {
  background: #2a2a2a;
  color: #ddd;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.omni__msg--user {
  background: var(--red);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

@media (max-width: 768px) {
  .omni__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .omni__chat { max-width: 100%; }
}

/* ── PROCESSO ── */
.processo {
  background: var(--bg-white);
  padding: var(--section-pad);
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

/* Decorative flow/process image — floats in upper-right interior */
.processo::after {
  content: '';
  position: absolute;
  top: 130px; right: 200px;
  width: 480px; height: 300px;
  background: url('../images/digital-transformation.jpg') center / cover no-repeat;
  border-radius: 10px;
  opacity: 0.28;
  pointer-events: none;
}

@media (max-width: 768px) {
  .processo::after { display: none; }
}

.processo__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.processo__steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.passo {
  padding-top: 60px;
  padding-right: 32px;
  position: relative;
}
.passo:last-child { padding-right: 0; }

.passo__marker {
  position: absolute;
  top: 14px; left: 0;
  width: 22px; height: 22px;
  background: var(--bg-white);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.passo__marker::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.passo__num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.passo__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.25;
}

.passo__desc {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .processo__steps { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .processo__steps::before { display: none; }
}
@media (max-width: 768px) {
  .processo__steps { grid-template-columns: 1fr; gap: 32px; }
  .passo { padding-top: 0; padding-right: 0; }
  .passo__marker { display: none; }
}

/* ── SECTORS ── */
.sectors {
  background: var(--bg-light);
  padding: 36px 24px;
  min-height: calc(100vh - 100px);
  scroll-snap-align: start;
}

.sectors .section-subtitle { margin-bottom: 28px; }

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

.sector-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.sector-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.sector-card__img {
  height: 190px;
  overflow: hidden;
  background: var(--bg-light);
}
.sector-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s;
}
.sector-card:hover .sector-card__img img { transform: scale(1.04); }

/* First card: zoomed out so the subject fits fully in frame */
.sectors__grid .sector-card:nth-child(1) .sector-card__img img {
  transform: scale(0.85);
}
.sectors__grid .sector-card:nth-child(1):hover .sector-card__img img {
  transform: scale(0.89);
}

/* Fourth card: contain so AI text + full head silhouette are never cropped */
.sectors__grid .sector-card:nth-child(4) .sector-card__img img {
  object-fit: contain;
  object-position: 30% center;
  transform: none;
}
.sectors__grid .sector-card:nth-child(4):hover .sector-card__img img {
  object-fit: contain;
  object-position: 30% center;
  transform: scale(1.04);
}

.sector-card__body { padding: 14px 18px; }

.sector-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.sector-card__result {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.sector-card__desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sectors__grid { grid-template-columns: 1fr; }
  .sector-card__img { height: 140px; }
}

/* ── RESULTS ── */
.results {
  /* People photo with heavy dark overlay — keeps numbers crisp */
  background:
    linear-gradient(rgba(17,17,17,0.87), rgba(17,17,17,0.87)),
    url('../images/business-partnership.jpg') center / cover no-repeat;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

/* Ghost logo watermark — centered, large, very subtle */
.results::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1040px; height: 532px;
  background: url('../images/logo.png') center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.035;
  pointer-events: none;
}

.results__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.results__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
.results__item + .results__item {
  border-left: 1px solid #222;
}

.results__num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.results__label {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.results__ctx {
  font-size: 11px;
  color: #555;
}

@media (max-width: 768px) {
  .results__grid { grid-template-columns: 1fr; gap: 32px; }
  .results__item { padding: 0; }
  .results__item + .results__item { border-left: none; border-top: 1px solid #222; padding-top: 32px; }
}

/* ── ABOUT ── */
.about {
  background: var(--bg-white);
  padding: var(--section-pad);
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

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

.about__body {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.about__values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__values li {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.about__values li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.about__values strong { color: var(--black); }

.about__visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 7/6;
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__visual { order: -1; aspect-ratio: 16/9; }
}

/* ── CONTACT ── */
.contact {
  background: var(--bg-light);
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.contact > .container {
  flex: 1;
  padding: 36px 24px 20px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.contact__sub {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form__field { display: flex; flex-direction: column; gap: 6px; }

.form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.form__field input,
.form__field textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--black);
  background: var(--bg-white);
  border: 1.5px solid #C0C0C0;
  border-radius: 5px;
  padding: 10px 14px;
  transition: border-color 0.2s;
  resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form__submit { align-self: flex-start; cursor: pointer; border: none; }
.form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form__success {
  font-size: 15px;
  color: var(--black);
  padding: 20px;
  background: var(--bg-light);
  border-left: 3px solid var(--red);
  border-radius: 0 5px 5px 0;
}

/* Contact info */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 36px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-item__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.info-item div { display: flex; flex-direction: column; gap: 2px; }
.info-item strong { font-size: 13px; color: var(--black); font-weight: 700; }
.info-item span, .info-item a { font-size: 14px; color: var(--grey-mid); }
.info-item a:hover { color: var(--red); }

/* Meeting photo card below contact info */
.contact__visual {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 213px;
  box-shadow: var(--shadow-md);
}
.contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .contact__info { padding-top: 0; }
  .contact__visual { height: 140px; }
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  padding: 32px 24px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__top {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}

.footer__bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 14px;
}

.footer__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: auto;
}
.footer__links a {
  font-size: 12px;
  color: #999;
  transition: color 0.2s;
}
.footer__links a:hover { color: #ddd; }

.footer__copy { font-size: 12px; color: #777; }

@media (max-width: 768px) {
  .footer__top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__links { margin-left: 0; gap: 12px; }
}

/* ── SERVICE CARDS — clickable ── */
.svc-card { cursor: pointer; }

.svc-card__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.3px;
  transition: gap 0.2s;
}

/* ── SERVICE MODAL ── */
.svc-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.svc-modal.open {
  opacity: 1;
  pointer-events: all;
}

.svc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.svc-modal__card {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border-radius: 12px;
  border-top: 4px solid var(--red);
  padding: 40px 40px 36px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.25s ease;
}
.svc-modal.open .svc-modal__card {
  transform: scale(1) translateY(0);
}

.svc-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.svc-modal__close:hover { background: var(--bg-light); color: var(--black); }

.svc-modal__icon { font-size: 38px; margin-bottom: 14px; }

.svc-modal__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  padding-right: 24px;
}

.svc-modal__desc {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.72;
  margin-bottom: 0;
}

.svc-modal__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.svc-modal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.svc-modal__list li {
  font-size: 14px;
  color: var(--grey-dark);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.svc-modal__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.svc-modal__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--grey-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 5px;
  border: 1.5px solid #C8C8C8;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--grey-mid); color: var(--black); }

@media (max-width: 480px) {
  .svc-modal__card { padding: 32px 24px 28px; }
  .svc-modal__title { font-size: 19px; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
