/* Ildan Expert — Oxygen Clean · Light · Elite Trust */

:root {
  --white: #ffffff;
  --chalk: #fdfdfd;
  --ice: #e3f2fd;
  --trust: #0056b3;
  --trust-hover: #004494;
  --silver: #c0c0c0;
  --silver-soft: rgba(192, 192, 192, 0.45);
  --text: #1a2b3d;
  --text-muted: #5c6b7a;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 24px rgba(0, 86, 179, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 40, 90, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 40, 90, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

[id] {
  scroll-margin-top: 88px;
}

#контакт {
  scroll-margin-top: 24px;
}

a {
  color: var(--trust);
}

:focus-visible {
  outline: 2px solid var(--trust);
  outline-offset: 3px;
}

/* Fine linen / micro-fiber subtle texture */
.texture-base {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--chalk);
  background-image:
    radial-gradient(ellipse 120% 80% at 20% 10%, rgba(227, 242, 253, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 80% 90%, rgba(227, 242, 253, 0.22) 0%, transparent 45%),
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 86, 179, 0.018) 1px, rgba(0, 86, 179, 0.018) 2px),
    repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(0, 86, 179, 0.014) 1px, rgba(0, 86, 179, 0.014) 2px),
    linear-gradient(180deg, var(--white) 0%, var(--chalk) 50%, var(--white) 100%);
  background-size: auto, auto, 3px 3px, 3px 3px, auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192, 192, 192, 0.35);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo:hover {
  text-decoration: none;
}

.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--trust), #1e7fd4);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 86, 179, 0.22);
}

.logo__text {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.logo__text em {
  font-style: normal;
  color: var(--trust);
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--trust);
  transition: width 0.35s var(--ease);
}

.nav a:hover {
  color: var(--trust);
  text-decoration: none;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--trust);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 86, 179, 0.28);
}

.btn--primary:hover {
  background: var(--trust-hover);
  box-shadow: 0 10px 32px rgba(0, 86, 179, 0.35);
  color: var(--white);
}

.btn--lg {
  padding: 0.95rem 2rem;
  font-size: 0.75rem;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.65);
  color: var(--trust);
  border: 2px solid rgba(0, 86, 179, 0.2);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  border-color: var(--trust);
  background: var(--white);
  color: var(--trust);
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

/* ========== HERO — прост, модерен: текст върху снимка ========== */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding: calc(4.5rem + 24px) 0 3.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 22, 38, 0.88) 0%,
    rgba(10, 22, 38, 0.55) 42%,
    rgba(10, 22, 38, 0.25) 72%,
    rgba(10, 22, 38, 0.12) 100%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.15rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 1.15rem;
  max-width: 14ch;
  font-style: normal;
}

.hero__title-accent {
  font-style: italic;
  font-weight: 500;
  color: #b8d9ff;
}

.hero__subtitle {
  margin: 0 0 1.85rem;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn--hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

@media (max-width: 640px) {
  .hero {
    min-height: min(100vh - 56px, 640px);
    padding-top: calc(4rem + 20px);
    align-items: flex-end;
    padding-bottom: 2.5rem;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 22, 38, 0.45) 0%, rgba(10, 22, 38, 0.82) 55%, rgba(10, 22, 38, 0.9) 100%);
  }

  .hero__title {
    max-width: none;
  }

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

  .hero__actions .btn {
    justify-content: center;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  position: relative;
}

/* Чердуване без да се бие със собствените фонове на .process / .mosaic */
.section:nth-of-type(even):not(.mosaic):not(.process) {
  background: linear-gradient(180deg, transparent 0%, rgba(227, 242, 253, 0.35) 40%, rgba(227, 242, 253, 0.2) 100%);
}

.section__head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--trust);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.section__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section__head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 520px;
}

.section__lead--narrow {
  max-width: 38ch;
}

.section-ribbon {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--trust);
  background: linear-gradient(135deg, var(--ice) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(0, 86, 179, 0.1);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.section-ribbon--dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--trust) 0%, #003d82 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ========== PROCESS — чист ред след hero ========== */
