:root {
  --navy: #173b4d;
  --navy-deep: #0d2735;
  --navy-soft: #214e62;
  --teal: #00a99d;
  --teal-dark: #008d84;
  --coral: #ff6b5e;
  --warm-white: #fafaf8;
  --soft-gray: #e8edf0;
  --mid-gray: #64747d;
  --ink: #142b36;
  --white: #ffffff;
  --border: rgba(23, 59, 77, 0.13);
  --shadow-sm: 0 12px 30px rgba(23, 59, 77, 0.08);
  --shadow-lg: 0 24px 70px rgba(13, 39, 53, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--teal);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  z-index: 1030;
  background: rgba(250, 250, 248, 0.96);
  border-bottom: 1px solid rgba(23, 59, 77, 0.08);
  box-shadow: 0 4px 20px rgba(23, 59, 77, 0.04);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 82px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy);
}

.brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  background: var(--white);
  border: 1px solid rgba(23, 59, 77, 0.08);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(23, 59, 77, 0.18);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--mid-gray);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-link {
  position: relative;
  margin: 0 2px;
  padding: 10px 12px !important;
  color: var(--navy) !important;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-link::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  display: inline-flex;
  width: 46px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: none !important;
}

.navbar-toggler span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler.is-open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.is-open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 11px 20px;
  font-size: 0.92rem;
  font-weight: 750;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-sm {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.86rem;
}

.btn-lg {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 0.95rem;
  border-radius: 14px;
}

.btn-brand {
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  box-shadow: 0 10px 24px rgba(0, 169, 157, 0.22);
}

.btn-brand:hover,
.btn-brand:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(0, 169, 157, 0.3);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.btn-light-brand {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.btn-light-brand:hover,
.btn-light-brand:focus-visible {
  color: var(--navy);
  background: #edfdfb;
  border-color: #edfdfb;
}

.hero-carousel {
  position: relative;
  min-height: 690px;
  height: calc(100vh - 82px);
  max-height: 840px;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 6.5s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 36, 0.98) 0%, rgba(8, 28, 40, 0.91) 31%, rgba(10, 31, 42, 0.5) 57%, rgba(7, 26, 36, 0.13) 100%),
    linear-gradient(0deg, rgba(5, 22, 31, 0.5) 0%, transparent 42%);
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-bottom: 54px;
}

.hero-content {
  width: min(660px, 58%);
  padding-top: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--coral);
}

.eyebrow-light {
  color: #75ded7;
}

.eyebrow-centered {
  flex-direction: column;
  gap: 7px;
}

.eyebrow-centered::before {
  order: 2;
}

.eyebrow-line {
  display: none;
}

