:root {
  --green: #167a57;
  --green-2: #2eb67d;
  --blue: #1554a1;
  --blue-2: #3389ff;
  --dark: #0f1f2f;
  --muted: #60758a;
  --bg: #f3f8fc;
  --white: #ffffff;
  --container: 1800px;
  --stroke: #dce8f3;
  --shadow-soft: 0 18px 44px rgba(12, 40, 72, 0.14);
  --shadow-card: 0 24px 52px rgba(12, 40, 72, 0.2);
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", "Montserrat", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(900px 540px at 100% -12%, rgba(51, 137, 255, 0.28), transparent 58%),
    radial-gradient(900px 620px at -5% 0%, rgba(46, 182, 125, 0.22), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(228, 240, 255, 0.48)),
    var(--bg);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), 96vw) !important;
  max-width: min(var(--container), 96vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero,
.page-hero {
  width: min(var(--container), 96vw) !important;
  max-width: min(var(--container), 96vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(240, 247, 255, 0.38));
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 28px rgba(18, 53, 93, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
}

.brand-mark {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0d3f72;
  line-height: 1;
}

.brand-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #3b678d;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--white);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 6px 10px;
}

.menu > li { position: relative; }

.menu a {
  border-radius: 999px;
  padding: 8px 12px;
  transition: all 0.25s ease;
}

.menu a:hover,
.menu a.active,
.menu .has-sub:hover > a {
  color: var(--blue);
  background: rgba(51, 137, 255, 0.12);
}

.menu-cta {
  background: linear-gradient(130deg, var(--blue), var(--blue-2));
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(21, 84, 161, 0.26);
}

.menu-cta:hover { filter: brightness(1.04); }

.has-sub {
  display: flex;
  align-items: center;
  gap: 4px;
}

.submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  font-size: 15px;
  padding: 2px 6px;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 10px;
  min-width: 290px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(231, 242, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  position: absolute;
  top: 38px;
  left: 0;
  display: none;
  z-index: 20;
}

.submenu li a {
  display: block;
  padding: 8px 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
}

.submenu li a:hover { background: #ebf3ff; }

.menu > li:hover .submenu,
.menu > li:focus-within .submenu,
.menu > li.open .submenu {
  display: block;
}

.hero {
  width: min(var(--container), 96vw);
  margin: 16px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: clamp(420px, 62vw, 700px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 30, 52, 0.74), rgba(16, 67, 122, 0.25));
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 3;
  padding: 0 32px !important;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.hero-content h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4.1vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.7px;
}

.hero-content p {
  margin: 14px 0 0;
  max-width: 680px;
  font-size: clamp(15px, 1.9vw, 20px);
  color: #d9edff;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.back-wrap {
  padding-top: 14px;
}

.back-btn {
  border: 1px solid #cbdcf0;
  background: #fff;
  color: #1d4f7f;
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 31, 47, 0.2);
  cursor: pointer;
}

.dot.active { background: var(--green-2); }

.section {
  padding: 72px 0;
  animation: fadeUp 0.7s ease both;
}

.page-hero {
  width: min(var(--container), 96vw);
  margin: 16px auto 0;
  border-radius: 20px;
  background: linear-gradient(130deg, rgba(46, 182, 125, 0.13), rgba(51, 137, 255, 0.12));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  margin: 0;
  padding: 34px 0 42px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
}

.breadcrumb {
  padding-top: 16px;
  color: #4c6984;
  font-size: 14px;
}

.title {
  text-align: center;
  margin: 0 0 36px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: #102b45;
}

.title-left { text-align: left; margin-bottom: 8px; }

.section-head { margin-bottom: 26px; }

