:root {
  --navy: #0f172a;
  --navy-2: #1e293b;
  --blue: #f8ae49;
  --blue-2: #f8ae49;
  --gold: #f8ae49;
  --ink: #020617;
  --muted: #475569;
  --line: #dbe5ef;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.13), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #eef6fb 100%);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin-top: 14px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.site-header.is-scrolled {
  filter: drop-shadow(0 16px 35px rgba(15, 23, 42, 0.16));
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(219, 229, 239, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-logo {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  border-radius: 999px;
  color: var(--navy-2);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 12px 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(248, 174, 73, 0.14);
  color: var(--blue);
}

.main-nav .nav-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  box-shadow: 0 12px 26px rgba(3, 105, 161, 0.25);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero,
.page-hero {
  padding: 40px 0 40px;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.contact-grid,
.article-layout {
  display: grid;
  align-items: center;
  gap: 14px;
}

.hero-grid,
.page-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.hero-copy h1,
.page-hero h1,
.error-page h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.prose p,
.contact-card li,
.quote-form span {
  color: var(--muted);
}

.hero-copy p,
.page-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  border: 1px solid rgba(248, 174, 73, 0.34);
  border-radius: 12px;
  background: rgba(248, 174, 73, 0.12);
  color: #8a520f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 13px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
}

.btn.light {
  background: #fff;
  color: var(--blue);
}

.hero-showcase {
  position: relative;
  min-height: 580px;
}

.hero-slide {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 36px;
  box-shadow: var(--shadow);
  inset: auto 0 auto auto;
  isolation: isolate;
}

.hero-slide::after,
.page-hero-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.72));
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-slide:hover img {
  transform: scale(1.04);
}

.hero-slide div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.hero-slide span,
.hero-slide strong {
  display: block;
}

.hero-slide strong {
  font-size: 1.45rem;
}

.hero-slide:nth-child(1) {
  top: 0;
  left: 0;
  width: 78%;
}

.hero-slide:nth-child(2) {
  top: 96px;
  right: 0;
  width: 48%;
}

.hero-slide:nth-child(3) {
  bottom: 58px;
  left: 54px;
  width: 47%;
}

.hero-slide:nth-child(4) {
  right: 28px;
  bottom: 0;
  width: 55%;
}

.hero-slide:nth-child(5) {
  top: 344px;
  right: 18%;
  width: 34%;
}



.section-heading {
  max-width: 760px;
  margin: 34px auto 34px;
  text-align: center;
}

.section-heading h2,
.split-section h2,
.cta-band h2,
.contact-card h2,
.quote-form h2,
.side-card h2,
.process-card h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
}

.section-heading h2,
.split-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(219, 229, 239, 0.9);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(3, 105, 161, 0.28);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-content {
  position: relative;
  padding: 22px;
}

