:root {
  --blue: #0a5ea8;
  --blue-dark: #063e70;
  --orange: #f47b20;
  --orange-soft: #fff3e9;
  --ink: #162033;
  --muted: #617083;
  --line: #e7edf4;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(14, 49, 85, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: var(--ink);
  background: var(--white);
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 5.5rem;
  color: var(--white);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease, color 240ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(22, 32, 51, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  font-size: 0.78rem;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  font-size: 1.04rem;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 142px 5.5rem 82px;
  overflow: hidden;
  color: var(--white);
}

.service-hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 142px 5.5rem 82px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.service-hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.service-hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 28, 49, 0.86), rgba(5, 28, 49, 0.56), rgba(5, 28, 49, 0.18)),
    radial-gradient(circle at 72% 20%, rgba(244, 123, 32, 0.36), transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 960px;
}

.service-hero-content {
  margin-left: clamp(28px, 4vw, 64px);
}

.service-page-start {
  padding-top: 138px !important;
}

body:has(.service-page-start) .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(22, 32, 51, 0.1);
  backdrop-filter: blur(16px);
}

body:has(.service-page-start) .site-nav a {
  color: var(--blue-dark);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title,
.service-hero h1,
.section-heading h2,
.intro h2,
.about h2,
.service-detail h2,
.feature-copy h2,
.contact h2 {
  margin: 0;
  line-height: 1.06;
}

.service-hero h1 {
  max-width: 980px;
  font-size: 5.8rem;
}

.hero-title {
  max-width: 820px;
  font-size: 3.75rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 840px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.24rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 15px 30px rgba(244, 123, 32, 0.26);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(114, 190, 255, 1);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.section-inner {
  width: min(1480px, calc(100% - 112px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: 118px 0;
}

.section-band {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fd 48%, var(--orange-soft) 100%);
}

.split,
.about-layout,
.contact-layout,
.feature-layout,
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.service-detail-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.service-detail-layout > .reveal:first-child {
  max-width: 880px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading h2,
.intro h2,
.about h2,
.service-detail h2,
.feature-copy h2,
.contact h2 {
  font-size: 3.65rem;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.75;
}

.service-note-line {
  margin: 22px 0 0;
  color: var(--blue-dark);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.6;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-stats div {
  min-height: 172px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 10px 34px rgba(20, 62, 104, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-stats div:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--orange);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.about-stats span {
  margin-top: 14px;
  color: var(--blue-dark);
  font-weight: 800;
  line-height: 1.35;
}

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

.service-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(20, 62, 104, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

a.service-card {
  color: inherit;
}

.service-card:hover {
  border-color: rgba(244, 123, 32, 0.45);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 300px;
  object-fit: cover;
}

.service-card div {
  padding: 32px;
}

.service-number {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3,
.process-step h3 {
  margin: 10px 0 10px;
  color: var(--blue-dark);
  font-size: 1.36rem;
}

.service-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.responsibility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.responsibility-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(20, 62, 104, 0.06);
}

.responsibility-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.responsibility-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-disclaimer {
  padding: 26px 28px;
  border: 1px solid rgba(244, 123, 32, 0.46);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--orange-soft));
  box-shadow: 0 16px 42px rgba(244, 123, 32, 0.12);
}

.service-disclaimer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.service-disclaimer p {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.7;
}

.feature-visual {
  position: relative;
}

.feature-visual img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-stat {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 250px;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(10, 94, 168, 0.94);
  box-shadow: 0 16px 40px rgba(6, 62, 112, 0.22);
}

.floating-stat strong,
.floating-stat span {
  display: block;
}

.floating-stat strong {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
}

.benefit-list span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(244, 123, 32, 0.13);
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.feedback-wrap {
  margin-top: 72px;
}

.feedback-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -18px 0 28px;
  padding: 20px 22px;
  border: 1px solid rgba(10, 94, 168, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 34px rgba(20, 62, 104, 0.06);
}

.feedback-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feedback-intro a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(10, 94, 168, 0.18);
}

.feedback-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feedback-shot {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(20, 62, 104, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feedback-shot:hover {
  border-color: rgba(10, 94, 168, 0.28);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feedback-shot img {
  height: 360px;
  object-fit: contain;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 243, 233, 0.75), rgba(245, 249, 253, 0.9)),
    #ffffff;
}

.feedback-shot div {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.feedback-shot span,
.feedback-shot strong {
  display: block;
}

.feedback-shot span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feedback-shot strong {
  margin-top: 6px;
  color: var(--blue-dark);
  line-height: 1.35;
}

.whatsapp-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 18px 18px, rgba(10, 94, 168, 0.08) 2px, transparent 3px),
    var(--orange-soft);
  background-size: auto, 30px 30px, auto;
}

.whatsapp-preview p {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(22, 32, 51, 0.08);
  font-size: 0.98rem;
  line-height: 1.55;
}

.whatsapp-preview span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
  text-transform: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-step {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.service-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-weight: 800;
}

.service-options label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px 10px 38px;
  border: 1px solid #d9e4ef;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.service-options label:has(input:checked) {
  border-color: rgba(244, 123, 32, 0.85);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, var(--orange-soft));
  box-shadow: 0 10px 22px rgba(244, 123, 32, 0.14);
}

.service-options label::before {
  position: absolute;
  left: 14px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1.5px solid #b8c8d8;
  border-radius: 50%;
  color: var(--white);
  background: var(--white);
  font-size: 0.68rem;
  line-height: 1;
  content: "";
  transition: border-color 160ms ease, background 160ms ease;
}

.service-options label:has(input:checked)::before {
  border-color: var(--orange);
  background: var(--orange);
  content: "✓";
}

.service-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e4ef;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 94, 168, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(20, 62, 104, 0.08);
}

.contact-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-details strong {
  color: var(--blue-dark);
}

.contact-details a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.map-card {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(20, 62, 104, 0.08);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
}

.map-link {
  display: block;
  padding: 14px 18px;
  color: var(--blue);
  font-weight: 800;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.hidden-frame {
  display: none;
  width: 0;
  height: 0;
  border: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

@media (max-width: 980px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding-inline: 2rem;
  }

  .hero,
  .service-hero {
    padding-inline: 2rem;
  }

  .section-inner {
    width: min(100% - 48px, 900px);
  }

  .hero-title,
  .service-hero h1 {
    font-size: 3.4rem;
  }

  .section-heading h2,
  .intro h2,
  .about h2,
  .service-detail h2,
  .feature-copy h2,
  .contact h2 {
    font-size: 2.7rem;
  }

  .service-grid,
  .process-grid,
  .feedback-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .split,
  .about-layout,
  .contact-layout,
  .feature-layout,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-inner {
    width: min(100% - 40px, 560px);
  }

  .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 35px rgba(22, 32, 51, 0.08);
  }

  .nav-toggle {
    display: block;
    color: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 100vh;
    padding: 128px 1.25rem 64px;
  }

  .hero-title,
  .service-hero h1 {
    font-size: 2.6rem;
  }

  .section-heading h2,
  .intro h2,
  .about h2,
  .service-detail h2,
  .feature-copy h2,
  .contact h2 {
    font-size: 2.15rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 28, 49, 0.84), rgba(5, 28, 49, 0.58));
  }

  section:not(.hero) {
    padding: 68px 0;
  }

  .service-grid,
  .process-grid,
  .feedback-gallery,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .feedback-shot img {
    height: auto;
    max-height: 380px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .responsibility-list {
    grid-template-columns: 1fr;
  }

  .floating-stat {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -42px 18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