.muted { color: var(--muted); margin: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services {
  padding-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-item {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(229, 243, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.service-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #11385d;
}

.service-item p {
  margin: 0;
  color: #4f6680;
  font-size: 14px;
}

.card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(239, 247, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.card-body { padding: 16px 14px 22px; }

.card h3 {
  margin: 0;
  font-size: 17px;
  min-height: 50px;
  text-transform: uppercase;
}

.btn {
  margin-top: 12px;
  display: inline-block;
  color: var(--white);
  background: linear-gradient(130deg, var(--blue), var(--blue-2));
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-alt {
  background: linear-gradient(130deg, var(--green), var(--green-2));
}

.sut-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 22px;
}

.sut-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.sut-card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}

.sut-form {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 10px;
  margin-bottom: 16px;
}

.sut-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.critical-toggle {
  margin-top: 8px;
  margin-bottom: 12px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.kpi-item {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  background: #f9fcff;
}

.kpi-item strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: var(--blue);
}

.kpi-item span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.sut-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sut-table th,
.sut-table td {
  padding: 10px;
  border-bottom: 1px solid #e7eff7;
  text-align: left;
  white-space: nowrap;
}

.sut-table th {
  color: #385675;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.status-pending {
  background: #fff1c2;
  color: #7d5d00;
}

.status-loaded {
  background: #d9edff;
  color: #004d8f;
}

.status-verified {
  background: #d7f7e8;
  color: #09603a;
}

.verify-btn {
  border: 1px solid #c7dbef;
  background: #fff;
  color: #1a538c;
  border-radius: 8px;
  padding: 5px 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.verify-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.sut-alerts { align-self: start; }

.alert-list {
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.alert-item {
  border-left: 4px solid var(--blue);
  background: #f3f9ff;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 14px;
  color: #23476d;
}

.alert-item.warning {
  border-left-color: #ce8a13;
  background: #fff9ec;
  color: #6d560e;
}

.alert-item.danger {
  border-left-color: #c23737;
  background: #fff3f3;
  color: #7b1d1d;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-text h2,
.testimonials h2,
.contact h2,
.block h2,
.panel h2 {
  margin: 0 0 15px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.about-text p { color: #3d5670; }

.about-logo {
  text-align: center;
  padding: 12px;
}

.about-logo img {
  max-height: 260px;
  width: auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.block { margin-bottom: 28px; }

.testimonials { background: transparent; }

.testimonial-grid,
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.testimonial,
.panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  border-radius: var(--radius-lg);
}

.testimonial { border-top: 4px solid var(--green); }

.testimonial h4 {
  margin: 0 0 4px;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1.35;
}

.testimonial .role {
  font-size: 12px;
  color: #4e6882;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.shop-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.shop-wrap > main,
.shop-wrap > .sidebar {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.73), rgba(235, 245, 255, 0.57));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  backdrop-filter: blur(11px);
}

.shop-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}

.shop-tools p {
  margin: 0;
  color: #4f6780;
  font-size: 14px;
}

.shop-tools select {
  border: 1px solid #d0e1f2;
  border-radius: 10px;
  padding: 8px 10px;
  font-family: inherit;
}

.shop-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-products li {
  border: 1px solid #e1ecf7;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.shop-thumb {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid #e3edf8;
  display: block;
  padding: 4px;
}

.product-top {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 18px;
  margin-bottom: 18px;
}

.detail-image {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dce8f3;
  padding: 6px;
}

.detail-content h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
}

.detail-category {
  margin: 0 0 12px;
  color: #4f6780;
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-actions input {
  width: 88px;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0 16px;
}

.highlight-pill {
  background: #f0f7ff;
  border: 1px solid #cfe2f7;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  color: #1a3c5f;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-pill i {
  color: #1554a1;
  font-size: 15px;
}

.detail-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(21, 84, 161, 0.12);
}

.detail-box-header i {
  font-size: 22px;
  color: #1554a1;
}

.detail-box-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #102a43;
}

.detail-method-box {
  background: linear-gradient(145deg, rgba(240, 249, 255, 0.88), rgba(224, 242, 254, 0.72));
  border: 1px solid #bae6fd;
}

.detail-method-box .detail-box-header i {
  color: #0284c7;
}

.detail-method-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #234567;
}

.detail-method-list li {
  margin-bottom: 8px;
}

.training-visuals-section {
  margin: 28px 0 24px;
}

.section-title-wrap {
  margin-bottom: 14px;
}

.training-visuals-title {
  font-size: 18px;
  font-weight: 700;
  color: #102a43;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.training-visuals-title i {
  color: #1554a1;
}

.training-visuals-sub {
  margin: 0;
  font-size: 13.5px;
  color: #48627d;
}

.training-visuals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.training-visual-card {
  background: #ffffff;
  border: 1px solid #d9e6f2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(16, 42, 67, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.training-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.12);
  border-color: #bed6ee;
}

.visual-img-wrap {
  position: relative;
  width: 100%;
  height: 155px;
  background: #f1f5f9;
}

.visual-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(16, 42, 67, 0.85);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.visual-badge i {
  color: #38bdf8;
}

.visual-card-body {
  padding: 12px 14px 14px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.visual-card-body h4 {
  margin: 0 0 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #102a43;
}

.visual-card-body p {
  margin: 0;
  font-size: 12px;
  color: #48627d;
  line-height: 1.45;
}

.detail-deliverables-box {
  background: linear-gradient(135deg, #0f2742, #16538c) !important;
  color: #ffffff !important;
  border-radius: 14px !important;
  padding: 22px !important;
  border: 0 !important;
  box-shadow: var(--shadow-card);
}

.detail-deliverables-box .detail-box-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-deliverables-box .detail-box-header h3 {
  color: #ffffff !important;
}

.detail-deliverables-box .detail-box-header i {
  color: #38bdf8 !important;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.deliverable-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.deliverable-item i {
  font-size: 24px;
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-item h4 {
  margin: 0 0 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.deliverable-item p {
  margin: 0;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.45;
}

.related-title {
  margin: 24px 0 12px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-item {
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(235, 246, 255, 0.56));
  backdrop-filter: blur(10px);
}

.related-item img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid #e3edf8;
}

.related-item a {
  color: #1a3c5f;
  font-weight: 500;
}

.shop-products li:hover {
  border-color: #bed6ee;
  transform: translateY(-2px);
}

.shop-products a {
  color: #1a3c5f;
  font-weight: 500;
  line-height: 1.45;
}

.price {
  color: #112f4b;
  font-weight: 700;
  margin-top: 6px;
  font-size: 14px;
}

.pagination {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  align-items: center;
}

.pagination button {
  border: 1px solid #d0e1f2;
  border-radius: 10px;
  background: #fff;
  color: #204e7d;
  min-width: 36px;
  height: 36px;
  cursor: pointer;
  font-weight: 600;
}

.pagination button.active {
  background: #ebf4ff;
  color: var(--blue);
  border-color: #bdd8f6;
}

.sidebar h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.sidebar-block { margin-bottom: 28px; }

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.search-box input {
  border: 1px solid #d6e4f2;
  padding: 9px 10px;
  border-radius: 10px;
}

.search-box button {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(130deg, var(--green), var(--green-2));
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
}

.sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-list li {
  border-bottom: 1px solid #edf2f8;
  padding: 8px 0;
}

.sidebar-list li a:hover,
.sidebar-list li a.active {
  color: var(--blue);
}

.no-results {
  margin: 16px 0;
  color: #667c90;
}

.contact .subtitle {
  margin-top: -8px;
  margin-bottom: 18px;
  color: #5b7083;
  font-weight: 500;
}

.faq .accordion {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq .accordion-item {
  border: 1px solid var(--stroke);
}

.faq .accordion-button {
  font-weight: 600;
  color: #0f3558;
  background: #ffffff;
}

.faq .accordion-button:not(.collapsed) {
  background: #eef5ff;
  color: #0b4378;
}

.faq .accordion-body {
  color: #4e6782;
  background: #fcfeff;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field-full { grid-column: 1 / -1; }

input, textarea, select {
  width: 100%;
  border: 1px solid #d6e4f2;
  padding: 12px 13px;
  font-family: inherit;
  font-size: 14px;
  border-radius: 12px;
  background: #fff;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #8cb8ea;
  box-shadow: 0 0 0 3px rgba(51, 137, 255, 0.17);
}

textarea { min-height: 130px; resize: vertical; }

.captcha {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3c5570;
  font-weight: 600;
}

.submit {
  border: 0;
  color: #fff;
  background: linear-gradient(130deg, var(--blue), var(--blue-2));
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 0.4px;
}

.submit:hover { filter: brightness(1.03); }

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
}

.footer {
  background: linear-gradient(155deg, #0c2237, #143857);
  color: #e9f3fc;
  margin-top: 55px;
  padding-top: 44px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  padding-bottom: 36px;
}

.footer h3 {
  margin-top: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 18px;
}

.footer p { margin: 4px 0; color: #cfe2f4; }

.socials {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(207, 226, 244, 0.35);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5faff;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  border-top: 1px solid rgba(207, 226, 244, 0.2);
  padding: 18px 0 26px;
  text-align: center;
  font-size: 13px;
  color: #cbdfef;
}

.float-wa {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(30, 168, 86, 0.34);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.float-wa svg {
  width: 30px;
  height: 30px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .hero-content h1 { max-width: 680px; }
}

@media (max-width: 1100px) {
  .shop-products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap,
  .testimonial-grid,
  .grid-2,
  .footer-grid,
  .shop-wrap,
  .sut-grid { grid-template-columns: 1fr; }
  form,
  .sut-form { grid-template-columns: 1fr; }

  .hero-content {
    top: auto;
    bottom: 28px;
    transform: none;
  }

  .hero-content p { max-width: 90%; }
  .product-top { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }

  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 86px;
    right: 4vw;
    left: 4vw;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(235, 244, 255, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 6px;
    box-shadow: 0 20px 45px rgba(9, 23, 41, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 100;
  }

  .menu.show { display: flex; }

  .menu > li {
    width: 100%;
    list-style: none;
  }

  .menu > li > a {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .menu > li > a:hover,
  .menu > li > a:active {
    background: rgba(26, 115, 232, 0.08);
    color: var(--blue);
  }

  .has-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  .has-sub > a {
    flex: 1;
    display: block;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .has-sub.open > a {
    color: var(--blue);
    background: rgba(26, 115, 232, 0.08);
  }

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--dark);
    cursor: pointer;
    font-size: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    transition: transform 0.25s ease, color 0.2s ease;
  }

  .has-sub.open .submenu-toggle {
    transform: rotate(180deg);
    color: var(--blue);
  }

  .submenu {
    position: static;
    border: 0;
    box-shadow: none;
    width: 100%;
    flex-basis: 100%;
    padding: 6px 8px 6px 14px;
    background: rgba(240, 246, 255, 0.7);
    border-left: 3px solid var(--blue);
    border-radius: 0 10px 10px 0;
    margin-top: 4px;
    display: none;
    list-style: none;
  }

  .submenu li {
    width: 100%;
  }

  .submenu li a {
    display: block;
    padding: 8px 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  .submenu li a:hover,
  .submenu li a:active {
    background: #ffffff;
    color: var(--blue);
    padding-left: 14px;
  }

  .menu > li:hover .submenu { display: none; }
  .menu > li.open .submenu { display: block; }
}

@media (max-width: 560px) {
  .cards,
  .shop-products,
  .kpi-row,
  .service-grid { grid-template-columns: 1fr; }

  .title { margin-bottom: 22px; }
  .section { padding: 52px 0; }
  .brand-mark { font-size: 22px; }
  .brand-sub { font-size: 9px; }
  .nav { min-height: 78px; }
  .menu { top: 78px; }
  .hero { border-radius: 18px; }

  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 14px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { width: 100%; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .float-wa {
    width: 54px;
    height: 54px;
    right: 12px;
    bottom: 14px;
  }
}

/* -------------------- */
/* XTRA-inspired theme  */
/* -------------------- */
:root {
  --xtra-ink: #091729;
  --xtra-panel: rgba(255, 255, 255, 0.72);
  --xtra-panel-strong: rgba(255, 255, 255, 0.9);
  --xtra-border: rgba(255, 255, 255, 0.8);
  --xtra-shadow: 0 24px 70px rgba(8, 29, 56, 0.2);
  --ambient-opacity: 0.56;
  --ambient-blur: 74px;
  --ambient-speed-a: 13s;
  --ambient-speed-b: 16s;
  --card-glow: rgba(105, 177, 255, 0.22);
  --mx: 50%;
  --my: 18%;
  --hero-content-x: 0px;
  --hero-content-y: 0px;
  --xtra-glow: radial-gradient(circle at 18% 12%, rgba(29, 168, 106, 0.28), transparent 42%),
    radial-gradient(circle at 82% 20%, rgba(47, 124, 255, 0.3), transparent 48%),
    radial-gradient(circle at 60% 88%, rgba(95, 215, 177, 0.2), transparent 38%);
}

body {
  color: var(--xtra-ink);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 30%),
    var(--xtra-glow),
    linear-gradient(140deg, #eef5ff 0%, #eaf8f2 45%, #e8f4ff 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(var(--ambient-blur));
  opacity: var(--ambient-opacity);
}

body::before {
  width: 40vw;
  height: 40vw;
  min-width: 260px;
  min-height: 260px;
  top: -10vh;
  left: -10vw;
  background: radial-gradient(circle, rgba(38, 178, 124, 0.34), rgba(38, 178, 124, 0));
  animation: ambientFloatA var(--ambient-speed-a) ease-in-out infinite alternate;
}

body::after {
  width: 45vw;
  height: 45vw;
  min-width: 280px;
  min-height: 280px;
  bottom: -18vh;
  right: -12vw;
  background: radial-gradient(circle, rgba(42, 128, 246, 0.32), rgba(42, 128, 246, 0));
  animation: ambientFloatB var(--ambient-speed-b) ease-in-out infinite alternate;
}

.topbar {
  background: rgba(8, 22, 42, 0.72);
  border-bottom: 1px solid rgba(163, 201, 255, 0.2);
  box-shadow: 0 14px 38px rgba(6, 18, 37, 0.3);
}

.brand-mark,
.brand-sub,
.menu > li > a {
  color: #f6fbff;
}

.menu > li > a.active,
.menu > li > a:hover {
  color: #9ad2ff;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--xtra-shadow);
  perspective: 900px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6, 19, 38, 0.8) 20%, rgba(6, 19, 38, 0.42) 56%, rgba(6, 19, 38, 0.14) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% auto;
  width: 55%;
  height: 85%;
  background: radial-gradient(circle, rgba(95, 187, 255, 0.42), rgba(95, 187, 255, 0));
  filter: blur(28px);
  z-index: 1;
  pointer-events: none;
  animation: heroAura 7s ease-in-out infinite alternate;
}

.hero-content {
  z-index: 2;
  transform: translate3d(var(--hero-content-x), calc(-50% + var(--hero-content-y)), 0);
  transition: transform 0.3s ease;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.hero-content h1,
.hero-content p {
  color: #f4f9ff;
}

.btn {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #27b273 0%, #0a7fc2 100%);
  box-shadow: 0 14px 26px rgba(16, 96, 156, 0.28);
  transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(13, 77, 130, 0.32);
  filter: saturate(1.06);
}

.btn.btn-alt {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #f0f7ff;
}

.section {
  position: relative;
}

.cards .card,
.service-item,
.about-wrap,
.shop-card,
.product-main,
.sidebar,
.faq-item,
.kpi,
.footer {
  background: var(--xtra-panel);
  border: 1px solid var(--xtra-border);
  box-shadow: var(--xtra-shadow);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  position: relative;
  overflow: hidden;
}

.cards .card::before,
.service-item::before,
.shop-card::before,
.faq-item::before,
.about-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0),
    var(--card-glow),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.cards .card:hover::before,
.service-item:hover::before,
.shop-card:hover::before,
.faq-item:hover::before,
.about-wrap:hover::before {
  transform: translateX(130%);
}

.cards .card > *,
.service-item > *,
.shop-card > *,
.faq-item > *,
.about-wrap > * {
  position: relative;
  z-index: 1;
}

.card,
.service-item,
.shop-card,
.faq-item {
  border-radius: 18px;
}

.cards .card:hover,
.service-item:hover,
.shop-card:hover {
  transform: translateY(-4px);
}

.fx-tilt {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.title {
  color: #0d305a;
  letter-spacing: -0.3px;
}

.muted,
.subtitle,
.service-item p,
.about-text p {
  color: #355270;
}

.footer {
  background: linear-gradient(155deg, rgba(7, 23, 42, 0.86), rgba(15, 44, 78, 0.8));
}

.footer h3,
.footer p,
.footer a,
.footer-bottom p {
  color: #edf6ff;
}

.social-icon {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.float-wa {
  box-shadow: 0 18px 34px rgba(17, 177, 88, 0.44);
}

@media (max-width: 980px) {
  .topbar {
    background: rgba(7, 20, 38, 0.88);
  }

  .menu {
    background: linear-gradient(135deg, rgba(10, 26, 50, 0.92), rgba(20, 54, 92, 0.82));
    border: 1px solid rgba(168, 204, 255, 0.2);
  }

  .menu > li > a,
  .submenu li a {
    color: #eef7ff;
  }

  .hero-content {
    transform: translate3d(0, 0, 0);
  }
}

/* ----------------------------- */
/* Visual effects (safe layer)   */
/* ----------------------------- */
.hero-content h1,
.hero-content p,
.hero-cta-row,
.hero-badge {
  animation: heroRise 0.8s ease both;
}

.hero-content p {
  animation-delay: 0.12s;
}

.hero-cta-row {
  animation-delay: 0.2s;
}

.hero-badge {
  animation-delay: 0.05s;
}

.slide {
  animation: none;
}

.menu > li > a {
  position: relative;
}

.menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #30bf84, #5aa7ff);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.26s ease;
}

.menu > li > a:hover::after,
.menu > li > a.active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -120% auto auto -30%;
  width: 52%;
  height: 320%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(22deg) translateX(-180%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: -1;
}

.btn:hover::before {
  transform: rotate(22deg) translateX(440%);
}

.card img,
.shop-thumb,
.related-item img,
.about-logo img {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.card:hover img,
.related-item:hover img,
.about-logo:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.03);
}

.social-icon {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 24px rgba(23, 87, 143, 0.34);
}

.float-wa {
  animation: waPulse 2.4s ease-in-out infinite;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

@keyframes waPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
  }
}

@keyframes heroAura {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.48;
  }
  100% {
    transform: translate3d(-4%, -6%, 0) scale(1.18);
    opacity: 0.72;
  }
}

@keyframes ambientFloatA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(6vw, 5vh, 0) scale(1.12);
  }
}

@keyframes ambientFloatB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-7vw, -4vh, 0) scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .slide,
  .float-wa,
  .hero-content h1,
  .hero-content p,
  .hero-cta-row,
  .hero-badge {
    animation: none !important;
  }

  .hero-content {
    transform: none !important;
    transition: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .cards .card::before,
  .service-item::before,
  .shop-card::before,
  .faq-item::before,
  .about-wrap::before {
    display: none;
  }

  .btn::before {
    display: none;
  }
}

/* ------------------------------------------ */
/* Visual boost v2 (CSS only, logic untouched) */
/* ------------------------------------------ */
.section {
  isolation: isolate;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: min(980px, 86%);
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 67, 123, 0), rgba(13, 67, 123, 0.34), rgba(20, 154, 109, 0.34), rgba(13, 67, 123, 0));
  pointer-events: none;
}

.title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #29af76, #3a97ff);
  box-shadow: 0 8px 20px rgba(42, 134, 224, 0.28);
}

.topbar {
  box-shadow: 0 16px 42px rgba(5, 20, 40, 0.36), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.cards .card,
.service-item,
.shop-card,
.faq-item,
.about-wrap,
.product-main,
.sidebar {
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 20px 50px rgba(5, 28, 54, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cards .card:hover,
.service-item:hover,
.shop-card:hover,
.faq-item:hover,
.product-main:hover,
.sidebar:hover {
  box-shadow:
    0 28px 64px rgba(7, 35, 68, 0.24),
    0 0 0 1px rgba(79, 154, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-badge {
  box-shadow: 0 8px 24px rgba(16, 101, 164, 0.24);
}

.hero-content h1 {
  text-shadow: 0 6px 24px rgba(2, 16, 34, 0.42);
}

.hero-cta-row .btn {
  min-height: 48px;
}

.card-body h3,
.service-item h3 {
  letter-spacing: 0.1px;
}

.footer {
  border-top: 1px solid rgba(165, 208, 255, 0.3);
}

.footer-grid > div h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-grid > div h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(64, 205, 146, 0.95), rgba(98, 174, 255, 0.95));
}

.float-wa {
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 18px 34px rgba(17, 177, 88, 0.44),
    0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: waPulse 2.4s ease-in-out infinite, waRing 2.4s ease-in-out infinite;
}

@keyframes waRing {
  0% {
    box-shadow:
      0 18px 34px rgba(17, 177, 88, 0.44),
      0 0 0 0 rgba(37, 211, 102, 0.38);
  }
  70% {
    box-shadow:
      0 18px 34px rgba(17, 177, 88, 0.44),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 18px 34px rgba(17, 177, 88, 0.44),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 980px) {
  .title {
    display: block;
  }

  .title::after {
    max-width: 180px;
  }
}

/* ------------------------------------ */
/* Servicios Especializados (impact UI) */
/* ------------------------------------ */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 181, 126, 0.32), rgba(47, 181, 126, 0) 34%),
    radial-gradient(circle at 84% 18%, rgba(56, 134, 255, 0.35), rgba(56, 134, 255, 0) 38%),
    linear-gradient(125deg, rgba(10, 28, 54, 0.72), rgba(8, 45, 77, 0.62));
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 0 32px !important;
}

.page-hero .breadcrumb {
  color: rgba(237, 247, 255, 0.9);
}

.page-hero h1 {
  color: #f5fbff;
  text-shadow: 0 10px 30px rgba(7, 18, 34, 0.45);
}

#shopApp .shop-wrap > main,
#productApp .shop-wrap > main {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(237, 247, 255, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 26px 64px rgba(8, 27, 52, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

#shopApp .shop-wrap > .sidebar,
#productApp .shop-wrap > .sidebar {
  background:
    linear-gradient(145deg, rgba(13, 39, 70, 0.83), rgba(16, 55, 95, 0.78));
  border: 1px solid rgba(159, 208, 255, 0.28);
}

#shopApp .sidebar,
#shopApp .sidebar h4,
#shopApp .sidebar a,
#shopApp .sidebar li,
#productApp .sidebar,
#productApp .sidebar h4,
#productApp .sidebar a,
#productApp .sidebar li {
  color: #edf6ff;
}

#shopApp .sidebar-list li,
#productApp .sidebar-list li {
  border-bottom-color: rgba(180, 214, 247, 0.2);
}

#shopApp .sidebar-list li a:hover,
#shopApp .sidebar-list li a.active,
#productApp .sidebar-list li a:hover,
#productApp .sidebar-list li a.active {
  color: #8cd1ff;
}

#shopApp .shop-tools {
  background: linear-gradient(130deg, rgba(19, 73, 126, 0.1), rgba(29, 166, 114, 0.12));
  border: 1px solid rgba(167, 206, 240, 0.45);
  border-radius: 14px;
  padding: 12px;
}

