:root {
  --bg: #13335a;
  --surface: #1b4474;
  --surface-2: #24578f;
  --text: #f3f8ff;
  --muted: #d3e2f4;
  --primary: #4fafe2;
  --primary-2: #7dc8ef;
  --accent: #f8b81f;
  --border: rgba(198, 220, 246, 0.35);
  --shadow: 0 16px 36px rgba(4, 14, 28, 0.28);
  --radius: 16px;
  --max-width: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: radial-gradient(circle at 10% 8%, rgba(125, 200, 239, 0.25) 0%, rgba(125, 200, 239, 0) 40%),
    radial-gradient(circle at 92% 92%, rgba(248, 184, 31, 0.14) 0%, rgba(248, 184, 31, 0) 35%),
    linear-gradient(145deg, #123055 0%, #1b4574 54%, #1f4d81 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  position: relative;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.01rem;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(125, 200, 239, 0.8);
  outline-offset: 2px;
}

section[id] {
  scroll-margin-top: 100px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -50px;
  background: #0f2e48;
  color: #e8eef9;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

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

.section {
  padding: 5.5rem 0;
  position: relative;
}

.eyebrow {
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.bg-orb-1 {
  background: #4fafe2;
  top: -90px;
  left: -80px;
}

.bg-orb-2 {
  background: #f8b81f;
  bottom: -110px;
  right: -110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(16, 46, 82, 0.76);
  border-bottom: 1px solid rgba(159, 176, 203, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.25rem 0.45rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.brand-logo {
  width: auto;
  height: 34px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
}

.lang-switch {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.2rem;
  border: 1px solid rgba(159, 176, 203, 0.3);
  border-radius: 999px;
  background: rgba(9, 20, 36, 0.55);
}

.lang-switch a {
  min-width: 36px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  color: #d5e8fb;
}

.lang-switch a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06233d;
}

.nav-links a {
  color: #cfe0fb;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: transform 0.24s ease;
}

.nav-links a:hover {
  color: #eff6ff;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #cfe0fb;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.8rem 1.15rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06233d;
  box-shadow: 0 12px 24px rgba(79, 175, 226, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: #edf5ff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  padding-top: 4.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
}

.hero-content h1 span {
  color: #edf7ff;
}

.hero-text {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 62ch;
  text-align: justify;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics article {
  background: rgba(16, 37, 64, 0.46);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.hero-metrics h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.status-card,
.glass-card,
.service-card,
.project-card,
.timeline-item,
.contact-form,
.quote-wrap {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.8), rgba(17, 44, 75, 0.84));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.project-card:hover,
.contract-card:hover,
.shop-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 200, 239, 0.4);
  box-shadow: 0 24px 44px rgba(3, 11, 24, 0.45);
}

.status-card,
.glass-card {
  padding: 1.3rem;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 170px 170px;
  gap: 0.8rem;
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
}

.hero-photo-main {
  grid-row: 1 / 3;
}

.hero-photo-top,
.hero-photo-bottom {
  position: relative;
}

.hero-photo-top::after,
.hero-photo-bottom::after,
.hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 32, 0) 40%, rgba(6, 16, 32, 0.42));
  pointer-events: none;
}

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

.life-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(125, 200, 239, 0.24);
  background: rgba(11, 23, 41, 0.7);
  box-shadow: var(--shadow);
}