.hero-content h1 {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.05rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero-content p {
  max-width: 590px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(8, 30, 42, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  place-items: center;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow-prev {
  left: 22px;
}

.carousel-arrow-next {
  right: 22px;
}

.carousel-footer {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 29px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.carousel-indicators-custom {
  display: flex;
  gap: 8px;
}

.carousel-indicators-custom button {
  position: relative;
  width: 54px;
  height: 33px;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.24);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: left;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.carousel-indicators-custom button.is-active {
  color: var(--white);
  border-color: var(--teal);
}

.carousel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.value-strip {
  position: relative;
  z-index: 2;
  color: var(--navy);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.value-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 18px;
  padding: 26px 32px;
  border-right: 1px solid var(--border);
}

.col-md-4:last-child .value-item {
  border-right: 0;
}

.value-item > i {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: rgba(0, 169, 157, 0.09);
  border-radius: 13px;
  font-size: 1.2rem;
  place-items: center;
}

.value-item strong,
.value-item span {
  display: block;
}

.value-item strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.value-item span {
  margin-top: 2px;
  color: var(--mid-gray);
  font-size: 0.76rem;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4.05rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.047em;
  text-wrap: balance;
}

.section-intro {
  max-width: 610px;
  color: var(--mid-gray);
  font-size: 1.03rem;
  line-height: 1.78;
}

.section-services {
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 169, 157, 0.1), transparent 23%),
    var(--warm-white);
}

.service-card {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 390px;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgba(23, 59, 77, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 110px;
  content: "";
  background: radial-gradient(circle at 100% 100%, rgba(0, 169, 157, 0.09), transparent 65%);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(0, 169, 157, 0.32);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-card-featured {
  border-top: 4px solid var(--coral);
}

.service-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--teal-dark);
  background: rgba(0, 169, 157, 0.09);
  border-radius: 17px;
  font-size: 1.55rem;
  place-items: center;
}

.service-number {
  color: rgba(23, 59, 77, 0.23);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.service-card > p {
  margin: 0 0 24px;
  color: var(--mid-gray);
  font-size: 0.91rem;
  line-height: 1.72;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.service-tags span {
  padding: 6px 10px;
  color: var(--navy-soft);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.service-card-cta {
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card-cta::before {
  position: absolute;
  top: -70px;
  right: -55px;
  width: 190px;
  height: 190px;
  content: "";
  background: rgba(0, 169, 157, 0.2);
  border-radius: 50%;
}

.service-card-cta::after {
  background: radial-gradient(circle at 100% 100%, rgba(255, 107, 94, 0.33), transparent 62%);
}

.service-card-cta h3,
.service-card-cta > p {
  color: var(--white);
}

.service-card-cta > p {
  color: rgba(255, 255, 255, 0.68);
}

.service-cta-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 25px;
  color: var(--white);
  background: var(--coral);
  border-radius: 18px;
  font-size: 1.35rem;
  place-items: center;
  transform: rotate(-4deg);
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.service-card-cta .text-link {
  color: #71ddd6;
}

.text-link i {
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.section-process {
  background: var(--white);
}

.section-heading-center {
  max-width: 790px;
  margin: 0 auto 70px;
}

.section-heading-center .section-intro {
  margin-top: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.process-step {
  position: relative;
  padding-top: 1px;
}

.process-number {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 27px;
  color: var(--white);
  background: var(--navy);
  border: 5px solid rgba(0, 169, 157, 0.14);
  border-radius: 50%;
  font-size: 0.71rem;
  font-weight: 800;
  place-items: center;
  background-clip: padding-box;
}

.process-step:nth-child(2) .process-number,
.process-step:nth-child(4) .process-number {
  background-color: var(--teal-dark);
}

.process-line {
  position: absolute;
  z-index: 0;
  top: 27px;
  left: 69px;
  width: calc(100% - 50px);
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(0, 169, 157, 0.45) 0 7px, transparent 7px 13px);
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  color: var(--mid-gray);
  font-size: 0.86rem;
  line-height: 1.7;
}

.section-about {
  padding-top: 28px;
  background: var(--white);
}

.about-panel {
  position: relative;
  padding: 74px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 15%, rgba(0, 169, 157, 0.28), transparent 28%),
    radial-gradient(circle at 1% 100%, rgba(255, 107, 94, 0.16), transparent 27%),
    var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-panel::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.03), 0 0 0 88px rgba(255, 255, 255, 0.02);
}

.about-panel h2 {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.047em;
}

.about-panel p {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.about-values {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 15px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  backdrop-filter: blur(10px);
}

.about-value > i {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  color: #72ddd6;
  background: rgba(0, 169, 157, 0.16);
  border-radius: 14px;
  font-size: 1.2rem;
  place-items: center;
}

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

.about-value strong {
  font-size: 0.96rem;
}

.about-value span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.section-faq {
  background: var(--warm-white);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
}

.faq-item button span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: rgba(0, 169, 157, 0.08);
  border-radius: 50%;
  place-items: center;
}

.faq-answer p {
  max-width: 680px;
  margin: -8px 45px 25px 0;
  color: var(--mid-gray);
  font-size: 0.9rem;
  line-height: 1.75;
}

.section-contact {
  padding-top: 45px;
  background: var(--warm-white);
}

.contact-shell {
  color: var(--white);
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info {
  position: relative;
  padding: 64px 52px;
  background:
    radial-gradient(circle at 0 100%, rgba(255, 107, 94, 0.18), transparent 30%),
    radial-gradient(circle at 100% 0, rgba(0, 169, 157, 0.22), transparent 27%),
    var(--navy);
}

.contact-info h2 {
  margin: 0 0 19px;
  color: var(--white);
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.92rem;
}

.contact-methods {
  display: grid;
  gap: 13px;
  margin-top: 36px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  color: var(--white);
  text-decoration: none;
}

.contact-methods a > i {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  color: #77ded8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  place-items: center;
  transition: background 0.2s ease;
}

.contact-methods a:hover > i {
  background: var(--teal);
  color: var(--white);
}

.contact-methods small,
.contact-methods strong {
  display: block;
}

.contact-methods small {
  color: rgba(255, 255, 255, 0.49);
  font-size: 0.68rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-methods strong {
  margin-top: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-form-wrap {
  padding: 64px 58px;
  background: var(--white);
}

.contact-form {
  color: var(--ink);
}

.form-heading {
  margin-bottom: 31px;
}

.form-heading h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.form-heading p {
  margin: 0;
  color: var(--mid-gray);
  font-size: 0.83rem;
}

.form-label {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 750;
}

.form-label span {
  color: var(--coral);
}

.form-control,
.form-select {
  min-height: 51px;
  padding: 12px 15px;
  color: var(--ink);
  background-color: var(--warm-white);
  border: 1px solid rgba(23, 59, 77, 0.16);
  border-radius: 11px;
  font-size: 0.87rem;
  box-shadow: none !important;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 169, 157, 0.11) !important;
}

.form-control::placeholder {
  color: #95a1a8;
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mid-gray);
  font-size: 0.7rem;
}

.form-note i {
  color: var(--teal-dark);
}

.site-footer {
  padding: 34px 0 24px;
  color: rgba(255, 255, 255, 0.67);
  background: #0a202b;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.brand-footer,
.brand-footer:hover {
  color: var(--white);
}

.brand-footer .brand-mark {
  background: var(--white);
  box-shadow: none;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-main nav a:hover {
  color: #72ddd6;
}

.footer-top {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  place-items: center;
  text-decoration: none;
}

.footer-top:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 21px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.68rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 1020;
  right: 23px;
  bottom: 22px;
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--white);
  background: #22a968;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(13, 39, 53, 0.25);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float i {
  font-size: 1.18rem;
}

.whatsapp-float:hover {
  color: var(--white);
  background: #188d55;
  transform: translateY(-3px);
}

:focus-visible {
  outline: 3px solid rgba(255, 107, 94, 0.8);
  outline-offset: 3px;
}

@media (max-width: 1199.98px) {
  .hero-content {
    width: 62%;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 5.7vw, 4.35rem);
  }

  .service-card {
    min-height: 370px;
  }

  .about-panel {
    padding: 60px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 75px;
  }

  .navbar {
    min-height: 74px;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 14px 0 18px;
    border-top: 1px solid var(--border);
  }

  .nav-link {
    padding: 11px 4px !important;
  }

  .nav-link::after {
    display: none;
  }

  .navbar-nav .btn {
    width: 100%;
    margin-top: 7px;
  }

  .hero-carousel {
    min-height: 660px;
    height: calc(100vh - 74px);
    max-height: 780px;
  }

  .hero-content {
    width: 72%;
  }

  .carousel-arrow {
    top: auto;
    bottom: 24px;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .carousel-arrow:hover,
  .carousel-arrow:focus-visible {
    transform: scale(1.05);
  }

  .carousel-arrow-prev {
    right: 74px;
    left: auto;
  }

  .carousel-arrow-next {
    right: 24px;
  }

  .carousel-footer {
    bottom: 27px;
  }

  .carousel-status {
    display: none;
  }

  .value-item {
    padding: 22px 16px;
  }

  .section {
    padding: 88px 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 34px;
  }

  .process-step:nth-child(2) .process-line {
    display: none;
  }

  .about-panel {
    padding: 52px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 54px;
  }
}

@media (max-width: 767.98px) {
  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    max-width: 155px;
    font-size: 0.88rem;
  }

  .hero-carousel {
    min-height: 690px;
    height: calc(100svh - 74px);
    max-height: 810px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 25, 36, 0.98) 0%, rgba(7, 25, 36, 0.85) 72%, rgba(7, 25, 36, 0.65) 100%),
      linear-gradient(0deg, rgba(7, 25, 36, 0.65), transparent 50%);
  }

  .hero-content-wrap {
    align-items: flex-end;
    padding-bottom: 145px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    max-width: 560px;
    font-size: clamp(2.65rem, 12vw, 3.85rem);
  }

  .hero-content p {
    max-width: 530px;
    font-size: 0.97rem;
  }

  .carousel-footer {
    bottom: 30px;
  }

  .carousel-arrow {
    bottom: 24px;
  }

  .value-item {
    min-height: auto;
    padding: 22px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .col-md-4:last-child .value-item {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-title {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .service-card {
    min-height: 350px;
    padding: 29px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-step {
    padding: 0 0 0 77px;
  }

  .process-number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .process-line,
  .process-step:nth-child(2) .process-line {
    top: 62px;
    left: 27px;
    display: block;
    width: 1px;
    height: calc(100% - 33px);
    background: repeating-linear-gradient(180deg, rgba(0, 169, 157, 0.45) 0 7px, transparent 7px 13px);
  }

  .process-step:last-child .process-line {
    display: none;
  }

  .section-about {
    padding-top: 10px;
  }

  .about-panel {
    padding: 42px 28px;
    border-radius: 24px;
  }

  .about-panel h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .about-value {
    padding: 18px;
  }

  .contact-shell {
    border-radius: 24px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 43px 28px;
  }

  .contact-info h2 {
    font-size: 2.45rem;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-top {
    position: absolute;
    right: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .hero-carousel {
    min-height: 680px;
  }

  .hero-content-wrap {
    padding-bottom: 137px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .hero-content h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 13vw, 3.25rem);
  }

  .hero-content p {
    margin-bottom: 25px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 9px;
  }

  .hero-actions .btn {
    min-height: 49px;
    padding: 12px 16px;
    font-size: 0.82rem;
  }

  .carousel-indicators-custom button {
    width: 42px;
  }

  .carousel-arrow-prev {
    right: 68px;
  }

  .carousel-arrow-next {
    right: 20px;
  }

  .section-intro {
    font-size: 0.96rem;
  }

  .service-card {
    min-height: 325px;
  }

  .section-heading-center {
    margin-bottom: 50px;
  }

  .about-value {
    align-items: flex-start;
  }

  .contact-methods strong {
    font-size: 0.78rem;
  }

  .contact-form-wrap .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 15px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.success-contact-modal .modal-content {
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.24);
}

.success-modal-brand {
    position: relative;
    display: flex;
    min-height: 100%;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top right,
            rgba(102, 192, 197, 0.65),
            transparent 45%
        ),
        linear-gradient(145deg, #007e73 0%, #009b8d 55%, #006b64 100%);
}

.success-modal-brand::after {
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    content: "";
    border-radius: 50%;
    background: rgba(243, 25, 124, 0.23);
    filter: blur(2px);
}

.success-modal-brand-content {
    position: relative;
    z-index: 1;
    padding: 48px 38px;
}

.success-modal-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    font-size: 30px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.success-modal-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.success-modal-brand h3 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
}

.success-modal-brand p {
    margin-bottom: 26px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.success-modal-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.success-modal-services span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.success-modal-services i {
    color: #ffffff;
}

.success-modal-body {
    position: relative;
    padding: 48px;
    background: #ffffff;
}

.success-modal-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
}

.success-check-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    font-size: 38px;
    color: #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, #009b8d, #66c0c5);
    box-shadow: 0 14px 30px rgba(0, 155, 141, 0.28);
    animation: successModalPulse 1.5s ease-in-out infinite;
}

.success-modal-small-title {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #009b8d;
}

.success-modal-body h2 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #17212b;
}

.success-modal-message {
    margin-bottom: 24px;
    font-size: 1.04rem;
    line-height: 1.75;
    color: #647080;
}

.success-modal-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 155, 141, 0.16);
    border-radius: 18px;
    background: rgba(0, 155, 141, 0.06);
}

.success-modal-notice > i {
    font-size: 24px;
    color: #009b8d;
}

.success-modal-notice div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.success-modal-notice strong {
    color: #17212b;
}

.success-modal-notice span {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #687382;
}

.success-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-whatsapp-outline {
    color: #168c52;
    border: 1px solid rgba(22, 140, 82, 0.4);
    background: #ffffff;
}

.btn-whatsapp-outline:hover {
    color: #ffffff;
    border-color: #168c52;
    background: #168c52;
}

.success-modal-footer-text {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
    margin-bottom: 0;
    font-size: 0.82rem;
    color: #89919c;
}

@keyframes successModalPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 14px 30px rgba(0, 155, 141, 0.28);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 18px 38px rgba(0, 155, 141, 0.36);
    }
}

@media (max-width: 991.98px) {
    .success-contact-modal .modal-dialog {
        max-width: 620px;
    }

    .success-modal-brand-content {
        padding: 34px;
    }

    .success-modal-body {
        padding: 40px 32px 34px;
    }
}

@media (max-width: 575.98px) {
    .success-contact-modal .modal-dialog {
        margin: 14px;
    }

    .success-contact-modal .modal-content {
        border-radius: 22px;
    }

    .success-modal-brand-content {
        padding: 30px 24px;
    }

    .success-modal-body {
        padding: 38px 24px 28px;
    }

    .success-modal-actions {
        flex-direction: column;
    }

    .success-modal-actions .btn {
        width: 100%;
    }
}


.service-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.service-card-link .service-card {
    position: relative;
    height: 100%;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card-link:hover {
    color: inherit;
}

.service-card-link:hover .service-card {
    transform: translateY(-8px);
    border-color: rgba(0, 155, 141, 0.32);
    box-shadow: 0 24px 55px rgba(22, 33, 43, 0.14);
}

.service-card-link:focus-visible {
    border-radius: 24px;
    outline: 3px solid rgba(0, 155, 141, 0.3);
    outline-offset: 4px;
}

.service-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #009b8d;
}

.service-card-action i {
    transition: transform 0.2s ease;
}

.service-card-link:hover .service-card-action i {
    transform: translateX(5px);
}

.service-detail-page {
    overflow: hidden;
    background: #ffffff;
}

.service-detail-hero {
    position: relative;
    padding: 30px 0 100px;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(102, 192, 197, 0.24),
            transparent 32%
        ),
        linear-gradient(135deg, #f7fbfb 0%, #ffffff 55%, #f9f4f7 100%);
}

.service-detail-hero::before {
    position: absolute;
    top: -130px;
    right: -100px;
    width: 430px;
    height: 430px;
    content: "";
    border-radius: 50%;
    background: rgba(243, 25, 124, 0.07);
    filter: blur(5px);
}

.service-back-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 45px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #596573;
    text-decoration: none;
}