.process {
  position: relative;
  z-index: 1;
  margin-top: -2.5rem;
  padding-top: calc(clamp(4rem, 9vw, 6.5rem) + 2.5rem);
  padding-bottom: clamp(4rem, 9vw, 6.5rem);
  background: var(--chalk);
  border-top: 1px solid rgba(0, 86, 179, 0.06);
  box-shadow: 0 -20px 48px rgba(10, 22, 38, 0.06);
}

.process__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.process__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}

.process__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.process__heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.85rem;
}

.process__sub {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-muted);
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
  padding: 1.35rem 1.15rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(0, 86, 179, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  border-color: rgba(0, 86, 179, 0.18);
  box-shadow: var(--shadow-md);
}

.process-step__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(0, 86, 179, 0.22);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}

.process-step__text {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .process {
    margin-top: -1.25rem;
    padding-top: calc(clamp(3.5rem, 8vw, 5rem) + 1.25rem);
  }

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

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

  .process__intro {
    margin-bottom: 2rem;
  }
}

/* ========== MOSAIC (материали) ========== */
.mosaic {
  background:
    linear-gradient(165deg, rgba(227, 242, 253, 0.55) 0%, rgba(255, 255, 255, 0.97) 42%, var(--white) 100%);
}

.mosaic .section__title {
  color: var(--text);
}

.mosaic .section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--trust), var(--ice));
}

.mosaic__layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.mosaic__orbit-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.25rem 0;
}

.orbit-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--silver-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.orbit-pill:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.orbit-pill--lg {
  font-size: 0.78rem;
  padding: 0.5rem 1.15rem;
  transform: rotate(-2deg);
}

.orbit-pill--md {
  transform: rotate(1.5deg);
}

.orbit-pill--accent {
  background: var(--trust);
  color: var(--white);
  border-color: transparent;
  transform: rotate(-1deg);
}

.mosaic__collage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: min(380px, 52vw);
  position: relative;
  padding: 0.35rem;
}

.mosaic__tile {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  position: relative;
}

.mosaic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.mosaic__tile:hover img {
  transform: scale(1.05);
}

.mosaic__tile--1 {
  grid-row: 1 / -1;
  grid-column: 1;
}

.mosaic__tile--2 {
  grid-row: 1;
  grid-column: 2;
}

.mosaic__tile--3 {
  grid-row: 2;
  grid-column: 2;
}

.mosaic__badge {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem 0.7rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 86, 179, 0.1);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mosaic__badge-k {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--trust);
  letter-spacing: 0.04em;
}

.mosaic__badge-v {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mosaic__zones {
  max-width: 1180px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  padding: 1.35rem 1.5rem 1.4rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--ice) 100%);
  border: 1px solid rgba(0, 86, 179, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem 2.5rem;
}

.mosaic__zones-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--trust);
  min-width: 10rem;
}

.mosaic__zone-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.mosaic__zone-list li {
  position: relative;
  padding-left: 1rem;
}

.mosaic__zone-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--trust);
  opacity: 0.5;
}

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

  .mosaic__collage {
    min-height: 300px;
    order: -1;
  }

  .section__head--left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .mosaic .section__title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .mosaic__orbit-cloud {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .mosaic__collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .mosaic__tile--1,
  .mosaic__tile--2,
  .mosaic__tile--3 {
    grid-row: auto;
    grid-column: auto;
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-pill:hover {
    transform: none;
  }

  .mosaic__tile:hover img {
    transform: none;
  }
}

/* Services — редакционен, луксозен ред */
.services {
  background: linear-gradient(180deg, var(--white) 0%, #f9fafb 55%, #f4f6f8 100%);
}

.services__wrap {
  max-width: 1140px;
  margin: 0 auto;
}

.services__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 3.25rem;
}

.services__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.services__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
}

.services__subline {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
}

.services__editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid rgba(26, 43, 61, 0.08);
}

.service-feature:first-child {
  padding-top: 0;
}

.service-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-feature--reverse .service-feature__visual {
  order: 2;
}

.service-feature--reverse .service-feature__body {
  order: 1;
}

.service-feature__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  background: #e9eef3;
  border-radius: 2px;
  box-shadow: 0 24px 48px rgba(10, 22, 38, 0.08);
}