.life-shot img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.life-shot figcaption {
  padding: 0.85rem 1rem 1rem;
  color: #d7e8fb;
  font-size: 0.92rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.media-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(16, 37, 64, 0.45);
  box-shadow: var(--shadow);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.media-card-tall {
  grid-row: span 2;
}

.media-card-tall img {
  height: 490px;
}

.media-card figcaption {
  padding: 0.7rem 0.9rem 0.9rem;
  color: #dbe9fb;
  font-size: 0.9rem;
}

.media-zoom {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  border: 1px solid rgba(198, 220, 246, 0.5);
  background: rgba(8, 24, 43, 0.68);
  color: #eef6ff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.62rem;
  cursor: pointer;
  z-index: 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(3, 12, 23, 0.84);
  backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  padding: 1rem;
}

.lightbox.open {
  display: grid;
}

.lightbox-content {
  position: relative;
  width: min(960px, 100%);
  background: rgba(12, 31, 54, 0.95);
  border: 1px solid rgba(198, 220, 246, 0.42);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  padding: 0.8rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(198, 220, 246, 0.6);
  background: rgba(8, 24, 43, 0.72);
  color: #f0f7ff;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.lightbox-prev {
  left: 0.7rem;
}

.lightbox-next {
  right: 0.7rem;
}

.lightbox-content img,
.lightbox-content video {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  display: none;
  background: #0b1f37;
}

.lightbox-content img.active,
.lightbox-content video.active {
  display: block;
}

#lightboxCaption {
  margin: 0.7rem 0 0.2rem;
  color: #e5f1ff;
}

.lightbox-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border: 1px solid rgba(198, 220, 246, 0.56);
  background: rgba(8, 24, 43, 0.76);
  color: #eef6ff;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.logo-carousel {
  overflow: hidden;
  border: 1px solid rgba(198, 220, 246, 0.28);
  border-radius: 14px;
  background: rgba(18, 44, 73, 0.45);
  padding: 0.7rem 0;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 0.9rem;
  animation: logoScroll 26s linear infinite;
}

.logo-item {
  margin: 0;
  width: 170px;
  height: 74px;
  border-radius: 10px;
  border: 1px solid rgba(198, 220, 246, 0.35);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  padding: 0.45rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(3, 11, 24, 0.24);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.logo-item.is-square img {
  max-width: 72%;
  max-height: 92%;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.status-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dc8ef;
  box-shadow: 0 0 18px #7dc8ef;
}

.status-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: #d0ddf2;
}

.status-card li,
.glass-card p,
.service-card p,
.project-card p,
.contract-card p,
.shop-card p,
.faq-item p,
.timeline-item p,
.quote,
.contact-grid > .reveal > p,
.section-head > p:last-child,
.danarka-card p,
.life-shot figcaption,
.media-card figcaption,
.contact-list li,
.cart-summary p {
  text-align: justify;
  text-wrap: pretty;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0 0.9rem;
}

.tech-tags span {
  font-size: 0.76rem;
  border: 1px solid rgba(79, 175, 226, 0.45);
  background: rgba(79, 175, 226, 0.14);
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
  color: #cdeaff;
}

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

.service-card,
.project-card {
  padding: 1.3rem;
}

.contracts-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

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

.faq-item {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.8), rgba(17, 44, 75, 0.84));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.danarka-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 27, 51, 0.96) 0%, rgba(11, 36, 67, 0.94) 24%, rgba(16, 55, 98, 0.8) 42%, rgba(16, 55, 98, 0.28) 66%, rgba(16, 55, 98, 0.06) 100%),
    radial-gradient(circle at 14% 20%, rgba(107, 195, 255, 0.2), rgba(107, 195, 255, 0) 34%),
    url("media/danarka-dashboard-v2.png");
  background-repeat: no-repeat;
  background-position: center, center, 100% 0;
  background-size: 100% 100%, 100% 100%, cover;
  border: 1px solid rgba(198, 220, 246, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  width: 100%;
}

.danarka-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 23, 43, 0.06), rgba(8, 23, 43, 0.24)),
    linear-gradient(90deg, rgba(8, 27, 51, 0.08) 0%, rgba(8, 27, 51, 0) 48%, rgba(8, 27, 51, 0.14) 100%);
  pointer-events: none;
}

.danarka-card > * {
  position: relative;
  z-index: 1;
}

.danarka-card p,
.danarka-list {
  max-width: 62ch;
}

.danarka-badges {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 760px;
}

.danarka-badges span {
  border: 1px solid rgba(198, 220, 246, 0.44);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  color: #eef6ff;
  font-weight: 600;
}

.danarka-list {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #e6f1ff;
}

.danarka-list li {
  margin-bottom: 0.35rem;
}