.service-card-content span:first-child {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  min-height: 64px;
  margin: 10px 38px 0 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.arrow {
  position: absolute;
  right: 20px;
  bottom: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(248, 174, 73, 0.14);
  color: var(--blue);
  font-size: 1.2rem;
}

.process {
  background: linear-gradient(135deg, var(--navy), #082f49);
}

.process .section-heading h2,
.process .section-heading p {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 28px;
}

.process-card span {
  color: var(--gold);
  font-weight: 900;
}

.process-card h3 {
  margin-top: 16px;
  color: #fff;
}

.process-card p {
  color: #cbd5e1;
}

.split-grid,
.contact-grid,
.article-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.contact-section .contact-grid {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.control-info-grid {
  max-width: 1040px;
}

.split-section p,
.prose p {
  font-size: 1.05rem;
}

.stats-panel,
.contact-card,
.location-card,
.quote-form,
.side-card,
.prose,
.page-hero-grid {
  position: relative;
  border: 1px solid rgba(219, 229, 239, 0.95);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.stats-panel {
  padding: 30px;
}

.stats-panel strong,
.stats-panel span {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.stats-panel span {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 900;
}

.cta-band {
  margin: 56px 0 0;
  color: #fff;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  padding: 38px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-hero-grid {
  overflow: hidden;
  padding: 34px;
}

.page-hero-grid > div,
.page-hero-grid > img {
  position: relative;
  z-index: 2;
}

.page-hero-grid > img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-hero-grid::after {
  background: radial-gradient(circle at 68% 10%, rgba(14, 165, 233, 0.16), transparent 24rem);
  z-index: 0;
}

.prose {
  padding: clamp(24px, 4vw, 44px);
}

.prose h2 {
  margin-top: 32px;
  color: var(--navy);
  font-size: 1.45rem;
}

.prose ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding-left: 20px;
}

.prose li::marker {
  color: var(--blue);
}

.prose strong {
  color: #0a0a0a;
  font-weight: 900;
}

.side-card {
  align-self: start;
  padding: 24px;
}

.side-card a,
.site-footer a {
  display: block;
  color: var(--muted);
  padding: 7px 0;
  transition: color 0.2s ease;
}

.side-card a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.contact-card,
.location-card,
.quote-form {
  padding: 28px;
}

.contact-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.contact-card a {
  color: inherit;
  font-weight: 600;
}

.contact-card li > span:last-child {
  font-weight: 600;
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(248, 174, 73, 0.28);
  border-radius: 12px;
  background: rgba(248, 174, 73, 0.12);
  color: #f8ae49;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.location-card {
  display: grid;
  overflow: hidden;
  padding: 0;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.map-frame {
  overflow: hidden;
  min-height: 100%;
  border: 0;
  border-radius: inherit;
  background: rgba(248, 174, 73, 0.12);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-link {
  width: fit-content;
}

.quote-form {
  display: grid;
  gap: 15px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 13px 15px;
}

.quote-form input:focus,
.quote-form textarea:focus,
.btn:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.38);
  outline-offset: 3px;
}

.quote-form .check {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}

.quote-form .check input {
  width: auto;
  margin-top: 5px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(248, 174, 73, 0.14);
  color: var(--navy);
}

.error-page {
  min-height: 64vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.error-page span {
  color: var(--gold);
  font-size: clamp(4rem, 16vw, 10rem);
  font-weight: 900;
  line-height: 1;
}

.error-page .hero-actions {
  justify-content: center;
}

.site-footer {
  margin-top: 70px;
  background: var(--navy);
  color: #dbeafe;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
  padding: 56px 0;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.05rem;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.socials {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.socials svg {
  width: 21px;
  height: 21px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #000000;
  background: #F8AE49;
  padding: 18px max(18px, calc((100vw - 1180px) / 2));
}

.footer-credit-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fff;
  line-height: 1;
}

.footer-credit-logo img {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-credit-logo:hover img,
.footer-credit-logo:focus-visible img {
  opacity: 0.82;
  transform: translateY(-1px);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);

}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section .contact-card {
    order: 1;
  }

  .contact-section .location-card {
    order: 2;
  }

  .hero-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .hero-slide,
  .hero-slide:nth-child(n) {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .service-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  .nav-shell {
    min-height: 66px;
    padding: 8px 10px 8px 14px;
  }

  .brand img,
  .footer-logo {
    width: 124px;
  }

  .hero,
  .page-hero {
    padding-top: 52px;
  }

  .hero-showcase,
  .service-grid,
  .process-grid,
  .footer-grid,
  .prose ul {
    grid-template-columns: 1fr;
  }

  .hero-slide div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .page-hero-grid,
  .prose,
  .contact-card,
  .location-card,
  .quote-form,
  .side-card,
  .stats-panel,
  .cta-band .container {
    border-radius: 24px;
    padding: 22px;
  }

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Sector-specific redesign: inspection, measurement, compliance. */
:root {
  --control-radius: 12px;
  --panel-radius: 18px;
  --steel: #263241;
  --blueprint: #0b2436;
  --safety: #f59e0b;
  --signal: #f8ae49;
}

body {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 12% 10%, rgba(20, 184, 166, 0.14), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(245, 158, 11, 0.12), transparent 22rem),
    #f6f8fb;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.nav-shell,
.btn,
.main-nav a,
.main-nav .nav-cta,
.quote-form input,
.quote-form textarea,
.socials a,
.menu-toggle {
  border-radius: var(--control-radius);
}

.nav-shell {
  border-color: rgba(38, 50, 65, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(11, 36, 54, 0.09);
}

.main-nav {
  gap: 8px;
}

.main-nav a {
  color: #1f2d3d;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #edf7fb;
  color: #0a0a0a;
}

.main-nav .nav-cta,
.btn.primary {
  background: #f8ae49;
  box-shadow: 0 14px 28px rgba(11, 79, 113, 0.22);
}

.btn.secondary {
  border-color: rgba(38, 50, 65, 0.22);
  background: rgba(255, 255, 255, 0.9);
}



.slider-shell {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 110px));


  background: var(--blueprint);
  box-shadow: 0 28px 70px rgba(11, 36, 54, 0.22);
  isolation: isolate;
}

.slider-shell::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 1.2s ease;
}

.slider-item.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.slider-item img {
  width: 100%;
  height: 100%;
  min-height: min(760px, calc(100vh - 110px));
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
}

.slider-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 20, 32, 0.9) 0%, rgba(5, 20, 32, 0.72) 38%, rgba(5, 20, 32, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 20, 32, 0.42), transparent 42%);
}

.slider-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

}

.slider-content .eyebrow {
  border-color: rgba(245, 158, 11, 0.42);
  background: rgba(245, 158, 11, 0.16);
  color: #ffe7b2;
}

.page-hero .eyebrow,
.split-section .eyebrow {
  border-color: rgba(245, 158, 11, 0.34);
  background: rgba(245, 158, 11, 0.12);
  color: #8a520f;
}

.slider-content h1 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 6.4vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.slider-content h1 em {
  color: #9de7ff;
  font-style: normal;
}

.slider-content p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #d8e8f0;
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.slider-toolbar {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  transform: translateX(-50%);
}

.slider-status,
.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--control-radius);
  background: rgba(8, 24, 38, 0.68);
  color: #fff;
  padding: 10px 12px;
  pointer-events: auto;
  backdrop-filter: blur(16px);
  align-self: center;
}