.service-back-link:hover {
    color: #009b8d;
}

.service-detail-hero h1 {
    max-width: 850px;
    margin: 12px 0 14px;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #17212b;
}

.service-detail-hero h2 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 650;
    line-height: 1.35;
    color: #009b8d;
}

.service-detail-hero p {
    max-width: 740px;
    margin-bottom: 34px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #637080;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-service-outline {
    color: #17212b;
    border: 1px solid rgba(23, 33, 43, 0.2);
    background: rgba(255, 255, 255, 0.72);
}

.btn-service-outline:hover {
    color: #ffffff;
    border-color: #17212b;
    background: #17212b;
}

.service-detail-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 430px;
    padding: 42px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 38px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(102, 192, 197, 0.72),
            transparent 37%
        ),
        linear-gradient(145deg, #007b71 0%, #009b8d 58%, #006861 100%);
    box-shadow: 0 35px 75px rgba(0, 117, 107, 0.24);
}

.service-detail-visual::after {
    position: absolute;
    right: -85px;
    bottom: -100px;
    width: 270px;
    height: 270px;
    content: "";
    border-radius: 50%;
    background: rgba(243, 25, 124, 0.3);
}

.service-detail-icon {
    position: absolute;
    top: 38px;
    right: 38px;
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    font-size: 46px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.service-detail-visual span,
.service-detail-visual strong {
    position: relative;
    z-index: 1;
}

.service-detail-visual span {
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.service-detail-visual strong {
    max-width: 360px;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    line-height: 1.2;
}

.service-benefits-section,
.service-process-section,
.service-examples-section,
.service-quote-section {
    padding: 100px 0;
}

.service-solutions-section {
    padding: 100px 0;
    background: #f6f9f9;
}

.service-benefit-card,
.service-example-card {
    height: 100%;
    padding: 34px;
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: 25px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-benefit-card:hover,
.service-example-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(23, 33, 43, 0.1);
}

.service-benefit-card > span,
.service-example-card > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    place-items: center;
    font-size: 25px;
    color: #009b8d;
    border-radius: 18px;
    background: rgba(0, 155, 141, 0.1);
}

.service-benefit-card h3,
.service-example-card h3 {
    margin-bottom: 12px;
    font-size: 1.24rem;
    font-weight: 800;
    color: #17212b;
}

.service-benefit-card p,
.service-example-card p {
    margin: 0;
    line-height: 1.7;
    color: #6b7683;
}

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

.service-solutions-list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 18px;
    border: 1px solid rgba(23, 33, 43, 0.08);
    border-radius: 15px;
    background: #ffffff;
}