#shopApp .shop-tools p {
  font-weight: 600;
}

#shopApp .shop-tools select,
#shopApp .search-box input,
#productApp .search-box input {
  border: 1px solid rgba(158, 197, 233, 0.62);
  box-shadow: inset 0 1px 3px rgba(9, 37, 66, 0.08);
}

#shopApp .shop-products li {
  border: 1px solid rgba(154, 196, 232, 0.5);
  border-radius: 14px;
  box-shadow:
    0 12px 28px rgba(9, 31, 59, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

#shopApp .shop-products li:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(96, 167, 233, 0.8);
  box-shadow:
    0 22px 42px rgba(8, 34, 65, 0.19),
    0 0 0 1px rgba(106, 180, 255, 0.22);
}

#shopApp .shop-thumb {
  height: 230px;
  object-fit: cover;
  background: #ffffff;
}

#shopApp .shop-products a {
  font-size: 16px;
  font-weight: 600;
}

#shopApp .pagination button {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 243, 255, 0.92));
}

#shopApp .pagination button:hover {
  transform: translateY(-2px);
  border-color: #9ac6ef;
}

#shopApp .pagination button.active {
  background: linear-gradient(145deg, rgba(51, 137, 255, 0.2), rgba(46, 182, 125, 0.2));
}

@media (max-width: 980px) {
  #shopApp .shop-wrap > .sidebar,
  #productApp .shop-wrap > .sidebar {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(236, 246, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.82);
  }

  #shopApp .sidebar,
  #shopApp .sidebar h4,
  #shopApp .sidebar a,
  #shopApp .sidebar li,
  #productApp .sidebar,
  #productApp .sidebar h4,
  #productApp .sidebar a,
  #productApp .sidebar li {
    color: #193a5b;
  }

  #shopApp .sidebar-list li,
  #productApp .sidebar-list li {
    border-bottom-color: rgba(179, 208, 235, 0.5);
  }
}