.slider-status strong {
  display: grid;
  width: 42px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: var(--safety);
  color: #172033;
  line-height: 1;
}

.slider-status span {
  color: #d8e8f0;
  font-size: 0.88rem;
  font-weight: 700;
}

.slider-controls button,
.slider-dots button {
  border: 0;
  cursor: pointer;
}

.slider-controls > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.slider-dots button.is-active {
  background: var(--safety);
}

.assurance-strip {
  margin-top: -1px;
}

.assurance-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(38, 50, 65, 0.14);
  border-radius: 0 0 18px 18px;
  background: rgba(38, 50, 65, 0.16);
}

.assurance-strip div {
  background: rgba(255, 255, 255, 0.86);
  padding: 18px;
  text-align: center;
  border-radius: 12px;
  margin: 10px;
}

.assurance-strip strong,
.assurance-strip span {
  display: block;
}

.assurance-strip strong {
  color: #0a0a0a;
  font-size: 1.35rem;
  line-height: 1;
}

.assurance-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-heading h2,
.split-section h2,
.page-hero h1,
.hero-copy h1 {
  color: #162231;
}

.service-card,
.process-card,
.stats-panel,
.contact-card,
.quote-form,
.side-card,
.prose,
.page-hero-grid {
  border-radius: var(--panel-radius);
}

.service-card {
  position: relative;
  border-color: rgba(38, 50, 65, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 251, 0.92)),
    #fff;
}



.service-card img {
  border-bottom: 1px solid rgba(38, 50, 65, 0.12);
  filter: saturate(0.92) contrast(1.02);
}

.service-card-content span:first-child {
  color: #f8ae49;
}

.service-card h3 {
  color: #172033;
}

.arrow {
  border-radius: 12px;
  background: #0a0a0a;
  color: #f8ae49;
}

.process {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #081826, #12354a);
  background-size: 42px 42px, 42px 42px, auto;
}

.page-hero-grid {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 251, 0.9));
}

.page-hero-grid > img {
  border-radius: 14px;
}