.service-solutions-list i {
    margin-top: 2px;
    color: #009b8d;
}

.service-solutions-list span {
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.5;
    color: #394552;
}

.service-detail-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 50px;
}

.service-detail-process article {
    padding: 30px;
    border-radius: 24px;
    background: #17212b;
}

.service-detail-process article > span {
    display: inline-flex;
    margin-bottom: 35px;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    color: #66c0c5;
}

.service-detail-process h3 {
    margin-bottom: 13px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
}

.service-detail-process p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.service-examples-section {
    background: #f8fafa;
}

.service-quote-section {
    background:
        linear-gradient(
            180deg,
            #f8fafa 0,
            #f8fafa 50%,
            #ffffff 50%,
            #ffffff 100%
        );
}

.service-quote-shell {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 30px 75px rgba(23, 33, 43, 0.15);
}

.service-quote-info {
    padding: 55px 45px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top right,
            rgba(102, 192, 197, 0.62),
            transparent 38%
        ),
        linear-gradient(145deg, #007a70, #009b8d);
}

.service-quote-info h2 {
    margin: 15px 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 850;
    line-height: 1.08;
}

.service-quote-info > p {
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.service-selected-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    margin-top: 35px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.service-selected-box > i {
    font-size: 27px;
}

.service-selected-box div {
    display: flex;
    flex-direction: column;
}

.service-selected-box span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.65);
}

