
:root {
  --bg: #f2f5f8;
  --bg-deep: #e7edf3;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #425567;
  --text-strong: #2f4456;
  --muted: #5f7386;
  --line: #d7e1eb;
  --accent: #0f6f80;
  --accent-2: #24a2b7;
  --accent-dark: #0a3f4c;
  --ink-soft: #2d3d4d;
  --lux: #9a7b4f;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --shadow-soft: 0 18px 42px rgba(8, 28, 45, 0.09);
  --shadow-card: 0 24px 46px rgba(8, 28, 45, 0.14);
  --shadow-strong: 0 38px 70px rgba(6, 20, 34, 0.22);
  --container: 1220px;
  --header-h: 82px;
  --transition: 320ms cubic-bezier(.2,.8,.2,1);
  --frame-line-width: 2.8px;
  --frame-line-color: rgba(142, 182, 206, 0.9);
  --frame-line-color-strong: rgba(125, 170, 197, 0.95);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Urbanist", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.68;
  background:
    radial-gradient(1100px 700px at 120% -10%, #d4f3fa 0%, transparent 55%),
    radial-gradient(900px 540px at -8% 0%, #e2eff8 0%, transparent 52%),
    radial-gradient(560px 380px at 50% 0%, rgba(255, 255, 255, 0.66) 0%, transparent 72%),
    linear-gradient(180deg, #f9fbfd 0%, var(--bg) 28%, var(--bg-deep) 100%);
  padding-bottom: 0;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(13, 40, 61, 0.04) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  opacity: 0.4;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: -18% -8%;
  pointer-events: none;
  background:
    radial-gradient(980px 600px at 10% 22%, rgba(24, 164, 188, 0.24), transparent 68%),
    radial-gradient(860px 560px at 90% 16%, rgba(10, 62, 91, 0.2), transparent 67%),
    radial-gradient(1020px 680px at 52% 112%, rgba(26, 149, 176, 0.2), transparent 72%),
    conic-gradient(from 205deg at 50% 50%, rgba(255, 255, 255, 0), rgba(181, 220, 238, 0.28), rgba(255, 255, 255, 0) 68%);
  opacity: 0.94;
  z-index: -1;
  filter: saturate(1.08) contrast(1.04);
  animation: siteBackgroundDrift 20s ease-in-out infinite alternate;
}

@keyframes siteBackgroundDrift {
  0% {
    transform: translate3d(-1.2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(1.4%, 1.3%, 0) scale(1.02);
  }
}

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

::selection {
  background: rgba(28, 160, 182, 0.24);
}

*:focus-visible {
  outline: 2px solid rgba(20, 132, 152, 0.5);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1200;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #0a5e6d;
  background: #ffffff;
  color: #0b4f5d;
  font-weight: 800;
  font-size: 0.84rem;
  transform: translateY(-180%);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 10px 20px rgba(8, 28, 45, 0.16);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(3.2rem, 7vw, 5.8rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 920px;
}

.section-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  font-family: "Urbanist", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 72ch;
}

.header {
  position: sticky;
  top: 0;
  z-index: 980;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(246, 251, 255, 0.8));
  border-bottom: 1px solid rgba(206, 220, 232, 0.86);
  box-shadow: 0 10px 24px rgba(8, 27, 42, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Urbanist", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: contain;
  background: #ffffff;
  padding: 2px;
  border: 1px solid rgba(182, 206, 224, 0.62);
  box-shadow: 0 10px 24px rgba(8, 24, 39, 0.16);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: var(--surface);
}

.header-quick-contact {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.quick-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid #cddceb;
  border-radius: 999px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 252, 0.93));
  color: #294458;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.quick-contact-link:hover {
  color: #0d4f5e;
  border-color: #b9cfdf;
  background: linear-gradient(150deg, #edf8fc, #e9f2fa);
  transform: translateY(-1px);
}

.quick-contact-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.quick-contact-call {
  position: relative;
  color: #0f5c44;
  background: linear-gradient(150deg, rgba(224, 248, 235, 0.94), rgba(236, 252, 244, 0.9));
  border-color: rgba(140, 204, 172, 0.72);
  box-shadow: 0 6px 14px rgba(12, 82, 62, 0.12);
  animation: desktopCallPulse 2.1s ease-in-out infinite;
}

.quick-contact-call::after {
  content: "SUNA";
  position: absolute;
  top: -9px;
  right: 10px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f6d4f;
  background: rgba(223, 249, 236, 0.96);
  border: 1px solid rgba(140, 204, 172, 0.86);
  border-radius: 999px;
  padding: 0.08rem 0.34rem;
  line-height: 1.2;
}

.quick-contact-mail {
  position: relative;
  color: #124e66;
  background: linear-gradient(150deg, rgba(227, 244, 252, 0.95), rgba(236, 248, 255, 0.9));
  border-color: rgba(150, 203, 226, 0.74);
  box-shadow: 0 6px 14px rgba(11, 83, 110, 0.11);
  animation: desktopMailPulse 2.2s ease-in-out infinite;
}

.quick-contact-mail::after {
  content: "EMAIL";
  position: absolute;
  top: -9px;
  right: 10px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f607e;
  background: rgba(224, 244, 254, 0.96);
  border: 1px solid rgba(150, 203, 226, 0.86);
  border-radius: 999px;
  padding: 0.08rem 0.34rem;
  line-height: 1.2;
}

@keyframes desktopCallPulse {
  0%,
  100% {
    box-shadow: 0 6px 14px rgba(12, 82, 62, 0.12), 0 0 0 0 rgba(60, 171, 123, 0.14);
  }
  50% {
    box-shadow: 0 8px 16px rgba(12, 82, 62, 0.16), 0 0 0 8px rgba(60, 171, 123, 0.08);
  }
}

@keyframes desktopMailPulse {
  0%,
  100% {
    box-shadow: 0 6px 14px rgba(11, 83, 110, 0.11), 0 0 0 0 rgba(57, 149, 188, 0.14);
  }
  50% {
    box-shadow: 0 8px 16px rgba(11, 83, 110, 0.16), 0 0 0 8px rgba(57, 149, 188, 0.08);
  }
}

.nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  transform: translateY(-125%);
  transition: transform var(--transition);
}

.nav.open {
  transform: translateY(0);
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0.85rem;
  display: grid;
  gap: 0.3rem;
}

.nav a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 11px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
  transition: background var(--transition), color var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--accent-dark);
  background: linear-gradient(145deg, #e8f6f9, #edf6fb);
}

.has-dropdown {
  position: relative;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-dropdown > a::before {
  content: "▾";
  font-size: 0.72em;
  margin-right: 0.42rem;
  opacity: 0.75;
}

.has-dropdown.submenu-open > a::before {
  content: "▴";
}

.hero {
  padding: clamp(4.8rem, 8.5vw, 7rem) 0 clamp(3.2rem, 7vw, 5.2rem);
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #116879;
  border: 1px solid #bfeaf3;
  background: linear-gradient(160deg, #ebfbff, #eaf4ff);
}

.hero h1 {
  margin: 0.9rem 0 0.85rem;
  font-size: clamp(2rem, 5.3vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 16ch;
  color: var(--text-strong);
  text-wrap: balance;
}

.hero-highlight,
.text-highlight {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0.06em 0.28em 0.11em;
  border-radius: 0.42em;
  color: #083c49;
  background: linear-gradient(140deg, rgba(213, 244, 252, 0.95), rgba(228, 239, 250, 0.93));
  border: 1px solid rgba(167, 211, 228, 0.84);
  box-shadow: 0 6px 14px rgba(13, 90, 111, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  animation: heroHighlightPulse 2.6s ease-in-out infinite;
}

.hero-highlight::after,
.text-highlight::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -60%;
  width: 52%;
  height: 190%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  animation: heroHighlightSheen 3.4s ease-in-out infinite;
}

.hero-highlight-ink {
  overflow: visible;
  padding: 0 0.05em 0.12em;
  border: 0;
  border-radius: 0;
  background: linear-gradient(120deg, #0a4e5f 0%, #11758b 52%, #61a1b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: none;
  animation: none;
}

.hero-highlight-ink::after {
  top: auto;
  left: 0;
  bottom: 0.03em;
  width: 100%;
  height: 0.19em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 117, 139, 0.24), rgba(102, 185, 199, 0.5), rgba(17, 117, 139, 0.24));
  transform: none;
  animation: heroUnderlineFlow 2.8s ease-in-out infinite;
}

.text-highlight.is-teal {
  color: #083c49;
  background: linear-gradient(140deg, rgba(213, 244, 252, 0.95), rgba(228, 239, 250, 0.93));
  border-color: rgba(167, 211, 228, 0.84);
}

.text-highlight.is-blue {
  color: #16384f;
  background: linear-gradient(145deg, rgba(223, 235, 252, 0.95), rgba(233, 241, 255, 0.93));
  border-color: rgba(173, 196, 228, 0.82);
}

.text-highlight.is-slate {
  color: #284355;
  background: linear-gradient(145deg, rgba(228, 237, 245, 0.95), rgba(239, 245, 250, 0.93));
  border-color: rgba(182, 202, 219, 0.84);
}

.text-highlight.is-mint {
  color: #184a44;
  background: linear-gradient(145deg, rgba(226, 247, 238, 0.95), rgba(236, 251, 245, 0.93));
  border-color: rgba(165, 214, 196, 0.84);
}

.text-highlight.compact {
  padding: 0.03em 0.2em 0.08em;
  border-radius: 0.34em;
  box-shadow: 0 3px 8px rgba(13, 90, 111, 0.08);
  animation: none;
}

.text-highlight.compact::after {
  display: none;
}

@keyframes heroHighlightPulse {
  0%,
  100% {
    box-shadow: 0 6px 14px rgba(13, 90, 111, 0.13), 0 0 0 0 rgba(45, 151, 184, 0.1);
  }
  50% {
    box-shadow: 0 8px 16px rgba(13, 90, 111, 0.17), 0 0 0 8px rgba(45, 151, 184, 0.05);
  }
}

@keyframes heroHighlightSheen {
  0%,
  18% {
    left: -65%;
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  58% {
    left: 125%;
    opacity: 0;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

@keyframes heroUnderlineFlow {
  0%,
  100% {
    opacity: 0.72;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-highlight,
  .text-highlight,
  .hero-highlight::after,
  .text-highlight::after {
    animation: none;
  }

  .hero-highlight-ink::after {
    animation: none;
  }

  body::after {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 991px) {
  body::after {
    animation: none;
    opacity: 0.76;
  }
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 14px;
  min-height: 46px;
  padding: 0.72rem 1.22rem;
  font-weight: 800;
  font-size: 0.93rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b5e6f, #083f4d 86%);
  border-color: rgba(7, 70, 84, 0.88);
  box-shadow: 0 20px 34px rgba(6, 55, 68, 0.38), inset 0 1px 0 rgba(142, 208, 224, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 24px 38px rgba(6, 55, 68, 0.46), inset 0 1px 0 rgba(142, 208, 224, 0.24);
}

.btn-secondary {
  background: linear-gradient(150deg, #21546e, #173f54 92%);
  border-color: #2a617d;
  color: #eef9ff;
  box-shadow: 0 10px 20px rgba(7, 41, 58, 0.28), inset 0 1px 0 rgba(166, 206, 228, 0.18);
}

.btn-secondary:hover {
  border-color: #2f6f8e;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(7, 41, 58, 0.34), inset 0 1px 0 rgba(166, 206, 228, 0.22);
}

.btn-ghost {
  background: linear-gradient(145deg, #2a5f79, #1f4d64 88%);
  border-color: #316d8a;
  color: #eef8ff;
  box-shadow: 0 8px 16px rgba(7, 41, 58, 0.24);
}

.btn-ghost:hover {
  background: linear-gradient(145deg, #336e8b, #24576f 88%);
  border-color: #3b7d9e;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(7, 41, 58, 0.3);
}

/* Action-based CTA colors: users instantly understand call channel intent */
.btn[href^="tel:"] {
  color: #f4fff7;
  background: linear-gradient(140deg, #148a4e, #0f6b3c 90%);
  border-color: #117545;
  box-shadow: 0 10px 22px rgba(12, 86, 49, 0.28);
}

.btn[href^="tel:"]:hover {
  border-color: #159457;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(12, 86, 49, 0.34);
}

.btn[href*="wa.me"] {
  color: #eefcff;
  background: linear-gradient(145deg, #0f6a79, #0a4f5c 88%);
  border-color: #0d5f70;
  box-shadow: 0 10px 22px rgba(8, 66, 81, 0.28);
}

.btn[href*="wa.me"]:hover {
  border-color: #117386;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(8, 66, 81, 0.34);
}

.btn[href^="mailto:"] {
  color: #edf5ff;
  background: linear-gradient(145deg, #2a597a, #1f4460 90%);
  border-color: #315e7d;
  box-shadow: 0 10px 22px rgba(18, 50, 74, 0.28);
}

.btn[href^="mailto:"]:hover {
  border-color: #3a6e92;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(18, 50, 74, 0.34);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  position: relative;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.97), rgba(241, 249, 254, 0.95));
  border: 1px solid rgba(203, 219, 232, 0.94);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: 0 18px 36px rgba(8, 28, 45, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 45%, rgba(255, 255, 255, 0.36));
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: #b5cedf;
}

.card h2,
.card h3 {
  margin: 0 0 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.22rem 0.68rem;
  border-radius: 999px;
  border: 1px solid #c8e9f1;
  color: #0a6979;
  background: #edfaff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.benefits,
.faq {
  display: grid;
  gap: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery img,
.card-grid .card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #d4dee8;
  box-shadow: 0 18px 30px rgba(8, 28, 45, 0.14);
  transition: transform var(--transition), filter var(--transition);
}

.gallery img:hover,
.card-grid .card > img:hover {
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.03);
}

.gallery-section {
  padding-top: clamp(2.4rem, 5vw, 4rem);
}

.gallery-panel {
  border: var(--frame-line-width) solid var(--frame-line-color);
  border-radius: 30px;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 253, 0.9));
  box-shadow: 0 22px 40px rgba(8, 28, 45, 0.08);
  padding: clamp(1rem, 2.4vw, 1.6rem);
}

.gallery-premium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1rem);
}

.gallery-premium-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border-color: #c6d8e8;
  box-shadow: 0 16px 28px rgba(7, 25, 40, 0.12);
}

.gallery-premium-grid img:hover {
  transform: translateY(-2px) scale(1.01);
}

.review {
  position: relative;
  padding-top: 1.7rem;
}

.review::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.2rem;
  font-size: 2.9rem;
  line-height: 1;
  color: #7bc2d1;
}

.breadcrumbs {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: #677485;
}

.breadcrumbs a {
  color: #0d7284;
}

.hero-grid .card {
  border-radius: var(--radius-lg);
  padding: 0.55rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(233, 245, 252, 0.88));
  box-shadow: var(--shadow-strong);
}

.hero-grid .card img {
  border-radius: 20px;
  aspect-ratio: 5 / 4;
}

.content p {
  margin: 0 0 1rem;
}

.content h2,
.content h3 {
  margin: 2rem 0 0.8rem;
  line-height: 1.2;
}

.site-premium .section.content > .container {
  border: var(--frame-line-width) solid var(--frame-line-color);
  border-radius: 22px;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.95), rgba(238, 247, 253, 0.82));
  box-shadow: 0 18px 34px rgba(9, 30, 47, 0.08);
  padding: clamp(1rem, 2vw, 1.45rem);
}

.site-premium .section.content .faq .card,
.site-premium .section.content .benefits .card {
  border-color: #cbd9e7;
}

.site-premium .section.content .gallery img {
  border-color: #c8d7e6;
  box-shadow: 0 14px 24px rgba(8, 24, 39, 0.12);
}

.section-muted {
  padding-top: 0.6rem;
}

.split-band {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric {
  border: 1px solid #cfdae6;
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff, #f5f9fd);
  box-shadow: 0 10px 22px rgba(10, 28, 43, 0.08);
  padding: 1rem 0.85rem;
  text-align: center;
}

.metric h3 {
  margin: 0 0 0.1rem;
  font-size: 1.15rem;
  color: var(--text-strong);
}

.metric p {
  margin: 0;
  font-size: 0.85rem;
  color: #5f6d7e;
}

.service-grid-clean {
  gap: 1rem;
}

.service-card-clean {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
}

.service-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-actions .btn {
  min-height: 40px;
  padding: 0.58rem 0.9rem;
  font-size: 0.84rem;
}

.project-tile h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.35rem;
}

.project-tile p {
  margin: 0 0 0.8rem;
}

.project-tile .btn {
  width: 100%;
  min-height: 42px;
}

.section-elevated .container {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.76), rgba(238, 247, 253, 0.64));
  border: var(--frame-line-width) solid var(--frame-line-color);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.4rem);
  box-shadow: 0 20px 38px rgba(8, 28, 45, 0.1);
}

.section-elevated .container.trust-banner {
  background: linear-gradient(140deg, rgba(9, 31, 48, 0.95), rgba(16, 64, 85, 0.92));
  border-color: rgba(134, 188, 220, 0.72);
  box-shadow: 0 22px 40px rgba(6, 21, 35, 0.26);
}

.trust-banner {
  display: grid;
  gap: 0.8rem;
  align-items: center;
  background: linear-gradient(140deg, rgba(9, 31, 48, 0.95), rgba(16, 64, 85, 0.92));
  border-color: rgba(111, 165, 198, 0.45);
}

.trust-banner .section-title {
  color: #f4fbff;
}

.trust-banner .section-lead {
  color: #d0e1ed;
  margin-bottom: 0;
}

.trust-banner .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #edf7ff;
  border-color: rgba(202, 222, 238, 0.34);
}

.trust-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cta-panel {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.cta-panel.trust-banner .cta-row {
  margin-top: 1.1rem;
}

.home-page .hero-home {
  position: relative;
  padding-top: clamp(5rem, 10vw, 8rem);
  isolation: isolate;
}

.home-page .hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 280px at 14% 14%, rgba(21, 165, 188, 0.22), transparent 72%),
    radial-gradient(520px 320px at 90% 24%, rgba(17, 48, 70, 0.18), transparent 76%);
  pointer-events: none;
  z-index: -1;
}

.home-page .hero-home::after {
  content: "";
  position: absolute;
  right: 3%;
  top: 18%;
  width: min(35vw, 470px);
  height: min(35vw, 470px);
  border: 1px solid rgba(151, 183, 206, 0.4);
  border-radius: 28px;
  transform: rotate(7deg);
  opacity: 0.52;
  pointer-events: none;
  z-index: -1;
}

.home-page .hero-copy h1 {
  font-size: clamp(2.2rem, 5.7vw, 5rem);
  max-width: 13ch;
}

.home-page .hero-copy p {
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  max-width: 58ch;
}

.home-page .hero-media {
  position: relative;
  padding: 0.7rem;
  border-radius: 28px;
  border: var(--frame-line-width) solid var(--frame-line-color-strong);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(229, 243, 252, 0.9));
  box-shadow: 0 28px 46px rgba(9, 31, 50, 0.22);
}