.service-feature__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  border-radius: inherit;
}

.service-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease), filter 0.5s ease;
  filter: saturate(0.96) contrast(1.02);
}

.service-feature:hover .service-feature__visual img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.04);
}

.service-feature__body {
  position: relative;
  padding: 0.25rem clamp(0, 2vw, 1rem) 0.5rem 0;
}

.service-feature--reverse .service-feature__body {
  padding-left: clamp(0, 2vw, 1rem);
  padding-right: 0;
}

.service-feature__index {
  position: absolute;
  top: -0.35rem;
  right: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 11vw, 6.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: rgba(0, 86, 179, 0.09);
  pointer-events: none;
  user-select: none;
}

.service-feature--reverse .service-feature__index {
  right: auto;
  left: 0;
}

.service-feature__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.9rem;
  padding-bottom: 0.85rem;
}

.service-feature__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--trust), transparent);
  opacity: 0.55;
}

.service-feature__text {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36ch;
}

.service-feature__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--trust);
  transition: color 0.25s ease, gap 0.3s var(--ease);
}

.service-feature__cta::after {
  content: "→";
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}

.service-feature__cta:hover {
  color: var(--trust-hover);
}

.service-feature__cta:hover::after {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .service-feature,
  .service-feature--reverse {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 2rem 0;
  }

  .service-feature--reverse .service-feature__visual,
  .service-feature--reverse .service-feature__body {
    order: unset;
  }

  .service-feature__visual {
    order: -1;
    aspect-ratio: 16 / 10;
    max-height: 280px;
  }

  .service-feature__body {
    padding-left: 0;
    padding-right: 0;
  }

  .service-feature--reverse .service-feature__body {
    padding-left: 0;
  }

  .service-feature__index {
    position: static;
    font-size: 2.75rem;
    margin: 0 0 0.25rem;
    opacity: 0.85;
    color: rgba(0, 86, 179, 0.15);
  }

  .service-feature--reverse .service-feature__index {
    left: auto;
  }

  .service-feature__text {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-feature__visual img,
  .service-feature:hover .service-feature__visual img {
    transform: none;
    transition: none;
  }

  .service-feature__cta:hover::after {
    transform: none;
  }
}

/* Blog — magazine */
.blog__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(192, 192, 192, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card__link:hover {
  text-decoration: none;
}

.blog-card__image-wrap {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--ice);
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05) brightness(1.02);
  transition: filter 0.5s ease, transform 0.6s var(--ease);
}

.blog-card:hover .blog-card__img {
  filter: saturate(0.75) contrast(1.06) brightness(1.03);
  transform: scale(1.03);
}

.blog-card__content {
  padding: 1.35rem 1.5rem 1.5rem;
}

.blog-card__date {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--trust);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.blog-card__more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--trust);
  border-bottom: 2px solid var(--ice);
  padding-bottom: 2px;
}

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

/* Testimonials — award frames */
.testimonials__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.award-quote {
  position: relative;
  margin: 0;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(165deg, var(--white) 0%, var(--chalk) 45%, rgba(227, 242, 253, 0.45) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.award-quote__frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--trust) 0%, var(--silver) 35%, rgba(227, 242, 253, 0.9) 55%, var(--trust) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}

.award-quote__text {
  position: relative;
  z-index: 1;
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}

.award-quote__cite {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.award-quote__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: normal;
  color: var(--trust);
}

@media (max-width: 960px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Footer */
.footer {
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--chalk) 100%);
  border-top: 1px solid rgba(192, 192, 192, 0.45);
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer__brand {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--silver-soft);
}

.footer__logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--trust);
}

.footer__tagline {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.footer__link {
  font-weight: 600;
  color: var(--trust);
  text-decoration: none;
  word-break: break-word;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__link--large {
  font-size: 1.35rem;
  font-weight: 700;
}

.footer__note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 32ch;
}

.footer__bar {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--silver-soft);
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

/* WhatsApp */
.fab-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.fab-wa svg {
  width: 28px;
  height: 28px;
}

.fab-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .blog-card:hover {
    transform: none;
  }
}