.service-selected-box strong {
    font-size: 1rem;
}

.service-quote-form-wrap {
    padding: 55px;
    background: #ffffff;
}

.selected-service-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 155, 141, 0.18);
    border-radius: 14px;
    background: rgba(0, 155, 141, 0.06);
}

.selected-service-control span {
    color: #74808d;
}

.selected-service-control strong {
    text-align: right;
    color: #009b8d;
}

.service-success-modal {
    position: relative;
    padding: 48px;
    text-align: center;
    border-radius: 28px;
}

.service-success-modal > .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-success-icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    place-items: center;
    font-size: 37px;
    color: #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, #009b8d, #66c0c5);
}

.service-success-modal > span {
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #009b8d;
}

.service-success-modal h2 {
    margin: 10px 0 16px;
    font-size: 2rem;
    font-weight: 850;
}

.service-success-modal p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #6d7885;
}

.trazo-detail-page {
    --trazo-dark: #101010;
    --trazo-cream: #f4ead8;
    --trazo-blue: #277f9e;
    --trazo-orange: #e96423;
}

.trazo-detail-page .service-detail-hero {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 12%,
            rgba(39, 127, 158, 0.4),
            transparent 28%
        ),
        linear-gradient(135deg, #0a0a0a 0%, #171717 58%, #242424 100%);
}