.home-page .hero-media::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 22px;
  border: 1px solid rgba(181, 206, 224, 0.86);
  pointer-events: none;
}

.home-page .hero-media img {
  border-radius: 22px;
}

.home-page .hero-media.hero-media-video {
  overflow: hidden;
  padding: 0.62rem;
}

.home-page .hero-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(190, 212, 227, 0.85);
  box-shadow: 0 18px 30px rgba(8, 28, 46, 0.26);
  background: #091520;
}

.home-page .hero-video-badge {
  position: absolute;
  top: 1.05rem;
  left: 1.05rem;
  z-index: 2;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 212, 228, 0.72);
  background: rgba(7, 30, 46, 0.74);
  color: #ecf8ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}

.home-page .hero-video-overlay {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1rem;
  z-index: 2;
  border-radius: 16px;
  border: 1px solid rgba(170, 205, 223, 0.38);
  background: linear-gradient(165deg, rgba(8, 36, 53, 0.8), rgba(13, 53, 74, 0.72));
  box-shadow: 0 14px 26px rgba(4, 22, 37, 0.34);
  padding: 0.72rem;
}

.home-page .hero-video-overlay p {
  margin: 0;
  color: #dbeef9;
  font-size: 0.83rem;
  line-height: 1.4;
}

.home-page .hero-video-title {
  margin: 0 0 0.28rem;
  color: #f3fbff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.home-page .hero-video-points {
  margin-top: 0.52rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.home-page .hero-video-points span {
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(173, 212, 231, 0.42);
  background: rgba(8, 35, 52, 0.46);
  color: #d8eef9;
  font-size: 0.69rem;
  font-weight: 700;
}

.home-page .hero-video-actions {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.52rem;
}

.home-page .hero-video-actions .btn {
  min-height: 40px;
  width: 100%;
  padding-inline: 0.65rem;
  font-size: 0.78rem;
}

.hero-tags {
  margin-top: 1rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero-tags span {
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  border: 1px solid #c9d8e8;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  color: #173247;
}

.home-page .split-band {
  gap: 1rem;
}

.home-page .metric {
  border-radius: 18px;
  border-color: #c7d7e5;
  box-shadow: 0 14px 24px rgba(8, 28, 45, 0.1);
}

.home-page .metric h3 {
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
}

.footer {
  padding: 3.3rem 0 7rem;
  color: #d7e2ed;
  background:
    radial-gradient(620px 320px at 100% 0%, rgba(39, 126, 152, 0.36), transparent 70%),
    linear-gradient(170deg, #071722, #0d2330 54%, #0a1d28);
  border-top: 1px solid rgba(138, 174, 200, 0.24);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer h3 {
  margin: 0 0 0.5rem;
  color: #f4fbff;
}

.footer p {
  margin: 0;
  color: #c4d3df;
}

.footer a {
  color: #edf9ff;
}

.legal-company-block {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(150, 184, 207, 0.28);
  color: #bdd0df;
  font-size: 0.85rem;
  line-height: 1.5;
}

.legal-company-block p {
  margin: 0 0 0.35rem;
}

.legal-company-block strong {
  color: #f0f8ff;
}

.legal-links a {
  color: #e2f6ff;
  text-decoration: underline;
  text-decoration-color: rgba(180, 225, 247, 0.42);
  text-underline-offset: 2px;
}

.legal-links a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: calc(0.7rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(100% - 1rem, 760px);
  z-index: 1400;
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid #b8cfdf;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.99), rgba(235, 246, 252, 0.97));
  box-shadow: 0 16px 28px rgba(8, 25, 41, 0.2);
}

.cookie-banner p {
  margin: 0;
  color: #274559;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: #0e6170;
  text-decoration: underline;
}

.cookie-preferences {
  border: 1px solid #c8dceb;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.55rem 0.65rem;
}

.cookie-preferences summary {
  cursor: pointer;
  font-weight: 700;
  color: #204156;
  font-size: 0.85rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
  color: #3b586c;
  font-size: 0.82rem;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  min-height: 40px;
  font-size: 0.84rem;
  padding: 0.54rem 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #22c35e, #149145);
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 38px rgba(9, 38, 20, 0.36), 0 0 0 8px rgba(34, 195, 94, 0.14);
  z-index: 1200;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsappPulse 2.2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 42px rgba(9, 38, 20, 0.42), 0 0 0 10px rgba(34, 195, 94, 0.18);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 22px 38px rgba(9, 38, 20, 0.36), 0 0 0 8px rgba(34, 195, 94, 0.14);
  }
  50% {
    box-shadow: 0 24px 40px rgba(9, 38, 20, 0.4), 0 0 0 12px rgba(34, 195, 94, 0.08);
  }
}

.mobile-contact-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(0.6rem + env(safe-area-inset-bottom));
  width: min(100% - 1rem, 760px);
  display: flex;
  z-index: 995;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.99), rgba(234, 246, 253, 0.97));
  border: 1px solid #adc8db;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(8, 27, 44, 0.24);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.mobile-contact-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #0b5f6e, #1f95aa, #0b5f6e);
  opacity: 0.92;
}