/* Independent WhatsApp contacts, with one icon per phone number. */
.whatsapp-contacts {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.whatsapp-contacts .float-wa {
  position: relative;
  inset: auto;
  flex-shrink: 0;
}
.wa-number {
  display: none;
  position: absolute;
  right: calc(100% + 10px);
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
  color: #145c38;
  font: 600 13px/1.4 Montserrat, sans-serif;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.contact-options { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-options .submit { flex: 1 1 180px; }
.detail-actions { flex-wrap: wrap; }
@media (max-width: 560px) {
  .whatsapp-contacts { right: 12px; bottom: 14px; gap: 12px; }
  .wa-number { font-size: 11px; padding: 3px 6px; }
}

/* ==========================================================================
   ESTILOS DE BASE LEGAL SST ECUADOR
   ========================================================================== */
.legal-intro-box {
  background: linear-gradient(135deg, rgba(21, 84, 161, 0.06), rgba(46, 182, 125, 0.08));
  border: 1px solid rgba(21, 84, 161, 0.16);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-soft);
}

.legal-intro-box h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-intro-box p {
  margin: 0;
  color: #334d67;
  font-size: 15px;
  line-height: 1.6;
}

.legal-group {
  margin-bottom: 38px;
}

.legal-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e3edf7;
}

.legal-group-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(21, 84, 161, 0.25);
}