.danarka-card .btn {
  margin-top: 1rem;
}

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

.contract-card,
.trust-item {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.8), rgba(17, 44, 75, 0.84));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contract-card {
  padding: 1.2rem;
}

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

.trust-item {
  min-height: 90px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #bfd2ef;
}

.service-card a {
  margin-top: 1rem;
  display: inline-flex;
  color: #9bd6f4;
  font-weight: 600;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(23, 37, 62, 0.55);
  color: #d9e7fb;
  padding: 0.46rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active {
  background: rgba(79, 175, 226, 0.22);
  color: #cfeaff;
  border-color: rgba(79, 175, 226, 0.5);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.shop-card {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.8), rgba(17, 44, 75, 0.84));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.shop-card-foot {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.shop-card-foot strong {
  color: #fff3d2;
}

.cart-panel {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.82), rgba(17, 44, 75, 0.86));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.7rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid rgba(180, 202, 233, 0.18);
  border-radius: 10px;
  padding: 0.7rem;
}

.cart-item button {
  background: rgba(248, 184, 31, 0.18);
  color: #fdd47a;
  border: 1px solid rgba(248, 184, 31, 0.36);
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
}

.cart-summary {
  border-top: 1px solid rgba(180, 202, 233, 0.16);
  padding-top: 0.7rem;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin: 0.35rem 0;
}

.cart-total {
  font-size: 1.06rem;
}

.checkout-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
}

.checkout-form input {
  width: 100%;
  border: 1px solid rgba(159, 176, 203, 0.35);
  background: rgba(7, 24, 43, 0.42);
  color: #e8eef9;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.project-card .tag {
  color: #f6cf84;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.project-card.hidden {
  display: none;
}

.method-grid {
  display: grid;
  gap: 1.3rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.1rem;
}

.timeline-item span {
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
  background: rgba(79, 175, 226, 0.2);
  border: 1px solid rgba(125, 200, 239, 0.5);
  color: #cfeaff;
}

.testimonials .quote-wrap {
  padding: 1.5rem;
}

.quote {
  margin: 0;
  display: none;
  font-size: 1.08rem;
  color: #d8e6fa;
}

.quote.active {
  display: block;
}

.quote cite {
  display: block;
  margin-top: 0.9rem;
  color: #9fd9d1;
  font-style: normal;
}

.quote-controls {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: #c8d8ef;
}