.mobile-contact-item {
  position: relative;
  flex: 1;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #18384f;
  border-right: 1px solid #cfdeea;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.mobile-contact-item:last-child {
  border-right: 0;
}

.mobile-contact-item:hover,
.mobile-contact-item:active {
  background: linear-gradient(155deg, #f1f9fd, #e8f4fb);
  color: #0e5e70;
  transform: translateY(-1px);
}

.mobile-contact-item span {
  line-height: 1;
  letter-spacing: -0.01em;
}

.mobile-contact-item:nth-child(2) {
  background: linear-gradient(175deg, rgba(15, 112, 128, 0.12), rgba(15, 112, 128, 0.04));
}

.mobile-contact-item:first-child {
  background: linear-gradient(175deg, rgba(19, 120, 91, 0.13), rgba(19, 120, 91, 0.04));
}

.mobile-contact-item:first-child::after {
  content: "ACUM";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0d684f;
  background: rgba(215, 252, 234, 0.9);
  border: 1px solid rgba(129, 210, 169, 0.8);
  border-radius: 999px;
  padding: 0.08rem 0.34rem;
  line-height: 1.25;
}

.mobile-contact-item:nth-child(2)::after {
  content: "RAPID";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0b5f6f;
  background: rgba(220, 245, 252, 0.92);
  border: 1px solid rgba(142, 207, 226, 0.85);
  border-radius: 999px;
  padding: 0.08rem 0.34rem;
  line-height: 1.25;
}

.mobile-contact-item:nth-child(3) {
  background: linear-gradient(175deg, rgba(36, 103, 165, 0.11), rgba(36, 103, 165, 0.03));
}

.mobile-contact-item:nth-child(3)::after {
  content: "OFERTA";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1b4f7c;
  background: rgba(227, 240, 255, 0.92);
  border: 1px solid rgba(169, 198, 231, 0.85);
  border-radius: 999px;
  padding: 0.08rem 0.34rem;
  line-height: 1.25;
}

.catalog-grid {
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-grid .card {
  padding: 0.95rem 0.95rem 1.1rem;
  border-radius: 20px;
  border: 1px solid #ccdae8;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(240, 248, 253, 0.95));
  box-shadow:
    0 16px 30px rgba(6, 24, 40, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.catalog-grid .card h3 {
  margin-top: 0.9rem;
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
}

.catalog-grid .card p {
  margin-top: 0.25rem;
}

.catalog-grid .card img {
  border-radius: 14px;
  border: 1px solid #c9d8e7;
  box-shadow: 0 14px 24px rgba(7, 24, 40, 0.14);
}

.catalog-grid .card:hover {
  transform: translateY(-6px);
  border-color: #b9ccdd;
  box-shadow:
    0 24px 38px rgba(6, 24, 40, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.card-cta {
  margin-top: 0.85rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  width: 100%;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.93rem;
  line-height: 1.25;
  text-align: center;
  padding: 0.62rem 0.9rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6a79, #0a4f5c 85%);
  border: 1px solid #0a5e6d;
  box-shadow: 0 10px 20px rgba(11, 79, 92, 0.28);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(11, 79, 92, 0.35);
  filter: brightness(1.02);
}

.project-actions {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.card-cta-ghost {
  min-height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.25;
  text-align: center;
  padding: 0.58rem 0.86rem;
  border: 1px solid #346a85;
  color: #ecf7ff;
  background: linear-gradient(150deg, #23556f, #183f53 92%);
  box-shadow: 0 10px 18px rgba(7, 40, 58, 0.28);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
}

.card-cta-ghost:hover {
  transform: translateY(-1px);
  border-color: #3f7c9b;
  color: #ffffff;
  background: linear-gradient(150deg, #2b6480, #1d4a60 92%);
  box-shadow: 0 14px 24px rgba(7, 40, 58, 0.34);
}

.portfolio-page .card-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #0f6a79, #0a4f5c 85%);
  border-color: #0a5e6d;
  border-radius: 20px;
  min-height: 54px;
  box-shadow: 0 14px 28px rgba(11, 79, 92, 0.32);
}

.portfolio-page .card-cta:hover {
  box-shadow: 0 20px 32px rgba(11, 79, 92, 0.38);
}

.portfolio-page .card-cta-ghost {
  border-color: #84b0c4;
  color: #0d5368;
  border-radius: 16px;
  background: linear-gradient(150deg, #f4fbff, #e4f3fa);
}

.portfolio-page .catalog-grid {
  gap: 1.25rem;
}

.portfolio-page .portfolio-funnel,
.home-page .portfolio-funnel {
  margin-bottom: 1rem;
  border-radius: 20px;
  border: 1px solid #c5d9e7;
  background: linear-gradient(145deg, rgba(247, 252, 255, 0.98), rgba(235, 246, 252, 0.95));
}

.portfolio-page .portfolio-funnel h3,
.home-page .portfolio-funnel h3 {
  margin-bottom: 0.55rem;
}

.portfolio-page .portfolio-funnel-steps,
.home-page .portfolio-funnel-steps {
  display: grid;
  gap: 0.42rem;
}

.portfolio-page .portfolio-funnel-steps p,
.home-page .portfolio-funnel-steps p {
  margin: 0;
  font-size: 0.94rem;
}

.portfolio-page .portfolio-filters,
.home-page .portfolio-filters,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.95rem 0 0.78rem;
}

.portfolio-page .portfolio-filter,
.home-page .portfolio-filter,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-filter {
  min-height: 38px;
  padding: 0.4rem 0.76rem;
  border-radius: 999px;
  border: 1px solid #b9d0e0;
  background: linear-gradient(145deg, #f8fcff, #ecf4fa);
  color: #355267;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 6px 12px rgba(8, 35, 51, 0.06);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.portfolio-page .portfolio-filter:hover,
.home-page .portfolio-filter:hover,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-filter:hover {
  transform: translateY(-1px);
  border-color: #a3bfd2;
  color: #0f5567;
  box-shadow: 0 10px 16px rgba(8, 35, 51, 0.1);
}

.portfolio-page .portfolio-filter.is-active,
.home-page .portfolio-filter.is-active,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-filter.is-active {
  color: #f7fdff;
  border-color: #0b5361;
  background: linear-gradient(135deg, #0e6578, #083d49 86%);
  box-shadow: 0 10px 20px rgba(6, 58, 71, 0.34);
}

.portfolio-page .portfolio-toolbar,
.home-page .portfolio-toolbar,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.portfolio-page .portfolio-results,
.home-page .portfolio-results,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-results {
  margin: 0;
  color: #4b6274;
  font-size: 0.88rem;
  font-weight: 700;
}

.portfolio-page .portfolio-toolbar-cta,
.home-page .portfolio-toolbar-cta,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-toolbar-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid #2e6682;
  background: linear-gradient(135deg, #245c77, #173f54 92%);
  color: #eff9ff;
  box-shadow: 0 10px 18px rgba(7, 40, 58, 0.28);
  font-size: 0.8rem;
  font-weight: 800;
}

.portfolio-page .portfolio-toolbar-cta:hover,
.home-page .portfolio-toolbar-cta:hover,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-toolbar-cta:hover {
  border-color: #397797;
  background: linear-gradient(135deg, #2c6d8c, #1d4d65 92%);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(7, 40, 58, 0.36);
}

.portfolio-page .portfolio-advanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.portfolio-page .portfolio-advanced label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f4e66;
}

.portfolio-page .portfolio-advanced select {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #c4d9e8;
  background: #fff;
  color: #1b4258;
  padding: 0.45rem 0.75rem;
  font-size: 0.95rem;
}

.portfolio-page [data-project-card].is-hidden,
.home-page [data-project-card].is-hidden {
  display: none !important;
}

.portfolio-page .portfolio-pagination,
.home-page .portfolio-pagination,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-pagination {
  margin-top: 1rem;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
}

.portfolio-page .portfolio-load-more,
.home-page .portfolio-load-more,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-load-more {
  min-width: min(100%, 360px);
}

.portfolio-page .portfolio-pagination-note,
.home-page .portfolio-pagination-note,
.site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-pagination-note {
  margin: 0;
  text-align: center;
  color: #5a7081;
  font-size: 0.86rem;
}

.contact-page .contact-channels {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-page .contact-proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-page .contact-proof-grid .card h3 {
  margin-bottom: 0.45rem;
}

.contact-page .contact-channel-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 22px;
  border: 1px solid #c5d9e8;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 253, 0.94));
}

.contact-page .contact-channel-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.contact-page .contact-channel-card p {
  margin: 0;
}

.contact-page .contact-channel-card .btn {
  margin-top: auto;
}

.contact-page .contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6071;
  background: linear-gradient(145deg, #e8f6fb, #dff0f8);
  border: 1px solid #b8d6e4;
  box-shadow: 0 8px 18px rgba(9, 67, 85, 0.14);
}

.contact-page .contact-channel-icon svg {
  width: 20px;
  height: 20px;
}

.video-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  border: 1px solid #bfd5e6;
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.985), rgba(234, 246, 253, 0.95));
  box-shadow: 0 18px 34px rgba(7, 28, 43, 0.11);
}

.video-card h3 {
  margin-bottom: 0.55rem;
}

.video-topbar {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.video-badge {
  min-height: 26px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #bed8e8;
  background: linear-gradient(145deg, #eef8fd, #e4f1f8);
  color: #1b5269;
  font-size: 0.72rem;
  font-weight: 800;
}

.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #b7cfe0;
  background: #000;
  box-shadow: 0 18px 30px rgba(8, 29, 47, 0.22);
}

.video-card p {
  margin-top: 0.7rem;
  min-height: 2.8em;
}

.video-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.video-actions .btn {
  width: 100%;
}

.portfolio-page .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 26px;
  padding: 0.95rem 0.95rem 1rem;
  border: 1px solid rgba(194, 214, 228, 0.9);
  background: linear-gradient(166deg, rgba(255, 255, 255, 0.985), rgba(235, 247, 253, 0.95));
  box-shadow: 0 18px 34px rgba(8, 30, 46, 0.12);
}

.portfolio-page .project-media {
  position: relative;
  margin: 0;
}

.portfolio-page .project-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.portfolio-page .project-carousel {
  overflow: hidden;
}

.portfolio-page .carousel-controls {
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.portfolio-page .carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(195, 224, 238, 0.9);
  background: rgba(7, 26, 39, 0.72);
  color: #ecf8ff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.portfolio-page .carousel-counter {
  display: none;
  min-height: 32px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 229, 241, 0.92);
  background: rgba(7, 26, 39, 0.62);
  color: #f2fbff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.portfolio-page .carousel-dots {
  display: none;
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.42rem;
  justify-content: center;
  gap: 0.24rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  z-index: 3;
}

.portfolio-page .carousel-dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  flex: 0 0 auto;
}

.portfolio-page .carousel-dots::-webkit-scrollbar {
  display: none;
}

.portfolio-page .carousel-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(231, 243, 250, 0.55);
  transition: width 180ms ease, background-color 180ms ease;
}

.portfolio-page .carousel-dot.is-active {
  background: transparent;
}

.portfolio-page .carousel-dot.is-active::after {
  width: 12px;
  background: #e8f7ff;
}

.portfolio-page .project-carousel.is-single .carousel-controls,
.portfolio-page .project-carousel.is-single .carousel-dots {
  display: none;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  padding: 0.95rem 0.95rem 1rem;
  border: 1px solid rgba(194, 214, 228, 0.9);
  background: linear-gradient(166deg, rgba(255, 255, 255, 0.985), rgba(235, 247, 253, 0.95));
  box-shadow: 0 16px 30px rgba(8, 30, 46, 0.12);
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-media {
  position: relative;
  margin: 0;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-carousel {
  overflow: hidden;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-controls {
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(195, 224, 238, 0.9);
  background: rgba(7, 26, 39, 0.72);
  color: #ecf8ff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-counter {
  display: none;
  min-height: 32px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 229, 241, 0.92);
  background: rgba(7, 26, 39, 0.62);
  color: #f2fbff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-dots {
  display: none;
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.42rem;
  justify-content: center;
  gap: 0.24rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  z-index: 3;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  flex: 0 0 auto;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-dots::-webkit-scrollbar {
  display: none;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(231, 243, 250, 0.55);
  transition: width 180ms ease, background-color 180ms ease;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-dot.is-active {
  background: transparent;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .carousel-dot.is-active::after {
  width: 12px;
  background: #e8f7ff;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-carousel.is-single .carousel-controls,
.site-premium [data-portfolio][data-portfolio-dynamic] .project-carousel.is-single .carousel-dots {
  display: none;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-tag {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 231, 241, 0.85);
  background: rgba(7, 28, 43, 0.66);
  color: #e9f7ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-card h3 {
  margin: 0;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-card p {
  margin: 0;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-gallery-btn {
  width: 100%;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-marketing,
.portfolio-page .project-marketing {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-kicker,
.portfolio-page .project-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b7089;
  font-weight: 800;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-pitch,
.portfolio-page .project-pitch {
  margin: 0;
  color: #365a6e;
  font-size: 0.94rem;
  line-height: 1.45;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-selling-points,
.portfolio-page .project-selling-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-selling-points li,
.portfolio-page .project-selling-points li {
  position: relative;
  padding-left: 1.1rem;
  color: #466579;
  font-size: 0.9rem;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-selling-points li::before,
.portfolio-page .project-selling-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #1d9cb3, #0f6777);
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-trust-badges,
.portfolio-page .project-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-trust-badges span,
.portfolio-page .project-trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.62rem;
  border: 1px solid #c8dbe8;
  border-radius: 999px;
  background: #eff7fc;
  color: #1f4c63;
  font-size: 0.76rem;
  font-weight: 700;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-points {
  margin: 0.78rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-points li {
  position: relative;
  padding-left: 1.22rem;
  font-size: 0.92rem;
  color: #506375;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #1fa0b5, #0e6575);
  box-shadow: 0 0 0 3px rgba(25, 157, 178, 0.15);
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-meta {
  margin-top: 0.82rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.26rem 0.64rem;
  border-radius: 999px;
  border: 1px solid #c9dbe9;
  background: #f2f8fc;
  color: #1e4a60;
  font-size: 0.76rem;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-meta-secondary span {
  background: #eef6fb;
  color: #2d5970;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-card .project-actions {
  margin-top: 0.9rem;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-card .card-cta {
  min-height: 52px;
  font-size: 1rem;
}

.site-premium [data-portfolio][data-portfolio-dynamic] .project-card .card-cta-ghost {
  min-height: 46px;
  font-size: 0.94rem;
}

.portfolio-page .project-tag {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 231, 241, 0.85);
  background: rgba(7, 28, 43, 0.66);
  color: #e9f7ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.portfolio-page .project-card h3 {
  margin-top: 0.82rem;
  margin-bottom: 0.42rem;
}

.portfolio-page .project-card p {
  margin: 0;
}

.portfolio-page .project-points {
  margin: 0.78rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.portfolio-page .project-points li {
  position: relative;
  padding-left: 1.22rem;
  font-size: 0.92rem;
  color: #506375;
}

.portfolio-page .project-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #1fa0b5, #0e6575);
  box-shadow: 0 0 0 3px rgba(25, 157, 178, 0.15);
}

.portfolio-page .project-meta {
  margin-top: 0.82rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.portfolio-page .project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.26rem 0.64rem;
  border-radius: 999px;
  border: 1px solid #c9dbe9;
  background: #f2f8fc;
  color: #1e4a60;
  font-size: 0.76rem;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-page .project-card .project-actions {
  margin-top: 0.9rem;
  padding-top: 0;
}

.portfolio-page .project-card .card-cta {
  min-height: 52px;
  font-size: 1rem;
}

.portfolio-page .project-card .card-cta-ghost {
  min-height: 46px;
  font-size: 0.94rem;
}

.home-page .home-projects {
  gap: 1.25rem;
}

.home-page .home-projects .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 26px;
  padding: 0.95rem 0.95rem 1rem;
  border: 1px solid rgba(194, 214, 228, 0.9);
  background: linear-gradient(166deg, rgba(255, 255, 255, 0.985), rgba(235, 247, 253, 0.95));
  box-shadow: 0 18px 34px rgba(8, 30, 46, 0.12);
}

.home-page .home-projects .project-media {
  position: relative;
  margin: 0;
}

.home-page .home-projects .project-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.home-page .home-projects .project-tag {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 231, 241, 0.85);
  background: rgba(7, 28, 43, 0.66);
  color: #e9f7ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home-page .home-projects .project-card h3 {
  margin-top: 0.82rem;
  margin-bottom: 0.42rem;
}

.home-page .home-projects .project-card p {
  margin: 0;
}

.home-page .home-projects .project-points {
  margin: 0.78rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.home-page .home-projects .project-points li {
  position: relative;
  padding-left: 1.22rem;
  font-size: 0.92rem;
  color: #506375;
}

.home-page .home-projects .project-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #1fa0b5, #0e6575);
  box-shadow: 0 0 0 3px rgba(25, 157, 178, 0.15);
}

.home-page .home-projects .project-meta {
  margin-top: 0.82rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.home-page .home-projects .project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.26rem 0.64rem;
  border-radius: 999px;
  border: 1px solid #c9dbe9;
  background: #f2f8fc;
  color: #1e4a60;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-page .home-projects .project-card .project-actions {
  margin-top: 0.9rem;
  padding-top: 0;
}

.home-page .home-projects .project-card .card-cta {
  min-height: 52px;
  font-size: 1rem;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f7284, #0a5666 86%);
  border-color: #0a5e6d;
  box-shadow: 0 16px 30px rgba(10, 87, 103, 0.34);
}

.home-page .home-projects .project-card .card-cta:hover {
  box-shadow: 0 22px 34px rgba(10, 87, 103, 0.4);
}

.home-page .home-projects .project-card .card-cta-ghost {
  min-height: 46px;
  font-size: 0.94rem;
  border-color: #84b0c4;
  color: #0d5368;
  border-radius: 16px;
  background: linear-gradient(150deg, #f4fbff, #e4f3fa);
}

.mobile-contact-item svg {
  width: 18px;
  height: 18px;
  color: #14536a;
  background: linear-gradient(160deg, #ffffff, #e8f3fb);
  border: 1px solid #c2d6e7;
  border-radius: 999px;
  padding: 0.38rem;
  box-sizing: content-box;
  box-shadow: 0 6px 14px rgba(10, 32, 49, 0.1);
}

.mobile-contact-item:first-child svg {
  animation: callIconPulse 1.9s ease-in-out infinite;
}

.mobile-contact-item:nth-child(2) svg {
  animation: whatsappIconPulse 2.1s ease-in-out infinite;
}

.mobile-contact-item:nth-child(3) svg {
  animation: emailIconPulse 2.3s ease-in-out infinite;
}

@keyframes callIconPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 6px 14px rgba(10, 32, 49, 0.1), 0 0 0 0 rgba(28, 167, 95, 0.22);
  }
  30% {
    transform: scale(1.06) rotate(-10deg);
    box-shadow: 0 8px 16px rgba(10, 32, 49, 0.12), 0 0 0 6px rgba(28, 167, 95, 0.12);
  }
  60% {
    transform: scale(1.06) rotate(10deg);
    box-shadow: 0 8px 16px rgba(10, 32, 49, 0.12), 0 0 0 10px rgba(28, 167, 95, 0.06);
  }
}

@keyframes whatsappIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 14px rgba(10, 32, 49, 0.1), 0 0 0 0 rgba(27, 153, 179, 0.2);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 16px rgba(10, 32, 49, 0.12), 0 0 0 8px rgba(27, 153, 179, 0.1);
  }
}

@keyframes emailIconPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(10, 32, 49, 0.1), 0 0 0 0 rgba(50, 116, 184, 0.2);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 32, 49, 0.12), 0 0 0 8px rgba(50, 116, 184, 0.1);
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .split-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }

  .whatsapp-float {
    display: grid !important;
  }

  .header-inner {
    gap: 0.95rem;
  }

  .brand {
    flex: 0 0 auto;
    padding: 0.28rem 0.55rem 0.28rem 0.28rem;
    border-radius: 16px;
    border: 1px solid rgba(196, 214, 230, 0.78);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.92));
    box-shadow: 0 12px 24px rgba(10, 30, 48, 0.1);
  }

  .brand img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .brand span {
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    transform: none;
    border: 0;
    background: transparent;
    margin-left: auto;
    max-width: min(100%, calc(100vw - 420px));
  }

  .nav ul {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    padding: 0.5rem 0.62rem;
    border: 1px solid #c6d8e7;
    border-radius: 999px;
    background: linear-gradient(160deg, rgba(241, 247, 252, 0.96), rgba(232, 241, 249, 0.94));
    box-shadow: 0 14px 28px rgba(8, 28, 45, 0.11);
    justify-content: center;
    position: relative;
  }

  .nav > ul > li > a {
    position: relative;
    padding: 0.66rem 1.08rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #4b5e71;
    background: transparent;
    white-space: nowrap;
  }

  .nav > ul > li > a:hover {
    color: #0e4f5e;
    background: linear-gradient(145deg, #e9f5fb, #edf4fb);
  }

  .nav > ul > li > a.active {
    color: #073742;
    background: linear-gradient(145deg, #d9edf7, #e4eef8);
    box-shadow: 0 8px 18px rgba(15, 99, 114, 0.16);
  }

  .nav > ul > li > a.active::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1591a7, #0b6c7d);
  }

  .nav .has-dropdown {
    position: static;
  }

  .nav .submenu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(92vw, 520px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid #cadbea;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(249, 252, 255, 0.99), rgba(240, 247, 252, 0.98));
    box-shadow: 0 22px 44px rgba(8, 28, 45, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 25;
  }

  .nav .has-dropdown:hover .submenu,
  .nav .has-dropdown:focus-within .submenu,
  .nav .has-dropdown.submenu-open .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav .submenu a {
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 0.99rem;
    font-weight: 800;
    color: #4a5d70;
    border: 1px solid transparent;
    background: transparent;
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
  }

  .nav .submenu a:hover,
  .nav .submenu a.active {
    color: #0b4a58;
    background: linear-gradient(145deg, #e7f4fa, #edf4fb);
    border-color: #cfe0ed;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.2rem;
  }

  .home-page .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: clamp(1.8rem, 2.8vw, 3rem);
    align-items: center;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.6rem, 4.25vw, 4.35rem);
    line-height: 1.04;
    max-width: 14.5ch;
  }

  .home-page .hero-copy p {
    max-width: 54ch;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
  }

  .home-page .hero-media {
    max-width: 760px;
    margin-left: auto;
    padding: 0.72rem;
  }

  .home-page .hero-video {
    aspect-ratio: 16 / 9.6;
  }

  .home-page .hero-video-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 0.95rem;
    padding: 0.72rem 0.75rem;
  }

  .home-page .hero-video-overlay p {
    font-size: 0.86rem;
  }

  .home-page .hero-video-actions .btn {
    min-height: 42px;
    font-size: 0.8rem;
  }

  .trust-banner {
    grid-template-columns: 1.2fr auto;
  }

  .cta-panel.trust-banner {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(1.2rem, 2.6vw, 2.2rem);
    align-items: start;
  }

  .cta-panel.trust-banner .section-title {
    grid-column: 1;
  }

  .cta-panel.trust-banner .section-lead {
    grid-column: 2;
    align-self: center;
  }

  .cta-panel.trust-banner .cta-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 220px));
    gap: 0.75rem;
    justify-content: start;
  }

  .cta-panel.trust-banner .cta-row .btn {
    width: 100%;
    padding-inline: 0.9rem;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .mobile-contact-bar {
    display: none;
  }

  .cookie-banner {
    width: min(100% - 2rem, 560px);
    left: auto;
    right: 1rem;
    transform: none;
    bottom: 1rem;
  }
}

@media (min-width: 1200px) {
  .header-quick-contact {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
  }

  .nav {
    margin-left: 0.7rem;
    max-width: min(100%, calc(100vw - 720px));
  }

  .quick-contact-link {
    font-size: 0.78rem;
    min-height: 40px;
    padding: 0.5rem 0.82rem;
  }

  .quick-contact-link span {
    display: inline-block;
    line-height: 1.15;
    transform: translateY(0.5px);
  }

  .quick-contact-link svg {
    position: relative;
    top: -0.5px;
  }

  .quick-contact-call {
    min-width: 160px;
    justify-content: center;
  }

  .quick-contact-call span {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 991px) {
  :root {
    --frame-line-width: 2.4px;
  }

  body::after {
    inset: -24% -12%;
    opacity: 0.82;
    filter: saturate(1.06) contrast(1.03);
    animation-duration: 24s;
  }

  body {
    --header-h: 70px;
    padding-bottom: 118px;
  }

  .container {
    width: min(100% - 1.35rem, var(--container));
  }

  .header-inner {
    min-height: var(--header-h);
    gap: 0.5rem;
  }

  .whatsapp-float {
    display: none;
  }

  .header {
    background: linear-gradient(140deg, rgba(10, 41, 61, 0.97), rgba(17, 62, 86, 0.96));
    border-bottom-color: rgba(155, 197, 222, 0.26);
    box-shadow: 0 12px 20px rgba(5, 20, 35, 0.3);
  }

  .brand {
    color: #f2f9ff;
    border: 1px solid rgba(170, 212, 235, 0.3);
    border-radius: 13px;
    padding: 0.12rem 0.4rem 0.12rem 0.12rem;
    background: rgba(255, 255, 255, 0.07);
    max-width: calc(100% - 58px);
    flex: 1 1 auto;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .brand span {
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(171, 217, 237, 0.46);
    color: #f2fbff;
    font-size: 1.06rem;
    line-height: 1;
    box-shadow: 0 10px 16px rgba(4, 19, 33, 0.22);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  }

  .menu-toggle[aria-expanded="true"] {
    background: linear-gradient(145deg, rgba(33, 169, 190, 0.32), rgba(21, 100, 126, 0.26));
    border-color: rgba(185, 230, 246, 0.56);
    box-shadow: 0 12px 20px rgba(5, 24, 41, 0.28);
  }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 0.35rem);
    left: 0;
    right: 0;
    margin-inline: auto;
    width: min(100% - 1.1rem, 760px);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(10, 40, 58, 0.985), rgba(15, 55, 76, 0.975));
    border: 1px solid rgba(161, 203, 227, 0.32);
    border-bottom-color: rgba(161, 203, 227, 0.32);
    box-shadow: 0 20px 30px rgba(4, 18, 30, 0.34);
    transform: translateY(-10px) scale(0.985);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    overflow: hidden;
    z-index: 1010;
  }

  .nav.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav ul {
    margin: 0;
    padding: 0.62rem;
    max-height: calc(100vh - 132px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 0;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(194, 227, 245, 0.04));
    backdrop-filter: blur(8px);
  }

  .nav a {
    color: #deedf8;
    border: 1px solid rgba(177, 214, 234, 0);
    border-radius: 12px;
    padding: 0.78rem 0.84rem;
    font-size: 0.94rem;
  }

  .nav a:hover,
  .nav a.active {
    color: #ffffff;
    background: linear-gradient(145deg, rgba(42, 169, 187, 0.26), rgba(39, 132, 158, 0.22));
    border-color: rgba(179, 222, 240, 0.42);
    box-shadow: 0 6px 12px rgba(8, 30, 48, 0.22);
  }

  .nav .has-dropdown > a {
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
  }

  .nav .has-dropdown > a::before {
    display: none;
  }

  .nav .has-dropdown > a::after {
    content: "▾";
    font-size: 0.82rem;
    opacity: 0.85;
  }

  .nav .has-dropdown.submenu-open > a::after {
    content: "▴";
  }

  .nav .submenu {
    position: static;
    display: none;
    gap: 0.25rem;
    margin-top: 0.22rem;
    padding: 0.24rem 0 0.12rem 0.66rem;
    border-left: 2px solid rgba(161, 206, 227, 0.5);
  }

  .nav .has-dropdown.submenu-open .submenu {
    display: grid;
  }

  .nav .submenu a {
    font-size: 0.89rem;
    border-radius: 10px;
    padding: 0.6rem 0.74rem;
    color: #d2e7f6;
    background: rgba(154, 198, 222, 0.06);
  }

  .section {
    padding: clamp(2.35rem, 8vw, 3.45rem) 0;
  }

  .section-title {
    font-size: clamp(1.42rem, 6.2vw, 2.1rem);
    margin-bottom: 0.62rem;
  }

  .section-lead {
    margin-bottom: 1.3rem;
    font-size: 0.97rem;
    line-height: 1.55;
  }

  .hero {
    padding: clamp(3.9rem, 10.4vw, 4.8rem) 0 clamp(2.45rem, 7.5vw, 3.4rem);
  }

  .hero-grid {
    gap: 0.95rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8.8vw, 2.8rem);
    line-height: 1.06;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .cta-row {
    gap: 0.62rem;
    margin-top: 1.05rem;
  }

  .btn {
    min-height: 47px;
    padding: 0.68rem 1rem;
    font-size: 0.91rem;
  }

  .card {
    border-radius: 18px;
    padding: 1rem;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .catalog-grid .card {
    padding: 0.85rem 0.85rem 1rem;
    border-radius: 18px;
  }

  .portfolio-page .project-card {
    border-radius: 20px;
    padding: 0.8rem 0.8rem 0.9rem;
  }

  .portfolio-page .portfolio-toolbar,
  .home-page .portfolio-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-page .portfolio-advanced {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-projects .project-card {
    border-radius: 20px;
    padding: 0.8rem 0.8rem 0.9rem;
  }

  .service-actions .btn {
    flex: 1 1 auto;
  }

  .catalog-grid .card img {
    aspect-ratio: 16 / 11;
    border-radius: 12px;
  }

  .catalog-grid .card h3 {
    margin-top: 0.75rem;
    font-size: 1.08rem;
    line-height: 1.24;
  }

  .catalog-grid .card p {
    margin-top: 0.35rem;
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .card-cta {
    min-height: 44px;
    font-size: 0.92rem;
  }

  .section-elevated .container {
    border-radius: 18px;
    padding: 0.85rem;
  }

  .home-page .hero-home::after {
    display: none;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(1.9rem, 7.8vw, 2.8rem);
    line-height: 1.08;
    max-width: 12.2ch;
  }

  .home-page .hero-media {
    padding: 0.5rem;
    margin-top: 0.4rem;
  }

  .home-page .hero-video {
    aspect-ratio: 16 / 10;
  }

  .home-page .hero-video-badge {
    top: 0.78rem;
    left: 0.78rem;
    font-size: 0.66rem;
    min-height: 25px;
  }

  .home-page .hero-video-overlay {
    position: static;
    margin-top: 0.62rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .home-page .hero-video-overlay p {
    font-size: 0.88rem;
    color: #39556a;
  }

  .home-page .hero-video-title {
    color: #1d4562;
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
  }

  .home-page .hero-video-points {
    margin-top: 0.5rem;
    gap: 0.36rem;
  }

  .home-page .hero-video-points span {
    border-color: rgba(164, 195, 216, 0.82);
    background: rgba(227, 242, 250, 0.82);
    color: #29526d;
    font-size: 0.7rem;
  }

  .home-page .hero-video-actions {
    margin-top: 0.55rem;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .home-page .hero-video-actions .btn {
    min-height: 43px;
    font-size: 0.82rem;
  }

  .home-page .cta-row {
    display: flex;
    gap: 0.55rem;
  }

  .home-page .cta-row .btn:first-child {
    flex: 1 1 100%;
  }

  .home-page .cta-row .btn:not(:first-child) {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
  }

  .hero-tags {
    margin-top: 0.9rem;
    gap: 0.5rem;
  }

  .hero-tags span {
    font-size: 0.73rem;
    padding: 0.33rem 0.62rem;
  }

  .metric {
    border-radius: 14px;
    padding: 0.88rem 0.72rem;
  }

  .metric h3 {
    font-size: 1.2rem;
  }

  .metric p {
    font-size: 0.82rem;
  }

  .gallery-panel {
    border-radius: 24px;
    padding: 0.85rem;
  }

  .gallery-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .footer {
    padding: 2.5rem 0 7.7rem;
  }

  .footer-grid {
    gap: 1.1rem;
  }

  .legal-company-block {
    font-size: 0.8rem;
  }

  .cookie-banner {
    bottom: calc(5.25rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 767px) {
  :root {
    --frame-line-width: 2.2px;
  }

  body::after {
    inset: -28% -18%;
    opacity: 0.72;
    filter: saturate(1.04) contrast(1.02);
    animation-duration: 28s;
  }

  body {
    --header-h: 66px;
    padding-bottom: 124px;
  }

  .container {
    width: min(100% - 1rem, var(--container));
  }

  .header-inner {
    gap: 0.42rem;
  }

  .brand {
    gap: 0.45rem;
    padding: 0.08rem 0.3rem 0.08rem 0.08rem;
    border-radius: 11px;
  }

  .brand span {
    font-size: 0.84rem;
    max-width: 184px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    padding: 2px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 0.98rem;
  }

  .nav {
    width: min(100% - 0.9rem, 760px);
    top: calc(var(--header-h) + 0.28rem);
    border-radius: 16px;
  }

  .nav ul {
    max-height: calc(100vh - 122px);
    padding: 0.56rem;
  }

  .nav ul {
    margin: 0.45rem;
    padding: 0.44rem;
    border-radius: 14px;
    gap: 0.25rem;
  }

  .nav a {
    font-size: 0.92rem;
    padding: 0.68rem 0.74rem;
  }

  .section {
    padding: 2rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 0.34rem 0.72rem;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 9.3vw, 2.22rem);
    letter-spacing: -0.02em;
    margin-top: 0.72rem;
    margin-bottom: 0.62rem;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(1.74rem, 9.6vw, 2.3rem);
    max-width: 11.8ch;
    line-height: 1.09;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .home-page .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.58rem;
  }

  .home-page .cta-row .btn:first-child,
  .home-page .cta-row .btn:not(:first-child) {
    flex: 1 1 auto;
  }

  .cta-row .btn {
    width: 100%;
  }

  .home-page .hero-video-overlay p {
    font-size: 0.84rem;
  }

  .home-page .hero-video-actions {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .home-page .hero-video-actions .btn:first-child {
    display: none;
  }

  .home-page .hero-video-actions .btn {
    width: 100%;
  }

  .home-page .cta-row .btn-ghost {
    display: none;
  }

  .split-band {
    gap: 0.62rem;
  }

  .metric {
    padding: 0.78rem 0.64rem;
    border-radius: 12px;
  }

  .metric h3 {
    font-size: 1.12rem;
  }

  .metric p {
    font-size: 0.78rem;
  }

  .card {
    border-radius: 16px;
    padding: 0.9rem;
  }

  .card h2,
  .card h3 {
    margin-bottom: 0.42rem;
  }

  .card p {
    font-size: 0.92rem;
  }

  .project-actions {
    gap: 0.5rem;
  }

  .card-cta {
    min-height: 46px;
    border-radius: 14px;
  }

  .card-cta-ghost {
    min-height: 44px;
    border-radius: 14px;
  }

  .project-actions .card-cta,
  .project-actions .card-cta-ghost {
    font-size: 0.84rem;
    line-height: 1.3;
    padding: 0.56rem 0.72rem;
    white-space: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .cta-panel.trust-banner .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cta-panel.trust-banner .cta-row .btn {
    width: 100%;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .catalog-grid .card h3 {
    font-size: 1.14rem;
  }

  .portfolio-page .project-tag {
    left: 0.6rem;
    top: 0.6rem;
  }

  .portfolio-page .project-meta {
    gap: 0.38rem;
  }

  .portfolio-page .project-meta span {
    min-height: 28px;
    font-size: 0.73rem;
    padding: 0.24rem 0.54rem;
  }

  .portfolio-page .portfolio-filter,
  .home-page .portfolio-filter,
  .site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-filter {
    min-height: 36px;
    font-size: 0.78rem;
    padding: 0.36rem 0.62rem;
  }

  .portfolio-page .portfolio-toolbar-cta,
  .home-page .portfolio-toolbar-cta,
  .site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-toolbar-cta {
    width: 100%;
    font-size: 0.78rem;
  }

  .contact-page .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-proof-grid {
    grid-template-columns: 1fr;
  }

  .video-card video {
    border-radius: 12px;
  }

  .video-badge {
    font-size: 0.68rem;
  }

  .portfolio-page .portfolio-load-more,
  .home-page .portfolio-load-more,
  .site-premium [data-portfolio][data-portfolio-dynamic] .portfolio-load-more {
    width: 100%;
  }

  .portfolio-page .carousel-counter,
  .portfolio-page .carousel-dots,
  .site-premium [data-portfolio][data-portfolio-dynamic] .carousel-counter,
  .site-premium [data-portfolio][data-portfolio-dynamic] .carousel-dots {
    display: none;
  }

  .portfolio-page .carousel-controls,
  .site-premium [data-portfolio][data-portfolio-dynamic] .carousel-controls {
    left: 0.7rem;
    right: 0.7rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .portfolio-page .carousel-btn,
  .site-premium [data-portfolio][data-portfolio-dynamic] .carousel-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .portfolio-page [data-carousel-image],
  .site-premium [data-portfolio][data-portfolio-dynamic] [data-carousel-image] {
    pointer-events: none;
  }

  .gallery-premium-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .gallery-premium-grid img {
    border-radius: 14px;
  }

  .home-page .home-projects .project-tag {
    left: 0.6rem;
    top: 0.6rem;
  }

  .home-page .home-projects .project-meta {
    gap: 0.38rem;
  }

  .home-page .home-projects .project-meta span {
    min-height: 28px;
    font-size: 0.73rem;
    padding: 0.24rem 0.54rem;
  }

  .mobile-contact-bar {
    width: min(100% - 0.75rem, 760px);
    bottom: calc(0.42rem + env(safe-area-inset-bottom));
    border-radius: 14px;
  }

  .mobile-contact-item {
    min-height: 66px;
    font-size: 0.7rem;
  }

  .mobile-contact-item svg {
    width: 16px;
    height: 16px;
    padding: 0.34rem;
  }

  .mobile-contact-item:first-child::after {
    top: 5px;
    right: 6px;
    font-size: 0.5rem;
    padding: 0.07rem 0.28rem;
  }

  .mobile-contact-item:nth-child(2)::after,
  .mobile-contact-item:nth-child(3)::after {
    top: 5px;
    right: 6px;
    font-size: 0.5rem;
    padding: 0.07rem 0.28rem;
  }

  .cookie-banner {
    width: min(100% - 0.75rem, 760px);
    border-radius: 14px;
    padding: 0.78rem;
    gap: 0.58rem;
  }

  .cookie-banner p {
    font-size: 0.82rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.34rem;
  }

  .section-lead {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: clamp(1.62rem, 9.6vw, 2rem);
  }

  .hero-tags {
    margin-top: 0.78rem;
    gap: 0.34rem;
  }

  .hero-tags span {
    font-size: 0.68rem;
    padding: 0.28rem 0.5rem;
  }

  .mobile-contact-item span {
    font-size: 0.76rem;
  }

  .project-actions .card-cta,
  .project-actions .card-cta-ghost {
    font-size: 0.8rem;
    min-height: 42px;
    padding: 0.52rem 0.68rem;
  }
}

/* --- Professional package 1-10: trust, estimator, slider, lightbox --- */
.trust-strip-section {
  padding-top: clamp(1.3rem, 2.8vw, 2rem);
  padding-bottom: clamp(1.3rem, 2.8vw, 2rem);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-pill {
  border: 1px solid rgba(145, 175, 198, 0.48);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(236, 245, 252, 0.92));
  padding: 0.85rem 0.95rem;
  display: grid;
  gap: 0.2rem;
}

.trust-pill strong {
  color: var(--text-strong);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.trust-pill span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.portfolio-sort {
  margin-left: auto;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #bfd1e2;
  background: #f4f9fd;
  color: #27465d;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.testimonial-content h3 {
  margin: 0 0 0.35rem;
  color: #2f4758;
}

.testimonial-content p {
  margin: 0 0 0.35rem;
  color: #415a6d;
}

.testimonial-content span {
  display: inline-block;
  color: #60809b;
  font-size: 0.86rem;
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #9eb8ce;
  background: #edf4fa;
  color: #27465d;
  font-size: 1.35rem;
  cursor: pointer;
}

.lead-estimator {
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.lead-estimator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.lead-estimator label {
  display: grid;
  gap: 0.35rem;
  color: #344f63;
  font-weight: 700;
  font-size: 0.9rem;
}

.lead-estimator select,
.lead-estimator textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #c2d4e4;
  background: #f8fbfe;
  color: #2d4354;
  font: inherit;
  padding: 0.58rem 0.7rem;
}

.lead-estimator textarea {
  margin-top: 0.75rem;
  resize: vertical;
}

.lead-estimator-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.desktop-sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 910;
  border-radius: 14px;
  border: 1px solid rgba(125, 164, 190, 0.7);
  background: linear-gradient(150deg, rgba(239, 249, 255, 0.98), rgba(224, 241, 251, 0.95));
  box-shadow: 0 20px 36px rgba(10, 36, 53, 0.22);
  padding: 0.68rem 0.74rem;
  min-width: 225px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.desktop-sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-sticky-cta p {
  margin: 0 0 0.36rem;
  font-size: 0.8rem;
  color: #2f4a5f;
  font-weight: 700;
}

.desktop-sticky-cta a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(38, 116, 75, 0.45);
  background: linear-gradient(140deg, #0f7148, #0b5b3a);
  color: #f2fffa;
  font-size: 0.83rem;
  font-weight: 800;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 17, 25, 0.86);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  max-width: min(1080px, 96vw);
  max-height: 78vh;
  border-radius: 12px;
  border: 1px solid rgba(190, 215, 232, 0.45);
}

.image-lightbox p {
  margin: 0.8rem 0 0;
  color: #e7f4ff;
  font-size: 0.9rem;
  text-align: center;
  max-width: 72ch;
}

.image-lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(187, 211, 226, 0.55);
  background: rgba(14, 31, 45, 0.9);
  color: #e6f5ff;
  cursor: pointer;
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(187, 211, 226, 0.58);
  background: rgba(14, 31, 45, 0.88);
  color: #e6f5ff;
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-prev {
  left: 0.9rem;
}

.image-lightbox-next {
  right: 0.9rem;
}

.image-lightbox:not(.has-gallery) .image-lightbox-nav {
  display: none;
}

.is-lightbox-target {
  cursor: zoom-in;
}

@media (max-width: 991px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-estimator-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .testimonial-nav {
    display: none;
  }

  .portfolio-sort {
    width: 100%;
    margin-left: 0;
    margin-top: 0.45rem;
  }
}

@media (max-width: 640px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

/* --- Fine-tune comercial: home / servicii / contact --- */
.home-page .hero-home .hero-copy,
.services-hub-page .hero-services-hub .reveal,
.commercial-contact-page .hero .reveal {
  max-width: 64ch;
}

.home-page .section,
.services-hub-page .section,
.commercial-contact-page .section {
  padding-top: clamp(3.1rem, 6vw, 5.2rem);
  padding-bottom: clamp(3.1rem, 6vw, 5.2rem);
}

.home-page .section-title,
.services-hub-page .section-title,
.commercial-contact-page .section-title {
  letter-spacing: -0.018em;
}

.home-page .section-lead,
.services-hub-page .section-lead,
.commercial-contact-page .section-lead {
  max-width: 68ch;
}

.home-page .cta-row,
.services-hub-page .cta-row,
.commercial-contact-page .cta-row {
  gap: 0.7rem;
}

.home-page .cta-panel.trust-banner,
.services-hub-page .cta-panel.trust-banner,
.commercial-contact-page .cta-panel.trust-banner {
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
}

.services-hub-page .hero-services-hub .eyebrow,
.commercial-contact-page .hero .eyebrow {
  letter-spacing: 0.045em;
}

.services-hub-page .hero-services-hub .breadcrumbs,
.commercial-contact-page .hero .breadcrumbs {
  margin-top: 1rem;
}

.services-hub-page .gallery-panel,
.commercial-contact-page .contact-proof-grid,
.commercial-contact-page .contact-channels {
  margin-top: 0.2rem;
}

.home-page .commercial-kpis .metric,
.services-hub-page .card-grid .card,
.commercial-contact-page .card-grid .card {
  height: 100%;
}

@media (max-width: 991px) {
  .home-page .hero-home .hero-copy,
  .services-hub-page .hero-services-hub .reveal,
  .commercial-contact-page .hero .reveal {
    max-width: 100%;
  }

  .home-page .section,
  .services-hub-page .section,
  .commercial-contact-page .section {
    padding-top: clamp(2.4rem, 7vw, 3.6rem);
    padding-bottom: clamp(2.4rem, 7vw, 3.6rem);
  }

  .home-page .cta-row,
  .services-hub-page .cta-row,
  .commercial-contact-page .cta-row {
    gap: 0.55rem;
  }
}

/* --- Fine-tune comercial: pagini servicii individuale --- */
.service-detail-page .hero-service-detail .reveal {
  max-width: 63ch;
}

.service-detail-page .section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.service-detail-page .section-title {
  letter-spacing: -0.018em;
}

.service-detail-page .section-lead {
  max-width: 67ch;
}

.service-detail-page .cta-row {
  gap: 0.68rem;
}

.service-detail-page .cta-panel.trust-banner {
  padding: clamp(1.15rem, 2.4vw, 1.75rem);
}

/* Keep service-page CTA buttons visually identical with global button palette */
.service-detail-page .trust-banner .btn-secondary {
  background: linear-gradient(150deg, #21546e, #173f54 92%);
  border-color: #2a617d;
  color: #eef9ff;
  box-shadow: 0 10px 20px rgba(7, 41, 58, 0.28), inset 0 1px 0 rgba(166, 206, 228, 0.18);
}

.service-detail-page .trust-banner .btn-secondary:hover {
  background: linear-gradient(150deg, #255f7d, #1a4a63 92%);
  border-color: #2f6f8e;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(7, 41, 58, 0.34), inset 0 1px 0 rgba(166, 206, 228, 0.22);
}

/* Final priority: channel color coding remains consistent everywhere */
.btn[href^="tel:"] {
  color: #f4fff7;
  background: linear-gradient(140deg, #148a4e, #0f6b3c 90%);
  border-color: #117545;
  box-shadow: 0 10px 22px rgba(12, 86, 49, 0.28);
}

.btn[href^="tel:"]:hover {
  border-color: #159457;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(12, 86, 49, 0.34);
}

.btn[href*="wa.me"] {
  color: #eefcff;
  background: linear-gradient(145deg, #0f6a79, #0a4f5c 88%);
  border-color: #0d5f70;
  box-shadow: 0 10px 22px rgba(8, 66, 81, 0.28);
}

.btn[href*="wa.me"]:hover {
  border-color: #117386;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(8, 66, 81, 0.34);
}

.btn[href^="mailto:"] {
  color: #edf5ff;
  background: linear-gradient(145deg, #2a597a, #1f4460 90%);
  border-color: #315e7d;
  box-shadow: 0 10px 22px rgba(18, 50, 74, 0.28);
}

.btn[href^="mailto:"]:hover {
  border-color: #3a6e92;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(18, 50, 74, 0.34);
}

.service-detail-page .hero-service-detail .eyebrow {
  letter-spacing: 0.045em;
}

.service-detail-page .hero-service-detail .breadcrumbs {
  margin-top: 1rem;
}

.service-detail-page .card-grid .card,
.service-detail-page .catalog-grid .card {
  height: 100%;
}

@media (max-width: 991px) {
  .service-detail-page .hero-service-detail .reveal {
    max-width: 100%;
  }

  .service-detail-page .section {
    padding-top: clamp(2.35rem, 7vw, 3.5rem);
    padding-bottom: clamp(2.35rem, 7vw, 3.5rem);
  }

  .service-detail-page .cta-row {
    gap: 0.52rem;
  }
}

/* Credit autor website */
.site-author-credit {
  margin: 0.7rem 0 0;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(141, 186, 214, 0.32);
  background: rgba(10, 40, 60, 0.34);
  font-size: 0.86rem;
  line-height: 1.58;
  color: #d9e8f3;
}

.site-author-credit a {
  color: #79d1ff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-author-credit strong {
  color: #f4fbff;
  font-weight: 800;
}

/* Keep a single contact widget: hide legacy round WhatsApp floating button */
.whatsapp-float {
  display: none !important;
}

/* Mobile performance: disable decorative pulse animations that add paint cost */
@media (max-width: 767px) {
  body::after {
    animation: none;
    filter: none;
  }

  .quick-contact-call,
  .quick-contact-mail,
  .hero-highlight,
  .hero-highlight::after,
  .hero-highlight-ink::after,
  .mobile-contact-item svg {
    animation: none !important;
  }
}