.legal-group-icon.green {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 4px 12px rgba(22, 122, 87, 0.25);
}

.legal-group-header h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #102a43;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid #dce8f3;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 8px 24px rgba(12, 40, 72, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green-2));
  opacity: 0.85;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 40, 72, 0.12);
  border-color: #bcd5ee;
}

.legal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.legal-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #102a43;
  line-height: 1.35;
}

.legal-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tag-constitucion { background: #e8f0fe; color: #1554a1; }
.tag-can { background: #e3f8ec; color: #116847; }
.tag-codigo { background: #fef3e6; color: #b45309; }
.tag-decreto { background: #f0f4ff; color: #1e40af; }
.tag-iess { background: #fdf2f8; color: #9d174d; }
.tag-mdt { background: #ecfeff; color: #0e7490; }
.tag-inen { background: #f1f5f9; color: #334155; }

.legal-card-desc {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: #48627d;
  line-height: 1.55;
  flex-grow: 1;
}

.legal-meta {
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
  font-size: 12.5px;
  color: #627d98;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-meta i {
  color: var(--blue);
  font-size: 14px;
}

.legal-cta-card {
  background: linear-gradient(135deg, #0f2742, #16538c);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.legal-cta-card h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  color: #ffffff;
}

.legal-cta-card p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #d6e8f8;
  font-size: 15px;
}

.legal-cta-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-intro-box {
    padding: 20px;
  }
  .legal-cta-card {
    padding: 26px 20px;
  }
  .detail-highlights {
    grid-template-columns: 1fr;
  }
  .training-visuals-grid {
    grid-template-columns: 1fr;
  }
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ==============================================================================
   BRAND GROUP & PWA INSTALL BUTTON
   ============================================================================== */
.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(13, 63, 114, 0.25);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btn-app-install {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #1554a1, #2eb67d);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 122, 87, 0.28);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-app-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 122, 87, 0.4);
  color: #ffffff;
}

.btn-app-install i {
  font-size: 15px;
}

@media (max-width: 576px) {
  .btn-app-install-label {
    display: none;
  }
  .btn-app-install {
    padding: 8px 10px;
    border-radius: 50%;
  }
  .brand-icon {
    width: 38px;
    height: 38px;
  }
}

/* ==============================================================================
   SECCIÓN QR CODE Y COPIAR ENLACE RÁPIDO
   ============================================================================== */
.qr-share-section {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(243, 248, 252, 0.5), rgba(220, 235, 248, 0.8));
}

.qr-share-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 20px 50px rgba(13, 63, 114, 0.12);
  border: 1px solid rgba(21, 84, 161, 0.12);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.qr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(21, 84, 161, 0.1);
  color: #1554a1;
  font-weight: 700;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.qr-share-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #0d3f72;
  font-size: 28px;
  margin-bottom: 12px;
}

.qr-share-text p {
  color: #4a637d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.quick-copy-box {
  margin-bottom: 20px;
}

.quick-copy-box .input-group {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.quick-copy-box input {
  font-size: 14px;
  font-weight: 500;
  color: #0d3f72;
  background-color: #f8fbfe;
}

.quick-copy-box .btn-primary {
  background: #1554a1;
  border-color: #1554a1;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.quick-copy-box .btn-primary:hover {
  background: #0d3f72;
}

.copy-feedback {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #167a57;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadeIn 0.3s ease;
}

.share-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-share-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25d366;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease;
}

.btn-share-wa:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-share-native {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  color: #0d3f72;
  border: 1px solid #c2d8eb;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-share-native:hover {
  background: #f0f7ff;
  border-color: #1554a1;
}

.qr-share-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qr-frame {
  position: relative;
  width: 200px;
  height: 200px;
  background: #ffffff;
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(13, 63, 114, 0.15);
  border: 2px solid #e0ecf7;
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.qr-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.qr-logo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.qr-hint {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #3b678d;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 991px) {
  .qr-share-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    text-align: center;
  }
  .qr-share-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .share-actions-row {
    justify-content: center;
  }
}



