/* Rincecrete Scientific — brand from client logo */
:root {
  --color-orange: #F3921F;
  --color-black: #000000;
  --color-blue: #004A99;
  --color-grey: #A7A9AC;
  --color-white: #ffffff;
  --color-light: #f8f9fb;
  --color-dark: #0a1628;
  --font-heading: "Barlow Condensed", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --color-text: #1c1c1c;
  --color-text-muted: #5c6570;
  --color-border: #e4e7ec;
  --color-surface: #f4f5f7;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 74, 153, 0.1);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
  --radius: 2px;
  --section-space: clamp(4.5rem, 7vw, 6.25rem);
  --topbar-height: 40px;
  --nav-height: 72px;
  --header-height: calc(var(--topbar-height) + var(--nav-height));
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
}

.section-block {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-block--compact {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bg-light-section {
  background: var(--color-surface);
}

/* Top bar */
.site-header {
  z-index: 1030;
}

.top-bar {
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 0.8125rem;
  border-bottom: 2px solid var(--color-orange);
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  min-height: var(--topbar-height);
  padding: 0.45rem 0;
}

.top-bar-contact,
.top-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.top-bar-actions {
  flex-shrink: 0;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  line-height: 1.3;
  padding: 0.15rem 0;
  transition: color 0.2s;
}

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

.top-bar-link i {
  font-size: 1rem;
  flex-shrink: 0;
}

.top-bar-link--social i {
  font-size: 1.05rem;
}

/* Tablet/mobile: hide second phone, social row, tighten email */
@media (max-width: 991.98px) {
  .top-bar-link--optional {
    display: none;
  }

  .top-bar-actions {
    display: none;
  }

  .top-bar-email-text {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Mobile: centered contact row */
@media (max-width: 767.98px) {
  :root {
    --topbar-height: 40px;
  }

  .top-bar-inner {
    justify-content: center;
    padding: 0.45rem 0;
    min-height: 0;
  }

  .top-bar-contact {
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .top-bar-email-text {
    max-width: min(220px, 55vw);
  }
}

/* Small mobile: icon-only social, compact email */
@media (max-width: 575.98px) {
  :root {
    --topbar-height: 52px;
    --nav-height: 68px;
  }

  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-inner {
    padding: 0.4rem 0;
  }

  .top-bar-link--social span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .top-bar-link--social {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .top-bar-link--email .top-bar-email-text {
    display: none;
  }

  .top-bar-link--email::after {
    content: "Email";
    font-size: 0.75rem;
  }
}

@media (max-width: 399.98px) {
  .top-bar-contact {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }

  .top-bar-link span:not(.top-bar-email-text) {
    font-size: 0.7rem;
  }
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4,
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-label {
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  color: var(--color-blue);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-intro {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* Navbar */
.navbar-rincecrete {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 0.65rem 0;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.navbar-rincecrete.scrolled,
.site-header.scrolled .navbar-rincecrete {
  padding: 0.4rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar-rincecrete .navbar-brand img {
  height: 52px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.navbar-rincecrete.scrolled .navbar-brand img {
  height: 48px;
}

.navbar-rincecrete .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-black);
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-rincecrete .nav-link:hover,
.navbar-rincecrete .nav-link.active {
  color: var(--color-orange);
}

.navbar-rincecrete .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--color-orange);
}

.btn-primary-rin {
  background: var(--color-orange);
  border: 2px solid var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}

.btn-primary-rin:hover {
  background: #d97d10;
  border-color: #d97d10;
  color: var(--color-white);
}

.btn-outline-rin {
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  background: transparent;
}

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

.btn-outline-light-rin {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  background: transparent;
}

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

/* Hero — mobile: image on top; tablet/desktop: true 50/50 split */
.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
}

.hero-panel {
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.hero-panel-inner {
  width: 100%;
  max-width: none;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: clamp(1.25rem, 5vw, 2rem);
  padding-right: clamp(1.25rem, 5vw, 2rem);
}

.hero-media {
  background-size: cover;
  background-position: center;
  order: -1;
  min-height: 42vh;
  min-width: 0;
}

.hero-content {
  color: var(--color-white);
  max-width: none;
}

.hero-content h1,
.hero-content p,
.hero-content .lead {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr 1fr;
    min-height: max(520px, calc(85vh - var(--header-height)));
  }

  .hero-media {
    order: 0;
    min-height: 280px;
  }

  .hero-panel-inner {
    box-sizing: border-box;
    max-width: min(36rem, calc(50vw - 3rem));
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    padding-left: clamp(1.25rem, 4vw, 1.75rem);
    padding-right: clamp(1.25rem, 3vw, 2rem);
  }

  .hero-content {
    max-width: 100%;
  }
}

/* Align hero copy with site container — only while it still fits in the left 50% column */
@media (min-width: 768px) and (max-width: 1559.98px) {
  .hero-panel-inner {
    padding-left: max(
      clamp(1.25rem, 4vw, 1.75rem),
      min(
        calc((100vw - 1320px) / 2 + 0.75rem),
        calc(50vw - min(36rem, calc(50vw - 3rem)) - 2rem)
      )
    );
  }
}

@media (min-width: 1200px) and (max-width: 1559.98px) {
  .hero-panel-inner {
    max-width: min(47rem, calc(50vw - 3rem));
    padding-left: max(
      clamp(1.25rem, 4vw, 1.75rem),
      min(
        calc((100vw - 1320px) / 2 + 0.75rem),
        calc(50vw - min(47rem, calc(50vw - 3rem)) - 2rem)
      )
    );
  }
}

/* Ultra-wide: keep full block inside left 50% — never use container-offset padding here */
@media (min-width: 1560px) {
  .hero-panel-inner {
    max-width: min(47rem, 50vw);
    padding-left: clamp(2.5rem, 5vw, 5rem);
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-headline {
    font-size: clamp(2.25rem, 2.5vw, 3.15rem);
  }
}

.hero-tagline {
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}

.hero-headline {
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-accent-line {
  width: 48px;
  height: 3px;
  background: var(--color-orange);
  margin: 0 0 1.25rem;
}

.hero-content .lead {
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
  opacity: 0.92;
}

/* Pillar cards */
.pillar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: box-shadow 0.25s;
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  color: var(--color-blue);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.98rem;
}

.bg-blue-section {
  background: var(--color-blue);
  color: var(--color-white);
}

.bg-blue-section .section-title {
  color: var(--color-white);
}

/* Who we are */
.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border-left: 4px solid var(--color-orange);
  padding: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-blue);
}

.about-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--color-blue);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service cards */
.service-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow 0.25s;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-card .card-img-top {
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.03);
}

.service-card .card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  border-top: none;
  position: relative;
}

.service-card .card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 3px;
  background: var(--color-orange);
}

.service-card-link {
  cursor: pointer;
}

.service-card-link:hover .service-card-cta {
  color: var(--color-orange);
}

.service-card-title {
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-weight: 700;
}

.service-card-cta {
  color: var(--color-blue);
  margin-top: 0.75rem;
  transition: color 0.2s;
}

/* Individual service page hero */
.service-page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 2.5rem 0 3rem;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 74, 153, 0.9);
}

.service-page-hero .container {
  position: relative;
  z-index: 1;
}

.service-page-hero h1,
.service-page-hero .lead {
  color: var(--color-white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.service-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.service-breadcrumb .breadcrumb-item a:hover {
  color: var(--color-orange);
}

.service-breadcrumb .breadcrumb-item.active {
  color: var(--color-orange);
}

.service-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.related-services-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.related-services-box a {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 600;
}

.related-services-box a:hover {
  color: var(--color-orange);
}

.table-rin-header {
  background: var(--color-blue);
  color: var(--color-white);
}

.service-detail-section {
  scroll-margin-top: calc(var(--header-height) + 20px);
  padding: 4rem 0;
}

.service-detail-section:nth-child(even) {
  background: var(--color-surface);
}

.benefit-list li {
  padding: 0.35rem 0;
  padding-left: 0.25rem;
}

.benefit-list li::marker {
  color: var(--color-orange);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-blue);
}

.sample-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--color-grey);
  color: var(--color-white);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  vertical-align: middle;
}