.prose,
.quote-form,
.contact-card,
.location-card,
.side-card,
.stats-panel {
  border-color: rgba(38, 50, 65, 0.14);
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #081826;
  background-size: 38px 38px;
}

@media (max-width: 980px) {
  .slider-shell,
  .slider-item img {
    min-height: 660px;
  }

  .slider-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .assurance-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .slider-shell,
  .slider-item img {
    min-height: 620px;
  }

  .slider-content {
    padding-top: 20px;
  }

  .slider-toolbar {
    bottom: 18px;
  }

  .slider-status {
    display: none;
  }

  .assurance-strip .container {
    grid-template-columns: 1fr;
  }
}

/* Final brand palette: İDA logo gold + black. */
:root {
  --navy: #090909;
  --navy-2: #171717;
  --blue: #f8ae49;
  --blue-2: #f8ae49;
  --gold: #f8ae49;
  --ink: #0a0a0a;
  --line: #e7dccd;
  --bg: #fbf7f0;
  --shadow: 0 24px 70px rgba(10, 10, 10, 0.14);
  --blueprint: #0a0a0a;
  --safety: #f8ae49;
  --signal: #f8ae49;
}

body {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 12% 10%, rgba(248, 174, 73, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(10, 10, 10, 0.08), transparent 24rem),
    #fbf7f0;
}

.site-header.is-scrolled {
  filter: drop-shadow(0 16px 35px rgba(10, 10, 10, 0.18));
}

.nav-shell {
  border-color: rgba(10, 10, 10, 0.14);
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.11);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(248, 174, 73, 0.14);
  color: #0a0a0a;
}

.main-nav a.is-active {
  background: #f8ae49;
  color: #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.1), 0 8px 18px rgba(248, 174, 73, 0.28);
}

.main-nav a.is-active:hover,
.main-nav a.is-active:focus-visible {
  background: #e99d34;
  color: #0a0a0a;
}

.main-nav .nav-cta,
.btn.primary {
  background: #f8ae49;
  color: #0a0a0a;
  box-shadow: 0 14px 28px rgba(248, 174, 73, 0.34);
}

.main-nav .nav-cta:hover,
.btn.primary:hover,
.btn.primary:focus-visible {
  background: #e99d34;
  color: #0a0a0a;
}

.main-nav .nav-cta {
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 14px 28px rgba(10, 10, 10, 0.22);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: #1c1c1c;
  color: #fff;
}

.btn.secondary {
  border-color: rgba(10, 10, 10, 0.28);
  background: rgba(255, 255, 255, 0.9);
  color: #0a0a0a;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: #f8ae49;
  background: rgba(248, 174, 73, 0.12);
}

.btn.light {
  background: #0a0a0a;
  color: #f8ae49;
}

.slider-shell,
.process,
.site-footer {
  background:
    linear-gradient(90deg, rgba(248, 174, 73, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 174, 73, 0.06) 1px, transparent 1px),
    #0a0a0a;
}

.slider-item::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.76) 40%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 42%);
}

.slider-content h1 em,
.slider-status span {
  color: #f8ae49;
}

.slider-content .eyebrow {
  border-color: rgba(248, 174, 73, 0.5);
  background: rgba(248, 174, 73, 0.16);
  color: #ffe7bd;
}

.slider-status,
.slider-controls {
  border-color: rgba(248, 174, 73, 0.24);
  background: rgba(0, 0, 0, 0.72);
}

.slider-status strong,
.slider-dots button.is-active {
  background: #f8ae49;
  color: #0a0a0a;
}

.slider-controls > button {
  background: rgba(248, 174, 73, 0.14);
  color: #f8ae49;
}

.slider-controls > button:hover,
.slider-controls > button:focus-visible {
  background: #f8ae49;
  color: #0a0a0a;
}

.assurance-strip .container {
  border-color: rgba(10, 10, 10, 0.14);
  background: rgba(10, 10, 10, 0.12);
  width: min(920px, calc(100% - 32px));
  margin: 20px auto 0;
  border-radius: 12px;
  place-items: center;
  justify-content: center;
  text-align: center;
}