.contact-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.contact-map {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(198, 220, 246, 0.35);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.contact-form {
  padding: 1.3rem;
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  color: #bfd1ec;
  font-weight: 600;
  font-size: 0.94rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(159, 176, 203, 0.35);
  background: rgba(7, 24, 43, 0.42);
  color: #e8eef9;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(125, 200, 239, 0.46);
  border-color: rgba(125, 200, 239, 0.46);
}

.form-feedback {
  min-height: 1.1rem;
  color: #9bd6f4;
  font-size: 0.9rem;
}

.site-footer {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(159, 176, 203, 0.16);
  background: rgba(13, 36, 62, 0.74);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links a {
  border: 1px solid rgba(198, 220, 246, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #edf6ff;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.social-links a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #04210f;
  padding: 0.76rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.38);
  z-index: 40;
}

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

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

.hero-metrics .reveal:nth-child(1),
.cards-grid .reveal:nth-child(1),
.project-grid .reveal:nth-child(1),
.contracts-grid .reveal:nth-child(1),
.faq-grid .reveal:nth-child(1),
.life-grid .reveal:nth-child(1),
.media-grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.hero-metrics .reveal:nth-child(2),
.cards-grid .reveal:nth-child(2),
.project-grid .reveal:nth-child(2),
.contracts-grid .reveal:nth-child(2),
.faq-grid .reveal:nth-child(2),
.life-grid .reveal:nth-child(2),
.media-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.hero-metrics .reveal:nth-child(3),
.cards-grid .reveal:nth-child(3),
.project-grid .reveal:nth-child(3),
.contracts-grid .reveal:nth-child(3),
.faq-grid .reveal:nth-child(3),
.life-grid .reveal:nth-child(3),
.media-grid .reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.contracts-grid .reveal:nth-child(4),
.life-grid .reveal:nth-child(4),
.media-grid .reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.life-grid .reveal:nth-child(5),
.media-grid .reveal:nth-child(5) {
  transition-delay: 0.33s;
}

.floating {
  animation: floatY 4.6s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .contact-grid,
  .cards-grid,
  .project-grid,
  .contracts-grid,
  .shop-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .media-card-tall {
    grid-row: auto;
    grid-column: span 2;
  }

  .media-card-tall img {
    height: 260px;
  }

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

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

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-cta {
    display: none;
  }

  .lang-switch {
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 16, 29, 0.98);
    border-bottom: 1px solid rgba(159, 176, 203, 0.2);
    padding: 0.9rem 1rem 1.2rem;
    transform: translateY(-160%);
    transition: transform 0.3s ease;
  }

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

  .hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-photo-main {
    grid-row: auto;
  }

  .hero-photo img {
    height: 230px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4.3rem 0;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .quote {
    font-size: 1rem;
  }

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

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

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

  .media-card-tall {
    grid-column: auto;
  }

  .media-card img,
  .media-card video,
  .media-card-tall img {
    height: 220px;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .danarka-card {
    padding: 1.25rem;
    background-position: center, center, 72% 0;
  }
}

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

  .logo-track {
    animation: none !important;
  }
}

:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #edf3fb;
  --text: #132238;
  --muted: #5f6f86;
  --border: rgba(21, 51, 84, 0.1);
  --shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  --brand-body-font: "Plus Jakarta Sans", sans-serif;
  --brand-heading-font: "Sora", sans-serif;
}

body {
  font-family: var(--brand-body-font);
  background:
    radial-gradient(circle at 0% 0%, rgba(98, 182, 255, 0.16) 0%, rgba(98, 182, 255, 0) 34%),
    radial-gradient(circle at 100% 8%, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 24%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 52%, #eef3f9 100%);
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: var(--brand-heading-font);
  color: var(--text);
}

p {
  color: var(--muted);
}

main::before {
  background-image: linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
}

.bg-orb {
  opacity: 0.12;
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.site-header.header-dark {
  background: rgba(14, 28, 48, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.header-light .nav-links a,
.site-header.header-light .brand,
.site-header.header-light .lang-switch a {
  color: #1f3a5b;
}

.site-header.header-light .nav-links a:hover {
  color: #0f172a;
}

.site-header.header-light .menu-toggle {
  border-color: rgba(19, 34, 56, 0.12);
}

.site-header.header-light .menu-toggle span {
  background: #1f3a5b;
}

.site-header.header-light .lang-switch {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(19, 34, 56, 0.12);
}

.brand-logo-frame {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.brand-logo-frame.is-plain {
  width: 230px;
  height: 64px;
  align-items: flex-end;
}

.brand-logo-frame.is-framed {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.42rem 0.62rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.brand-logo {
  height: 58px;
  max-width: none;
  transform: translate(8px, -14px) scale(1.4);
  transform-origin: left center;
}

.brand-logo-frame.is-framed .brand-logo {
  height: 54px;
  transform: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: #224161;
  border-color: rgba(19, 34, 56, 0.12);
}

.hero {
  padding-top: 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(98, 182, 255, 0.06));
  pointer-events: none;
}

.hero-grid {
  gap: 2.6rem;
  align-items: start;
}

.hero-content h1 span {
  display: block;
  margin-top: 0.18rem;
  color: var(--primary);
}

.hero-text {
  color: #50627d;
}

.hero-metrics article,
.status-card,
.glass-card,
.service-card,
.project-card,
.timeline-item,
.contact-form,
.quote-wrap,
.contract-card,
.shop-card,
.cart-panel,
.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(19, 34, 56, 0.09);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  backdrop-filter: blur(8px);
}

.hero-metrics h3,
.status-card h3,
.glass-card h4,
.service-card h3,
.project-card h3,
.contract-card h3,
.shop-card h3,
.faq-item h3,
.timeline-item h3,
.contact-form h3,
.cart-panel h3 {
  color: var(--text);
}

.status-card li,
.glass-card p,
.service-card p,
.project-card p,
.contract-card p,
.shop-card p,
.faq-item p,
.timeline-item p,
.quote,
.contact-grid > .reveal > p,
.section-head > p:last-child,
.life-shot figcaption,
.media-card figcaption,
.contact-list li,
.cart-summary p,
.contact-form label {
  color: #60718a;
}

.status-head p {
  color: #345173;
}

.hero-photo,
.media-card,
.life-shot,
.contact-map {
  border-color: rgba(19, 34, 56, 0.08);
  box-shadow: var(--shadow);
}

.logo-carousel {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(19, 34, 56, 0.08);
}

.logo-item {
  background: #ffffff;
  border-color: rgba(19, 34, 56, 0.08);
}

.tech-tags span {
  border-color: rgba(15, 111, 214, 0.16);
  background: rgba(98, 182, 255, 0.12);
  color: #24517d;
}

.service-card a {
  color: var(--primary);
}

.filter-btn {
  background: rgba(255, 255, 255, 0.92);
  color: #355270;
  border-color: rgba(19, 34, 56, 0.1);
}

.filter-btn.active {
  background: rgba(98, 182, 255, 0.15);
  color: #0f6fd6;
  border-color: rgba(15, 111, 214, 0.18);
}

.project-card .tag,
.shop-card-foot strong {
  color: #a86100;
}

.timeline-item span {
  background: rgba(98, 182, 255, 0.14);
  border-color: rgba(15, 111, 214, 0.16);
  color: #0f6fd6;
}

.quote cite {
  color: #2a7a73;
}

.contact-form input,
.contact-form textarea,
.checkout-form input {
  background: #f8fbff;
  color: #14253b;
  border-color: rgba(19, 34, 56, 0.12);
}

.form-feedback {
  color: #24517d;
}

#servicios,
#services,
#galeria,
#gallery,
#contacto,
#contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(235, 242, 250, 0.45));
}

#danarka .danarka-card {
  border-color: rgba(173, 210, 255, 0.12);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.18);
}

#danarka .danarka-card h2,
#danarka .danarka-card h3,
#danarka .danarka-card p,
#danarka .danarka-card li,
#danarka .danarka-badges span {
  color: #eef6ff;
}

.site-footer {
  background: #0f1d31;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.site-footer p,
.site-footer a {
  color: #d8e7fb;
}

.social-links a {
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.22);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(98, 182, 255, 0.16), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(15, 111, 214, 0.12);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  flex: 0 0 auto;
}

.icon-support { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 1 1 16 0'/%3E%3Cpath d='M4 12v4a2 2 0 0 0 2 2h2v-6H6a2 2 0 0 0-2 2Zm16 0v4a2 2 0 0 1-2 2h-2v-6h2a2 2 0 0 1 2 2Zm-8 6v2'/%3E%3C/svg%3E"); }
.icon-network { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='7' height='5' rx='1.5'/%3E%3Crect x='14' y='4' width='7' height='5' rx='1.5'/%3E%3Crect x='8.5' y='15' width='7' height='5' rx='1.5'/%3E%3Cpath d='M6.5 9v3h11V9M12 12v3'/%3E%3C/svg%3E"); }
.icon-cloud { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 18a4 4 0 1 1 .8-7.9A5.5 5.5 0 0 1 18.5 12h.5a3.5 3.5 0 1 1 0 7H7Z'/%3E%3Cpath d='M12 10v8m0 0-3-3m3 3 3-3'/%3E%3C/svg%3E"); }
.icon-calendar { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4m8-4v4M3 10h18'/%3E%3C/svg%3E"); }
.icon-brief { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M9 7V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2m-6 5h6'/%3E%3C/svg%3E"); }
.icon-tools { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5.4 5.4L4 17v3h3l5.3-5.3a4 4 0 0 0 5.4-5.4l-2.2 2.2-3.2-3.2 2.2-2.2Z'/%3E%3C/svg%3E"); }
.icon-outsourcing { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7a3 3 0 1 0 0 .1M16 7a3 3 0 1 0 0 .1M12 20a4 4 0 0 0-8 0m16 0a4 4 0 0 0-8 0M12 13a3 3 0 1 0 0 .1'/%3E%3C/svg%3E"); }
.icon-shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v6c0 5 3.5 7.8 7 9 3.5-1.2 7-4 7-9V6l-7-3Z'/%3E%3Cpath d='m9.5 12 1.8 1.8 3.2-3.6'/%3E%3C/svg%3E"); }
.icon-onsite { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.3 6-10a6 6 0 1 0-12 0c0 4.7 6 10 6 10Z'/%3E%3Ccircle cx='12' cy='11' r='2.5'/%3E%3C/svg%3E"); }
.icon-map { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18-6 3V6l6-3m0 15 6-3m-6 3V3m6 12 6 3V3l-6 3m0 9V6'/%3E%3C/svg%3E"); }
.icon-diagnosis { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='m20 20-3.5-3.5M11 8v3l2 2'/%3E%3C/svg%3E"); }
.icon-improve { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 16V8m0 8h8M20 8v8m0-8h-8M4 16l6-6 4 4 6-6'/%3E%3C/svg%3E"); }

.hero-highlights {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-highlight,
.trust-note,
.method-pill,
.contact-quick-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 111, 214, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.hero-highlight strong,
.trust-note strong,
.method-pill strong,
.contact-quick-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.hero-highlight small,
.trust-note small,
.method-pill small,
.contact-quick-card small {
  display: block;
  color: #64748b;
  line-height: 1.45;
}

.service-card,
.contract-card {
  position: relative;
  padding-top: 1.35rem;
}

.service-card .card-icon,
.contract-card .card-icon {
  margin-bottom: 1rem;
}

.service-card h3,
.contract-card h3 {
  margin-top: 0;
}

.trust-notes,
.method-summary,
.contact-quick {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

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

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

.contact-quick {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.timeline-item {
  grid-template-columns: 48px 1fr;
}

.timeline-item span {
  position: relative;
  z-index: 1;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1rem 0.9rem 3.7rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 111, 214, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(98, 182, 255, 0.16), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(15, 111, 214, 0.12);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.contact-list li:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E"); }
.contact-list li:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.4 19.4 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7l.4 2.6a2 2 0 0 1-.6 1.8L7 9.9a16 16 0 0 0 7.1 7.1l1.8-1.9a2 2 0 0 1 1.8-.6l2.6.4A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E"); }
.contact-list li:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.3 6-10a6 6 0 1 0-12 0c0 4.7 6 10 6 10Z'/%3E%3Ccircle cx='12' cy='11' r='2.5'/%3E%3C/svg%3E"); }
.contact-list li:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18-6 3V6l6-3m0 15 6-3m-6 3V3m6 12 6 3V3l-6 3m0 9V6'/%3E%3C/svg%3E"); }
.contact-list li:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7a3 3 0 1 0 0 .1M16 7a3 3 0 1 0 0 .1M12 20a4 4 0 0 0-8 0m16 0a4 4 0 0 0-8 0M12 13a3 3 0 1 0 0 .1'/%3E%3C/svg%3E"); }
.contact-list li:nth-child(6)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230f6fd6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }

@media (max-width: 980px) {
  .hero-highlights,
  .trust-notes,
  .method-summary {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero-highlights {
    margin-top: 1rem;
  }

  .hero-highlight,
  .trust-note,
  .method-pill,
  .contact-quick-card {
    padding: 0.85rem 0.9rem;
  }

  .contact-list li {
    padding: 0.85rem 0.9rem 0.85rem 3.4rem;
  }

  .contact-list li::before {
    width: 38px;
    height: 38px;
    left: 0.9rem;
  }
}

.section {
  padding: 6rem 0;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  letter-spacing: -0.03em;
}

.section-head > p:last-child {
  max-width: 62ch;
}

.site-header {
  top: 14px;
  width: min(1340px, calc(100% - 1.4rem));
  margin: 0 auto;
  border-radius: 18px;
}

.nav {
  min-height: 86px;
  padding-inline: 1.35rem;
  gap: 1.5rem;
}

.brand {
  gap: 0.95rem;
}

.hero {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 4rem;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 111, 214, 0.14) 0%, rgba(15, 111, 214, 0) 72%);
  pointer-events: none;
  filter: blur(4px);
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 1rem;
  width: 6px;
  height: 108px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), rgba(98, 182, 255, 0.2));
  box-shadow: 0 10px 30px rgba(15, 111, 214, 0.14);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 1.02;
  max-width: 10ch;
}

.hero-text {
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  gap: 1rem;
}

.btn {
  border-radius: 14px;
}

.btn-primary {
  box-shadow: 0 16px 30px rgba(15, 111, 214, 0.2);
}

.btn-ghost {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.hero-metrics {
  gap: 1.1rem;
}

.hero-metrics article {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.92)),
    linear-gradient(135deg, rgba(98, 182, 255, 0.1), rgba(245, 158, 11, 0.04));
  border: 1px solid rgba(15, 111, 214, 0.08);
}

.hero-metrics article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

.hero-metrics h3 {
  font-size: 1.75rem;
  color: #0f2441;
}

.hero-metrics p {
  color: #617189;
  font-size: 0.95rem;
}

.hero-panel {
  gap: 1.15rem;
}

.status-card,
.glass-card,
.service-card,
.project-card,
.timeline-item,
.contact-form,
.quote-wrap,
.contract-card,
.shop-card,
.cart-panel,
.faq-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.93));
  border: 1px solid rgba(19, 34, 56, 0.08);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.status-card::before,
.glass-card::before,
.service-card::before,
.project-card::before,
.contract-card::before,
.shop-card::before,
.timeline-item::before,
.faq-item::before,
.quote-wrap::before,
.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 111, 214, 0), rgba(15, 111, 214, 0.28), rgba(15, 111, 214, 0));
}

.status-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 251, 255, 0.95)),
    radial-gradient(circle at top left, rgba(98, 182, 255, 0.1), rgba(98, 182, 255, 0));
}

.glass-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.95)),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.06), rgba(245, 158, 11, 0));
}