.trazo-detail-page .service-detail-hero h1,
.trazo-detail-page .service-detail-hero h2 {
    color: #ffffff;
}

.trazo-detail-page .service-detail-hero p,
.trazo-detail-page .service-back-link {
    color: rgba(255, 255, 255, 0.72);
}

.trazo-detail-page .service-detail-visual {
    background:
        radial-gradient(
            circle at top right,
            rgba(233, 100, 35, 0.7),
            transparent 42%
        ),
        linear-gradient(145deg, #277f9e, #155a71);
}

.trazo-detail-page .btn-brand {
    border-color: #e96423;
    background: #e96423;
}

.trazo-detail-page .btn-brand:hover {
    border-color: #c94f17;
    background: #c94f17;
}

.trazo-detail-page .service-benefit-card > span,
.trazo-detail-page .service-example-card > span {
    color: #277f9e;
    background: rgba(39, 127, 158, 0.12);
}

.trazo-detail-page .service-solutions-list i {
    color: #e96423;
}

.trazo-detail-page .service-detail-process article {
    background: #101010;
}

.trazo-detail-page .service-detail-process article > span {
    color: #e96423;
}

.trazo-detail-page .service-quote-info {
    background:
        radial-gradient(
            circle at top right,
            rgba(233, 100, 35, 0.55),
            transparent 40%
        ),
        linear-gradient(145deg, #101010, #252525);
}

.trazo-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.trazo-brand img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    padding: 8px;
    border-radius: 18px;
    background: #ffffff;
}

.trazo-brand span {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.trazo-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.trazo-gallery-card {
    grid-column: span 4;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 15, 15, 0.12);
}

.trazo-gallery-card:nth-child(1),
.trazo-gallery-card:nth-child(2) {
    grid-column: span 6;
}

.trazo-gallery-image {
    overflow: hidden;
    aspect-ratio: 4 / 4.5;
    background: #ece7df;
}

.trazo-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.trazo-gallery-card:hover img {
    transform: scale(1.045);
}

.trazo-gallery-content {
    padding: 25px;
}

.trazo-gallery-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 850;
    color: #111111;
}

