:root {
  --navy: #082147;
  --navy-2: #123a70;
  --turquoise: #12aeb8;
  --ink: #17243a;
  --text: #4d5b70;
  --muted: #f3f7fb;
  --line: #dbe5ef;
  --white: #fff;
  --shadow: 0 18px 45px rgba(8, 33, 71, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 18px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--turquoise);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 33, 71, 0.08);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  flex: 0 0 auto;
  width: 255px;
  margin: 0;
}

.site-brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.navbar-toggler {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0;
}

.navbar-toggler-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 18px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
}

.btn-lg {
  min-height: 50px;
  padding: 0.78rem 1.2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: #fff;
}

.btn-outline-primary {
  color: var(--navy);
  border-color: rgba(8, 33, 71, 0.28);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.btn-whatsapp {
  background: #1f9d62;
  color: #fff;
  border: 0;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text-secondary {
  color: #68778c;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.hero-section {
  padding: clamp(56px, 8vw, 104px) 0 clamp(44px, 7vw, 84px);
  background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--turquoise);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 650;
  margin: 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 650;
  margin: 0 0 16px;
}

h3 {
  font-size: 1.18rem;
  font-weight: 600;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.18rem;
  color: #3f4e63;
}

.hero-note {
  margin: 10px 0 0;
  color: #66748a;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.visual-panel {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1.08;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 174, 184, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(8, 33, 71, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.visual-topline,
.visual-row {
  height: 12px;
  border-radius: 4px;
  background: var(--navy);
}

.visual-topline {
  width: 38%;
  margin-bottom: 26px;
}

.visual-row {
  width: 82%;
  margin-bottom: 14px;
  background: #d5e2ee;
}

.visual-row.long {
  width: 100%;
}

.visual-row.short {
  width: 58%;
}

.analytics-graph {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 78px;
  width: calc(100% - 48px);
  height: auto;
}

.graph-area {
  fill: rgba(18, 174, 184, 0.12);
}

.graph-line {
  fill: none;
  stroke: url(#terlaGraph);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.graph-dots circle {
  fill: #fff;
  stroke: var(--turquoise);
  stroke-width: 4;
}

.metric-strip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric-strip span {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.78rem;
}

.metric-strip strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
}

.section {
  padding: clamp(56px, 7vw, 92px) 0;
}

.muted-section {
  background: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-list details {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 650;
}

.faq-list p {
  margin: 12px 0 0;
}

.section-heading p,
.page-hero p,
.narrow p {
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.process-step,
.placeholder-projects article,
.empty-state,
.content-card,
.contact-info,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card {
  min-height: 430px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-image {
  width: calc(100% + 52px);
  height: 175px;
  margin: -26px -26px 6px;
  display: block;
  object-fit: cover;
  border-radius: 7px 7px 0 0;
}

.service-card p {
  flex: 1;
  margin: 0;
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card h3 i {
  color: var(--turquoise);
  font-size: 1.45rem;
}

.service-card a {
  font-weight: 600;
  text-decoration: none;
}

.line-icon {
  width: 42px;
  height: 42px;
  display: inline-block;
  border: 2px solid var(--turquoise);
  border-radius: 8px;
  position: relative;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
}

.line-icon-code::before { width: 18px; height: 2px; left: 11px; top: 14px; }
.line-icon-code::after { width: 24px; height: 2px; left: 8px; top: 24px; }
.line-icon-layout::before { width: 28px; height: 2px; left: 6px; top: 12px; box-shadow: 0 8px 0 var(--navy), 0 16px 0 var(--navy); }
.line-icon-mobile::before { width: 14px; height: 24px; left: 12px; top: 7px; border: 2px solid var(--navy); background: transparent; border-radius: 4px; }
.line-icon-network::before { width: 26px; height: 2px; left: 7px; top: 20px; transform: rotate(28deg); }
.line-icon-network::after { width: 26px; height: 2px; left: 7px; top: 20px; transform: rotate(-28deg); }
.line-icon-briefcase::before { width: 24px; height: 16px; left: 8px; top: 16px; border: 2px solid var(--navy); background: transparent; }
.line-icon-support::before { width: 20px; height: 20px; left: 9px; top: 9px; border: 2px solid var(--navy); background: transparent; border-radius: 50%; }

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 38px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 43px;
}

.feature-list span {
  display: block;
  padding: 16px 18px;
  border-left: 3px solid var(--turquoise);
  background: #fff;
  color: var(--ink);
  font-weight: 500;
}

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

.process-step {
  padding: 24px;
}

.process-step span,
.placeholder-projects span {
  color: var(--turquoise);
  font-weight: 650;
}

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

.reference-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.reference-heading > div:first-child {
  max-width: 760px;
}

.reference-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.reference-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.reference-controls button:hover,
.reference-controls button:focus {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.reference-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 36%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
}

.reference-slide {
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 33, 71, 0.08);
}

.reference-slide img,
.reference-image-fallback {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  object-fit: cover;
  background: linear-gradient(135deg, #e9f4f6, #f7fafc);
}

.reference-image-fallback i {
  color: var(--turquoise);
  font-size: 2rem;
}

.reference-slide div:not(.reference-image-fallback) {
  padding: 22px;
}

.reference-slide span {
  display: block;
  color: var(--turquoise);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.reference-slide h3 {
  margin: 0 0 10px;
}

.reference-slide p {
  margin: 0 0 16px;
}

.reference-slide a {
  font-weight: 600;
  text-decoration: none;
}

.cms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cms-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cms-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #e9f1f7;
}

.cms-card div {
  padding: 20px;
}

.cms-card span {
  color: var(--turquoise);
  font-size: 0.82rem;
  font-weight: 600;
}

.cms-card h2 {
  font-size: 1.28rem;
  margin-top: 8px;
}

.cms-card a {
  font-weight: 600;
  text-decoration: none;
}

.detail-cover {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  margin: 24px 0;
  border-radius: 8px;
}

.rich-content {
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.placeholder-projects article,
.empty-state,
.content-card {
  padding: 26px;
}

.content-card {
  max-width: 880px;
  margin: 0 auto;
}

.contract-content {
  width: 100%;
  max-width: 1180px;
}

.cookie-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.home-content-empty h2 {
  margin: 0;
  font-size: 1.15rem;
}

.cms-empty-state h2 {
  margin: 0;
  font-size: 1.15rem;
}

.cookie-inventory-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.cookie-inventory-table th,
.cookie-inventory-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cookie-inventory-table th {
  color: var(--navy);
  background: #f5f9fc;
}

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

.cards-grid .content-card {
  max-width: none;
  margin: 0;
}

.content-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.content-card h2 {
  font-size: 1.25rem;
  margin-top: 28px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
}

.cta-band h2 {
  color: #fff;
  max-width: 790px;
  margin: 0;
}

.cta-band .btn-primary {
  min-height: 62px;
  padding: 0.95rem 1.8rem;
  border: 2px solid #fff;
  background: #fff;
  color: var(--navy);
  font-size: 1.1rem;
  white-space: nowrap;
}

.cta-band .btn-primary:hover,
.cta-band .btn-primary:focus {
  border-color: #fff;
  background: var(--turquoise);
  color: #fff;
}

.page-hero {
  padding: clamp(24px, 3vw, 36px) 0;
  background: #f8fbfd;
  border-bottom: 1px solid var(--line);
}

.page-banner {
  width: 100%;
  padding-top: 0;
}

.page-hero:has(+ .page-banner) {
  padding-bottom: clamp(24px, 3vw, 36px);
}

.page-banner .service-detail-image {
  display: block;
  width: 100vw;
  max-width: none;
  height: 200px;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.page-hero > .container > h1 {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  text-align: center !important;
}

@media (min-width: 768px) {
  .page-hero > .container > h1 {
    white-space: nowrap;
  }
}

.page-hero .breadcrumb-nav {
  justify-content: center;
}

.page-hero p {
  max-width: 820px;
  margin: 18px 0 0;
}

.page-hero > .container > .eyebrow,
.page-hero > .container > p {
  display: none;
}


.breadcrumb-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  color: #6a788c;
  font-size: 0.92rem;
}

.breadcrumb-nav a {
  text-decoration: none;
  font-weight: 500;
}

.narrow {
  max-width: 850px;
}

.page-content-frame {
  max-width: 1180px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

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

.contact-info a {
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: var(--ink);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bdcadd;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(18, 174, 184, 0.2);
  border-color: var(--turquoise);
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.check-row input {
  width: auto;
  margin-top: 6px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.alert {
  padding: 13px 15px;
  border-radius: 6px;
  font-weight: 600;
}

.alert.success {
  border: 1px solid #b6dfc5;
  background: #edf9f1;
  color: #216e3a;
}

.alert.error {
  border: 1px solid #efb8b8;
  background: #fff1f1;
  color: #9f2929;
}

.site-footer {
  margin-top: auto;
  padding: 48px 0 22px;
  background: #071a37;
  color: #c9d5e3;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(140px, 0.8fr));
  gap: 28px;
}

.footer-brand {
  display: block;
  width: 340px;
  padding: 8px;
  margin-bottom: 16px;
  border-radius: 6px;
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  color: #d7e1ec;
  text-decoration: none;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--turquoise);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  margin: 0;
}

.support-shell {
  position: fixed;
  right: 20px;
  bottom: 150px;
  z-index: 1150;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 1140;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(18, 174, 184, 0.7);
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(5, 12, 25, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #fff;
}

.scroll-top:focus-visible {
  outline: 3px solid rgba(18, 174, 184, 0.35);
  outline-offset: 3px;
}

.support-trigger {
  display: grid;
  grid-template-columns: 42px 1fr 16px;
  gap: 10px;
  align-items: center;
  min-width: 176px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(18, 174, 184, 0.7);
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 42px rgba(5, 12, 25, 0.32);
  text-align: left;
}

.support-trigger[hidden] {
  display: none;
}

.support-trigger em,
.support-trigger strong {
  display: block;
  font-style: normal;
  line-height: 1.15;
}

.support-trigger em {
  color: var(--turquoise);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

.home-page .eyebrow {
  font-size: 1rem;
}

.support-trigger strong {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
}

.support-trigger b {
  color: var(--turquoise);
  font-size: 1.45rem;
  font-weight: 400;
}

.support-whatsapp-icon {
  display: none;
}

.trigger-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--turquoise);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--navy));
  color: #fff;
  font-weight: 600;
}

.support-widget {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(344px, calc(100vw - 32px));
  padding: 48px 18px 18px;
  border-radius: 8px;
  border: 1px solid rgba(18, 174, 184, 0.35);
  background: var(--navy);
  color: #e8edf5;
  box-shadow: 0 24px 60px rgba(5, 12, 25, 0.35);
}

.support-widget[hidden] {
  display: none;
}

.support-widget h2 {
  color: #fff;
  font-size: 1rem;
  margin: 0 34px 16px 0;
  font-weight: 650;
}

.support-widget p {
  margin: 0 0 18px;
  color: #aab5c5;
  font-size: 0.86rem;
}

.support-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: #222b3a;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

.support-agent {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--navy));
  color: #fff;
  font-weight: 600;
}

.support-agent strong,
.support-agent span {
  display: block;
}

.support-agent strong {
  color: #fff;
  font-size: 0.9rem;
}

.support-agent span {
  color: #9ba7b8;
  font-size: 0.78rem;
}

.support-agent em {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(32, 208, 107, 0.12);
  color: #20d06b;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 600;
}

.support-actions {
  display: grid;
  gap: 8px;
}

.support-actions a {
  display: block;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #1b2434;
  color: #fff;
  text-decoration: none;
}

.support-actions span,
.support-actions strong {
  display: block;
}

.support-actions span {
  color: #9ba7b8;
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

.support-actions strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.support-offer {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding: 13px;
  border-radius: 6px;
  background: var(--turquoise);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
}

.support-offer:hover {
  color: #fff;
  background: var(--navy-2);
}

.support-widget small {
  display: block;
  margin-top: 10px;
  color: #8f9bad;
  text-align: center;
}

@media (max-width: 991px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 8px;
  }

  .navbar-collapse.show {
    display: flex;
  }

  .navbar-nav {
    display: grid;
    gap: 2px;
  }

  .nav-link {
    padding: 0.65rem 0;
  }

  .hero-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-list {
    margin-top: 0;
  }

  .hero-visual {
    min-height: 300px;
  }

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

@media (min-width: 768px) {
  .py-md-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .site-brand {
    width: 222px;
  }

  .hero-actions,
  .cta-band,
  .reference-heading,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .service-grid,
  .cards-grid,
  .cms-grid,
  .process-grid,
  .placeholder-projects,
  .feature-list,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 280px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .support-shell {
    display: none;
    right: 16px;
    bottom: 16px;
  }

  .scroll-top {
    right: 16px;
    bottom: 24px;
  }

  .support-trigger {
    width: 58px;
    min-width: 58px;
    height: 58px;
    padding: 0;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .support-trigger .trigger-avatar,
  .support-trigger > span:nth-child(3),
  .support-trigger b {
    display: none;
  }

  .support-whatsapp-icon {
    display: block;
    color: #fff;
    font-size: 1.65rem;
  }

  .support-widget {
    width: calc(100vw - 32px);
  }

  .reference-slider {
    grid-auto-columns: minmax(260px, 86%);
  }
}