/* CTA band — solid brand blue, no decorative gradient */
.cta-band {
  background: var(--color-blue);
  color: var(--color-white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-top: 4px solid var(--color-orange);
}

.cta-band .section-title,
.cta-band h2,
.cta-band h3 {
  color: var(--color-white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band a:not(.btn) {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 600;
}

.cta-band a:not(.btn):hover {
  color: #ffc266;
}

/* Page header (inner pages) */
.page-header {
  background: var(--color-blue);
  color: var(--color-white);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-orange);
}

.page-header h1 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.page-header .section-label {
  color: var(--color-orange);
}

.page-header .lead {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Industries grid */
.industry-item {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-bottom: 3px solid var(--color-orange);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.industry-item h5 {
  color: var(--color-blue);
  font-size: 1rem;
}

.industry-item ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #444;
}

/* FAQ */
.accordion-button:not(.collapsed) {
  background: rgba(243, 146, 31, 0.1);
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(243, 146, 31, 0.25);
}

/* Contact */
.contact-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-orange);
  padding: 1.75rem;
  border-radius: var(--radius);
}

.contact-info-card a {
  color: var(--color-blue);
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--color-orange);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border-bottom: 4px solid var(--color-blue);
}

/* Blog */
.blog-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow 0.25s;
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card .card-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-blue);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-category {
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border-bottom: 4px solid var(--color-orange);
}