.trazo-gallery-content p {
    min-height: 52px;
    margin-bottom: 18px;
    line-height: 1.65;
    color: #6c7075;
}

.trazo-gallery-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #277f9e;
    text-decoration: none;
}

.trazo-form-logo {
    width: 95px;
    max-height: 85px;
    margin-bottom: 22px;
    object-fit: contain;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
}

@media (max-width: 991.98px) {
    .service-detail-hero {
        padding: 120px 0 80px;
    }

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

    .service-quote-info,
    .service-quote-form-wrap {
        padding: 42px 34px;
    }

    .trazo-gallery-card,
    .trazo-gallery-card:nth-child(1),
    .trazo-gallery-card:nth-child(2) {
        grid-column: span 6;
    }
}

@media (max-width: 767.98px) {
    .service-detail-hero h1 {
        font-size: 3rem;
    }

    .service-detail-visual {
        min-height: 340px;
    }

    .service-solutions-list,
    .service-detail-process {
        grid-template-columns: 1fr;
    }

    .trazo-gallery-card,
    .trazo-gallery-card:nth-child(1),
    .trazo-gallery-card:nth-child(2) {
        grid-column: span 12;
    }

    .service-benefits-section,
    .service-process-section,
    .service-examples-section,
    .service-solutions-section,
    .service-quote-section {
        padding: 75px 0;
    }
}