.assurance-strip .container > div {
  display: grid;
  align-content: center;
  justify-items: center;
  width: calc(100% - 20px);
  min-height: 86px;
}

.assurance-strip strong,
.service-card-content span:first-child,
.stats-panel span,
.prose li::marker,
.side-card a:hover,
.site-footer a:hover,
.arrow {
  color: #f8ae49;
}

.eyebrow,
.section-heading span,
.page-hero .eyebrow,
.split-section .eyebrow {
  border-color: rgba(248, 174, 73, 0.38);
  background: rgba(248, 174, 73, 0.13);
  color: #8a520f;
}

.section-heading h2,
.split-section h2,
.page-hero h1,
.hero-copy h1,
.service-card h3,
.process-card h3,
.contact-card h2,
.quote-form h2,
.side-card h2 {
  color: #0a0a0a;
}

.process .section-heading h2,
.process .section-heading p,
.process-card h3,
.site-footer h2 {
  color: #fff;
}

.process-card span {
  color: #f8ae49;
}

.service-card {
  border-color: rgba(10, 10, 10, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 235, 0.94)),
    #fff;
}

.service-card:hover {
  border-color: rgba(248, 174, 73, 0.56);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.16);
}



.arrow {
  background: #0a0a0a;
}

.cta-band .container {
  background: linear-gradient(135deg, #0a0a0a, #221a10);
  border: 1px solid rgba(248, 174, 73, 0.28);
}

.page-hero-grid {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 232, 0.93));
}

.quote-form input:focus,
.quote-form textarea:focus,
.btn:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible {
  outline-color: rgba(248, 174, 73, 0.58);
}

/* Home process flow, matching the reference visual style. */
.process {
  background: #fff;
  color: #0a0a0a;
  padding: 62px 0 58px;
  margin: 34px auto 34px;
}

.process-title {
  margin-bottom: 18px;
  text-align: center;
}

.process-title h2 {
  margin: 0;
  color: #0a0a0a;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr minmax(80px, 150px) 1fr minmax(80px, 150px) 1fr;
  align-items: center;
  gap: 16px;
}

.process-node {
  display: grid;
  justify-items: center;
  min-height: 170px;
  text-align: center;
}

.process-icon {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: #0a0a0a;
}

.process-icon svg {
  width: 72px;
  height: 72px;
}

.process-node h3 {
  margin: 12px 0 0;
  color: #f8ae49;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.process-node p {
  width: min(220px, 100%);
  margin: 8px 0 0;
  color: #6a6259;
  font-size: 0.92rem;
}

.process-arrow {
  display: grid;
  place-items: center;
  color: #f8ae49;
  transform: translateY(-8px);
}

.process-arrow svg {
  width: 128px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-node {
    min-height: auto;
    padding: 8px 0;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .process-arrow svg {
    width: 84px;
  }
}

/* Corporate home quote CTA. */
.cta-band {
  margin: 72px 0 0;
  color: #fff;
}

.cta-band .container.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: stretch;
  gap: clamp(22px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(248, 174, 73, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(248, 174, 73, 0.95) 0 8px, transparent 8px),
    radial-gradient(circle at 84% 18%, rgba(248, 174, 73, 0.18), transparent 18rem),
    linear-gradient(135deg, #070707 0%, #101010 58%, #1b1409 100%);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 26px 78px rgba(10, 10, 10, 0.22);
}

.cta-band .container.cta-panel::before {
  position: absolute;
  inset: 26px 26px auto auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(248, 174, 73, 0.2);
  border-radius: 50%;
  content: "";
}

.cta-band .container.cta-panel::after {
  position: absolute;
  right: 420px;
  top: 38px;
  bottom: 38px;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(248, 174, 73, 0.42), transparent);
}

.cta-copy,
.cta-action-card {
  position: relative;
  z-index: 1;
}

.cta-kicker,
.cta-card-top span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(248, 174, 73, 0.36);
  border-radius: 12px;
  background: rgba(248, 174, 73, 0.12);
  color: #f8ae49;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.cta-kicker {
  margin-bottom: 18px;
}