.article-body h2 {
  color: var(--color-blue);
  font-size: 1.5rem;
  margin-top: 2rem;
}

/* Mission / vision cards */
.mv-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-orange);
  box-shadow: none;
}

.mv-card h4 {
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.timeline-strip {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.timeline-strip strong {
  color: var(--color-orange);
}

/* Footer */
.site-footer {
  background: #0c1219;
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
  border-top: 4px solid var(--color-orange);
}

.footer-heading,
.site-footer h5 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 32ch;
}

.footer-links a,
.footer-contact a,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.site-footer a:hover {
  color: var(--color-orange);
}

.footer-social {
  display: flex;
  gap: 1rem;
  font-size: 1.35rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
  max-height: 64px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 2.5rem 0 1.25rem;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Equipment highlight */
.equipment-highlight {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-blue);
}

.equipment-highlight li {
  margin-bottom: 0.5rem;
}

/* Form validation */
.was-validated .form-control:invalid {
  border-color: #dc3545;
}

.form-control:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 0.2rem rgba(243, 146, 31, 0.25);
}

/* Toast */
.toast-rin {
  background: var(--color-blue);
  color: var(--color-white);
}

.toast-rin .btn-close {
  filter: invert(1);
}

/* Trust bar — credibility strip below hero (Calderys-style factual bar) */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 1.75rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

@media (min-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid var(--color-border);
}

.trust-item:last-child {
  border-right: none;
}

@media (max-width: 767.98px) {
  .trust-item:nth-child(2) {
    border-right: none;
  }
  .trust-item {
    border-right: none;
    padding-bottom: 0.5rem;
  }
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.1;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

/* Editorial intro block */
.prose-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  border-left: none;
  padding: 0 1rem;
}

.prose-intro::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-orange);
  margin: 0 auto 1.5rem;
}

/* About split layout */
.split-media {
  position: relative;
}

.split-media::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 40%;
  height: 40%;
  border: 3px solid var(--color-orange);
  z-index: -1;
}

.about-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-wrap img {
  display: block;
}

/* Value chips row */
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.value-chip i {
  color: var(--color-orange);
}

/* Testimonial premium */
.testimonial-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--color-orange);
  box-shadow: none;
  min-height: auto;
}

.testimonial-card .quote-icon {
  color: var(--color-orange);
  font-size: 2.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-card p:first-of-type {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--color-blue);
}

/* Highlight chip legacy → value-chip alias */
.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0;
  box-shadow: none;
  border-left: none;
}

.highlight-chip i {
  color: var(--color-orange);
}

/* Service card title sizing */
.service-card-title {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-card-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Page header + hero reveal */
.page-header .reveal,
.hero-section .reveal {
  opacity: 1;
  transform: none;
}

.page-header h1,
.page-header .lead,
.service-page-hero h1,
.service-page-hero .lead {
  color: var(--color-white);
}

.service-page-hero h1 {
  text-transform: uppercase;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent, #f0a500);
}

.hero-caption {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