@media (max-width: 575.98px) {
    .service-detail-hero {
        padding: 105px 0 65px;
    }

    .service-detail-actions {
        flex-direction: column;
    }

    .service-detail-actions .btn {
        width: 100%;
    }

    .service-detail-visual {
        min-height: 310px;
        padding: 30px;
        border-radius: 26px;
    }

    .service-detail-icon {
        top: 25px;
        right: 25px;
        width: 75px;
        height: 75px;
        font-size: 34px;
        border-radius: 22px;
    }

    .service-quote-info,
    .service-quote-form-wrap {
        padding: 34px 24px;
    }

    .selected-service-control {
        align-items: flex-start;
        flex-direction: column;
    }

    .selected-service-control strong {
        text-align: left;
    }
}

.web-examples-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 22px;
    margin-top: 50px;
}

.web-example-item {
    position: relative;
    grid-column: span 4;
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    border: 0;
    border-radius: 24px;
    background: #e9eeee;
    box-shadow: 0 18px 45px rgba(23, 33, 43, 0.11);
}

.web-example-item:nth-child(1),
.web-example-item:nth-child(6) {
    grid-column: span 8;
}

.web-example-item:nth-child(2),
.web-example-item:nth-child(5) {
    grid-column: span 4;
}

.web-example-item:nth-child(3),
.web-example-item:nth-child(4),
.web-example-item:nth-child(7),
.web-example-item:nth-child(8) {
    grid-column: span 4;
}

.web-example-item img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: top center;
    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}

.web-example-item:nth-child(1) img,
.web-example-item:nth-child(6) img {
    height: 460px;
}

.web-example-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(12, 25, 29, 0.08);
    transition: background 0.3s ease;
}

.web-example-overlay i {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    font-size: 22px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    background: rgba(13, 27, 31, 0.62);
    opacity: 0;
    transform: scale(0.75);
    backdrop-filter: blur(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.web-example-item:hover img {
    transform: scale(1.035);
    filter: brightness(0.8);
}

.web-example-item:hover .web-example-overlay {
    background: rgba(12, 25, 29, 0.18);
}

.web-example-item:hover .web-example-overlay i {
    opacity: 1;
    transform: scale(1);
}

.web-example-item:focus-visible {
    outline: 4px solid rgba(0, 155, 141, 0.35);
    outline-offset: 5px;
}

.web-example-modal .modal-content {
    overflow: hidden;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(8, 18, 22, 0.3);
}

.web-example-modal .modal-header {
    padding: 18px 22px;
}

.web-example-modal .modal-body {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    background: #edf1f1;
}

.web-example-modal .modal-body img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: contain;
    object-position: top center;
    background: #edf1f1;
}

@media (max-width: 991.98px) {
    .web-example-item,
    .web-example-item:nth-child(1),
    .web-example-item:nth-child(2),
    .web-example-item:nth-child(3),
    .web-example-item:nth-child(4),
    .web-example-item:nth-child(5),
    .web-example-item:nth-child(6),
    .web-example-item:nth-child(7),
    .web-example-item:nth-child(8) {
        grid-column: span 6;
    }

    .web-example-item img,
    .web-example-item:nth-child(1) img,
    .web-example-item:nth-child(6) img {
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .web-examples-gallery {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-top: 35px;
    }

    .web-example-item,
    .web-example-item:nth-child(1),
    .web-example-item:nth-child(2),
    .web-example-item:nth-child(3),
    .web-example-item:nth-child(4),
    .web-example-item:nth-child(5),
    .web-example-item:nth-child(6),
    .web-example-item:nth-child(7),
    .web-example-item:nth-child(8) {
        grid-column: auto;
    }

    .web-example-item img,
    .web-example-item:nth-child(1) img,
    .web-example-item:nth-child(6) img {
        height: 300px;
    }

    .web-example-overlay i {
        opacity: 1;
        transform: scale(1);
    }
}

.recaptcha-wrapper {
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 380px) {
    .recaptcha-wrapper {
        transform: scale(0.88);
        transform-origin: left top;
        width: 345px;
        margin-bottom: -8px;
    }
}