.service-card:hover,
.project-card:hover,
.contract-card:hover,
.shop-card:hover,
.timeline-item:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 111, 214, 0.12);
  box-shadow:
    0 26px 44px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-photo,
.media-card,
.life-shot,
.contact-map,
.logo-carousel {
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}

.hero-collage {
  gap: 1rem;
}

.hero-photo-main {
  transform: translateY(8px);
}

.hero-photo-top,
.hero-photo-bottom {
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.cards-grid,
.project-grid,
.contracts-grid,
.faq-grid,
.life-grid,
.media-grid {
  gap: 1.2rem;
}

#servicios,
#services,
#contacto,
#contact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(236, 243, 251, 0.58));
}

#proyectos,
#projects,
#clientes,
#clients,
.testimonials,
#faq {
  position: relative;
}

#proyectos::before,
#projects::before,
#clientes::before,
#clients::before,
.testimonials::before,
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(231, 239, 248, 0.42));
  pointer-events: none;
}

.logo-carousel {
  padding: 1rem 0;
}

.logo-item {
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.quote-wrap {
  padding: 1.8rem;
}

.contact-form,
.cart-panel {
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .site-header {
    top: 8px;
    width: calc(100% - 1rem);
  }

  .nav {
    min-height: 78px;
    padding-inline: 1rem;
    gap: 1rem;
  }

  .brand-logo {
    height: 50px;
    transform: translate(6px, -12px) scale(1.32);
  }

  .brand-logo-frame.is-plain {
    width: 188px;
    height: 56px;
  }

  .brand-logo-frame.is-framed .brand-logo {
    height: 46px;
    transform: none;
  }

  .hero-content::before {
    display: none;
  }

  .hero-content h1 {
    max-width: 100%;
  }
}