.cta-band .cta-copy h2 {
  max-width: 790px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.cta-copy p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #d9d4ca;
  font-size: 1.08rem;
  line-height: 1.75;
}

.cta-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.cta-checks strong {
  min-height: 72px;
  border: 1px solid rgba(248, 174, 73, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #f5eadb;
  font-size: 0.88rem;
  line-height: 1.35;
  padding: 14px;
}

.cta-action-card {
  display: grid;
  align-content: start;
  border: 1px solid rgba(248, 174, 73, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(0, 0, 0, 0.34);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.cta-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-mark {
  display: grid;
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 16px;
  background: #f8ae49;
  color: #0a0a0a;
}

.cta-mark svg {
  width: 48px;
  height: 48px;
}

.cta-action-card p {
  margin: 22px 0 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

.cta-info-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.cta-info-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  padding: 12px;
}

.cta-info-list span {
  grid-row: span 2;
  color: #f8ae49;
  font-size: 0.95rem;
  font-weight: 900;
}

.cta-info-list strong {
  color: #fff;
  font-size: 0.95rem;
}

.cta-info-list small {
  margin-top: 3px;
  color: #cfc8bb;
  font-size: 0.82rem;
}

.cta-action-card .btn {
  width: 100%;
}

@media (max-width: 980px) {
  .cta-band .container.cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-band .container.cta-panel::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .cta-checks {
    grid-template-columns: 1fr;
  }
}

/* Trust metrics flow after "Periyodik Kontrol Nedir". */
.trust-metrics {
  background: #fff;
  padding: 58px 0 70px;
}

.trust-metrics h2 {
  margin: 0 0 30px;
  color: #0a0a0a;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-align: center;
}

.trust-flow {
  display: grid;
  grid-template-columns: 1fr minmax(80px, 150px) 1fr minmax(80px, 150px) 1fr;
  align-items: center;
  gap: 16px;
}

.trust-node {
  display: grid;
  justify-items: center;
  min-height: 170px;
  text-align: center;
}

.trust-icon {
  display: grid;
  width: 74px;
  height: 58px;
  place-items: center;
  color: #0a0a0a;
}

.trust-icon svg {
  width: 58px;
  height: 58px;
}

.trust-node strong {
  display: block;
  margin-top: 8px;
  color: #f8ae49;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.trust-node span {
  display: block;
  margin-top: 10px;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 800;
}

.trust-arrow {
  display: grid;
  place-items: center;
  color: #f8ae49;
  transform: translateY(-4px);
}

.trust-arrow svg {
  width: 128px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .trust-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-node {
    min-height: auto;
    padding: 8px 0;
  }

  .trust-arrow {
    transform: rotate(90deg);
  }

  .trust-arrow svg {
    width: 84px;
  }
}

/* Full-width compact header behavior. */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.site-header .nav-shell {
  width: 100%;
  max-width: none;
  min-height: 84px;
  padding: 10px max(18px, calc((100vw - 1180px) / 2 + 18px));
  border-width: 0;
  border-radius: 0 0 12px 12px;
  background: transparent;
  box-shadow: none;
  transition: min-height 0.22s ease, padding 0.22s ease, border-radius 0.22s ease;
}

.brand img {
  width: 150px;
  height: auto;
  transition: width 0.22s ease, transform 0.22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(10, 10, 10, 0.12);
  filter: none;
}

.site-header.is-scrolled .nav-shell {
  min-height: 60px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-header.is-scrolled .brand img {
  width: 112px;
}

.site-header.is-scrolled .main-nav a {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (max-width: 640px) {
  .site-header {
    top: 0;
    margin-top: 0;
  }

  .site-header .nav-shell {
    min-height: 68px;
    padding: 8px 14px;
  }

  .brand img {
    width: 126px;
  }

  .site-header.is-scrolled .nav-shell {
    min-height: 56px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-header.is-scrolled .brand img {
    width: 104px;
  }
}

.socials a:hover,
.socials a:focus-visible {
  border-color: #f8ae49;
  background: #f8ae49;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 80;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: #0a0a0a;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #1c1c1c;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}
